/* ============================================
   KIMERA SPORTSWEAR — E-commerce Site
   ============================================ */

@import url('https://fonts.cdnfonts.com/css/benz-grotesk');

:root {
    --bg: #ffffff;
    --bg-alt: #f7f7f8;
    --bg-dark: #0c0c0e;
    --bg-card: #ffffff;

    --text: #111111;
    --text-2: #444444;
    --text-3: #777777;
    --text-4: #aaaaaa;
    --text-inv: #ffffff;

    --accent: #c41e3a;
    --accent-hover: #a5182f;
    --accent-light: rgba(196, 30, 58, 0.08);

    --border: #e8e8e8;
    --border-2: #d4d4d4;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    --font: 'Inter', -apple-system, sans-serif;
    --font-display: 'Outfit', 'Inter', sans-serif;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 16px;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: default;
    -webkit-user-select: none;
    user-select: none;
}

/* ======================== 21ST.DEV COMPONENTS ======================== */

/* Hero Shutter Text (daiv09 style) - Segmented vertical slices */
.shutter-text {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    overflow: hidden;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: 1;
    letter-spacing: inherit;
    perspective: 1000px;
    height: 1.2em;
    pointer-events: none;
}

.shutter-slice {
    position: relative;
    height: 100%;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

.shutter-slice .word-part {
    position: absolute;
    top: 0;
    left: 0;
    white-space: nowrap;
    color: inherit;
    transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
}

.shutter-text.reveal .shutter-slice:nth-child(odd) {
    transform: translateY(-100%);
}

.shutter-text.reveal .shutter-slice:nth-child(even) {
    transform: translateY(100%);
}

input,
textarea,
select {
    -webkit-user-select: text;
    user-select: text;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ======================== ANNOUNCEMENT BAR ======================== */
.announcement-bar {
    background: var(--bg-dark);
    color: var(--text-inv);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 10px 0;
}

.marquee-content {
    display: inline-flex;
    gap: 120px;
    /* Move left to right */
    animation: marquee-lr 35s linear infinite;
    min-width: 200%;
    text-transform: uppercase;
}

.marquee-content p {
    margin: 0;
    white-space: nowrap;
}

@keyframes marquee-lr {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    ::before,
    ::after {
        animation-delay: -1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        background-attachment: initial !important;
        scroll-behavior: auto !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }
}


/* ======================== NAVIGATION ======================== */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-right {
    justify-content: flex-end;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-display);
    color: var(--text-2);
    letter-spacing: 0.05em;
    transition: color var(--transition);
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--text);
}

/* Dropdown */
.nav-dropdown-wrapper {
    position: relative;
    padding: 10px 0;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: max-content;
    min-width: 160px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 10;
    padding: 8px 0;
}

.nav-dropdown-wrapper:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-2);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all var(--transition);
}

.dropdown-link:hover {
    background: var(--bg-alt);
    color: var(--accent);
}

/* Nav Icons */
.nav-icon {
    display: flex;
    align-items: center;
    color: var(--text);
    transition: color var(--transition);
}

.nav-icon:hover {
    color: var(--accent);
}

.nav-logo {
    text-align: center;
}

.nav-logo-text {
    font-family: 'Benz Grotesk', var(--font-display);
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 6px;
    color: var(--text);
}

.nav-cart {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--text);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    width: 18px;
    height: 18px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-toggle {
    display: none;
    color: var(--text);
}

/* Mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 20px 24px;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.mobile-menu.open {
    display: flex;
}

.mobile-link {
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Search Overlay - Inside Nav */
.search-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all var(--transition);
}

.search-overlay.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.search-container {
    width: 100%;
    max-width: 600px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px;
    color: var(--text-2);
    position: relative;
}

.search-container input {
    flex: 1;
    background: transparent;
    border: none;
    font-size: 20px;
    font-weight: 500;
    color: var(--text);
    outline: none;
    font-family: var(--font-display);
    letter-spacing: 0.02em;
}

.search-container input::placeholder {
    color: var(--text-4);
}

.search-close {
    background: none;
    border: none;
    color: var(--text-3);
    cursor: pointer;
    padding: 4px;
    transition: color var(--transition);
}

.search-close:hover {
    color: var(--accent);
}

.search-results-dropdown {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: none;
    flex-direction: column;
    max-height: 400px;
    overflow-y: auto;
    z-index: 60;
}

.search-results-dropdown.active {
    display: flex;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    transition: background var(--transition);
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: var(--bg-alt);
}

.search-result-img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.search-result-info {
    display: flex;
    flex-direction: column;
}

.search-result-title {
    font-size: 14px;
    font-weight: 600;
}

.search-result-price {
    font-size: 13px;
    color: var(--text-2);
    margin-top: 4px;
}

/* ======================== HERO ======================== */
.hero {
    position: relative;
    height: 85vh;
    max-height: 800px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.shop-hero {
    min-height: 400px;
    margin-top: 0;
}

.shop-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 0 24px;
    animation: fadeUp 0.8s var(--ease) both;
}

.hero-tag {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 7vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #fff;
    color: var(--text);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.12em;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.hero-btn:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.3);
}

/* ======================== SECTIONS ======================== */
.section {
    padding: 24px 0 40px;
}

.section-no-pad {
    padding: 0;
}

.section-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.section-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
}

.section-tag-sm {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 12px;
}

.view-all-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-3);
    transition: color var(--transition);
}

.view-all-link:hover {
    color: var(--text);
}

/* ======================== PRODUCT GRID ======================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    cursor: pointer;
    transition: transform var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-card-img {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: #2a2a2e;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.product-card:hover .product-card-img img {
    transform: scale(1.06);
}

.product-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition);
}

.product-card:hover .product-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.quick-add-btn {
    padding: 12px 32px;
    background: var(--bg-dark);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
    width: 100%;
    text-align: center;
}

.quick-add-btn:hover {
    background: var(--accent);
}

.product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    background: var(--bg-dark);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: var(--radius-sm);
}

.tag-best {
    background: var(--accent);
}

.tag-soon {
    background: var(--text-3);
}

.product-card-body {
    padding: 14px 4px 0;
}

.product-category {
    display: block;
    font-size: 11px;
    color: var(--text-4);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.product-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.product-sizes {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

.size-chip {
    padding: 3px 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 500;
    color: var(--text-3);
    transition: all 0.15s;
}

.size-chip:hover {
    border-color: var(--text);
    color: var(--text);
}

.product-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
}

/* ======================== CATEGORY SPLIT ======================== */
.category-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.category-block {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.category-block .category-img {
    position: absolute;
    inset: 0;
}

.category-block .category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.category-block:hover .category-img img {
    transform: scale(1.05);
}

.category-block::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    transition: background var(--transition);
}

.category-block:hover::after {
    background: rgba(0, 0, 0, 0.45);
}

.category-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    padding: 40px;
}

.category-content h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.category-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.category-btn {
    display: inline-block;
    padding: 12px 36px;
    border: 2px solid #fff;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.category-btn:hover {
    background: #fff;
    color: var(--text);
}

/* ======================== SERVICE BAR ======================== */
.service-bar {
    padding: 64px 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.service-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text);
}

.service-item h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.service-item p {
    font-size: 13px;
    color: var(--text-3);
    line-height: 1.5;
}

/* ======================== ABOUT ======================== */
.about-section {
    background: var(--bg);
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-img img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 15px;
    color: var(--text-2);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-specs {
    display: flex;
    gap: 32px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.about-spec {
    text-align: center;
}

.about-spec-val {
    display: block;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
}

.about-spec-label {
    font-size: 12px;
    color: var(--text-3);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ======================== BEST SELLERS ======================== */
.best-sellers-section {
    padding: 40px 0 80px;
    background: var(--bg);
    border-top: 1px solid var(--border);
}

.best-sellers-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.best-sellers-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--text);
    text-transform: uppercase;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    display: block;
    text-decoration: none;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
    position: relative;
}

.product-card:hover {
    border-color: var(--border-2);
}

.product-card-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #000;
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-card-img {
    transform: scale(1.05);
    /* Internal zoom effect */
}

.product-badge {
    position: absolute;
    top: auto;
    bottom: 12px;
    left: 12px;
    background: #fff;
    color: #000;
    font-size: 9px;
    font-weight: 800;
    padding: 4px 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 100px;
    z-index: 2;
}

.product-badge.dark {
    background: #000;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-card-info {
    padding: 20px;
}

.product-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-card-price {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-2);
}

/* ======================== ACCOUNT / ORDERS ======================== */
.account-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 900px) {
    .account-grid {
        grid-template-columns: 1fr;
    }
}

.order-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.order-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
    margin-bottom: 16px;
}

.order-id {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.order-date {
    display: block;
    font-size: 13px;
    color: var(--text-3);
}

.order-badge {
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 100px;
}

.order-badge.delivered {
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
}

.order-badge.processing {
    background: rgba(234, 179, 8, 0.15);
    color: #eab308;
}

.order-item-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.order-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.order-item-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: var(--bg);
}

.order-item-info h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.order-item-info p {
    font-size: 13px;
    color: var(--text-2);
}

.order-total {
    text-align: right;
    font-size: 14px;
    color: var(--text-2);
}

.order-total strong {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-left: 8px;
}

.account-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.account-box {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 24px;
}

.account-box h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text);
}

.account-box p {
    font-size: 14px;
    color: var(--text-2);
    margin-bottom: 8px;
    line-height: 1.5;
}

.account-box p strong {
    color: var(--text);
    font-weight: 600;
}

/* Profile Form Styles */
.profile-form-group {
    margin-bottom: 20px;
}
.profile-form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-2);
}
.profile-form-group input {
    width: 100%;
    padding: 12px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 14px;
    font-family: var(--font);
    outline: none;
}
.profile-form-group input:focus {
    border-color: var(--accent);
}
.profile-btn-save {
    padding: 14px 24px;
    background: var(--text);
    color: var(--bg);
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: opacity var(--transition);
}
.profile-btn-save:hover {
    opacity: 0.9;
}

/* ======================== NEWSLETTER ======================== */
.newsletter-section {
    background: var(--bg-dark);
    color: var(--text-inv);
    padding: 48px 0;
}

.newsletter-box {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 40px auto;
}

.newsletter-box h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.newsletter-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: #fff;
    font-size: 14px;
    outline: none;
    font-family: var(--font);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter-form input:focus {
    border-color: var(--accent);
}

.newsletter-form button {
    padding: 14px 32px;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.newsletter-form button:hover {
    background: var(--accent-hover);
}

.newsletter-success {
    display: none;
    margin-top: 16px;
    font-size: 14px;
    color: #4ade80;
}

.newsletter-success.visible {
    display: block;
}

/* Size Chart Table */
.size-chart-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: var(--radius-sm);
    padding: 10px 0;
}

.size-chart-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    color: var(--text);
    font-size: 15px;
}

.size-chart-table th,
.size-chart-table td {
    padding: 14px 12px;
    border-bottom: 1px solid var(--border);
}

.size-chart-table th {
    font-weight: 700;
    color: var(--text);
    border-bottom: 2px solid var(--border);
    font-family: var(--font-display);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.05em;
}

.size-chart-table tbody tr:last-child td {
    border-bottom: none;
}

.size-chart-table tbody tr:hover td {
    background: var(--bg-alt);
}

.size-chart-table td:first-child {
    font-weight: 600;
}


/* ======================== FOOTER ======================== */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 64px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo-text {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 900;
    letter-spacing: 6px;
    color: #fff;
    margin-bottom: 4px;
}

.footer-desc {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition);
}

.social-link svg {
    width: 20px;
    height: 20px;
    display: block;
}

.social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.footer-col a {
    display: block;
    font-size: 13px;
    padding: 4px 0;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: #fff;
}

.footer-market {
    margin-top: 8px;
    font-size: 13px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 12px;
}

.payment-icons {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

/* ======================== CART DRAWER ======================== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.cart-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 420px;
    max-width: 100%;
    background: var(--bg);
    z-index: 201;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.cart-header h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
}

.cart-close {
    color: var(--text-3);
}

.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 16px;
    color: var(--text-4);
    text-align: center;
}

.cart-empty p {
    font-size: 15px;
}

.cart-shop-btn {
    padding: 12px 28px;
    background: var(--bg-dark);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.cart-shop-btn:hover {
    background: var(--accent);
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.cart-delete-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(4px);
    z-index: 10;
    animation: slideInDelete 0.25s ease-out forwards;
}

@keyframes slideInDelete {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-delete-overlay p {
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
}

.cart-delete-btn {
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    transition: all 0.2s;
}

.cart-delete-btn.confirm {
    background: #d32f2f;
    color: #ffffff;
}

.cart-delete-btn.confirm:hover {
    background: #b71c1c;
}

.cart-delete-btn.cancel {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.cart-delete-btn.cancel:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.cart-item-img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-alt);
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.cart-item-variant {
    font-size: 12px;
    color: var(--text-3);
    margin-bottom: 8px;
}

.cart-item-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item-price {
    font-weight: 600;
    font-size: 14px;
}

.cart-item-remove {
    font-size: 12px;
    color: var(--text-4);
    text-decoration: underline;
    background: none;
    border: none;
    cursor: pointer;
}

.cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 600;
}

.checkout-btn {
    width: 100%;
    padding: 16px;
    background: var(--accent);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.checkout-btn:hover {
    background: var(--accent-hover);
}

/* ======================== PRODUCT DETAIL ======================== */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.pd-gallery {
    position: sticky;
    top: 100px;
}

.pd-main-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #2a2a2e;
    margin-bottom: 12px;
}

.pd-main-img img {
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: opacity 0.3s var(--ease);
}

.pd-thumbs {
    display: flex;
    gap: 10px;
}

.pd-thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    background: #2a2a2e;
    cursor: pointer;
    padding: 0;
    transition: border-color var(--transition);
}

.pd-thumb.active {
    border-color: var(--text);
}

.pd-thumb:hover {
    border-color: var(--text-3);
}

.pd-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.pd-info {
    padding-top: 8px;
}

.pd-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.pd-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 4px;
}

.pd-subtitle {
    font-size: 15px;
    color: var(--text-3);
    margin-bottom: 16px;
}

.pd-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 28px;
}

.pd-section {
    margin-bottom: 20px;
}

.pd-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.pd-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.pd-size-guide {
    font-size: 12px;
    color: var(--text-3);
    text-decoration: underline;
    border: 1px solid var(--border);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.pd-size-guide:hover {
    border-color: var(--text);
    color: var(--text);
}

.pd-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pd-size-chip {
    min-width: 48px;
    padding: 10px 16px;
    border: 1px solid var(--border-2);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    background: var(--bg);
    cursor: pointer;
    transition: all 0.15s;
    text-align: center;
}

.pd-size-chip:hover:not(.disabled) {
    border-color: var(--text);
}

.pd-size-chip.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    text-decoration: line-through;
    color: var(--text-3);
    border-color: var(--border);
}

.pd-size-chip.active {
    border-color: var(--text);
    background: var(--text);
    color: var(--bg);
}

.pd-size-chip.disabled {
    color: var(--text-4);
    border-color: var(--border);
    cursor: not-allowed;
    text-decoration: line-through;
    opacity: 0.5;
}

.pd-stock {
    font-size: 13px;
    color: var(--text-2);
    margin-bottom: 20px;
}

.pd-stock-num {
    color: var(--accent);
}

.pd-add-btn {
    width: 100%;
    padding: 16px;
    background: var(--bg-dark);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    margin-bottom: 32px;
    border: none;
}

.pd-add-btn:hover {
    background: var(--accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.25);
}

/* Accordions */
.pd-accordions {
    border-top: 1px solid var(--border);
}

.pd-accordion {
    border-bottom: 1px solid var(--border);
}

.pd-accordion-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    transition: color var(--transition);
}

.pd-accordion-toggle:hover {
    color: var(--text-2);
}

.pd-accordion-icon {
    font-size: 20px;
    font-weight: 300;
    transition: transform 0.3s var(--ease);
}

.pd-accordion.open .pd-accordion-icon {
    transform: rotate(45deg);
}

.pd-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
    padding: 0 0;
}

.pd-accordion.open .pd-accordion-body {
    max-height: 600px;
    padding: 0 0 20px;
}

.pd-accordion-body p {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 12px;
}

.pd-accordion-body ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 16px;
}

.pd-accordion-body ul li {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.8;
}

.pd-sku {
    font-size: 12px !important;
    color: var(--text-4) !important;
    margin-top: 8px;
}

/* ======================== NEWSLETTER POPUP ======================== */
.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 300;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease);
    backdrop-filter: blur(4px);
}

.popup-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 301;
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    max-width: 440px;
    width: calc(100% - 32px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s var(--ease);
}

.popup.open {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    color: var(--text-3);
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    transition: color var(--transition);
}

.popup-close:hover {
    color: var(--text);
}

.popup-content {
    text-align: center;
}

.popup-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent);
    margin-bottom: 12px;
}

.popup-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 12px;
}

.popup-text {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.6;
    margin-bottom: 24px;
}

.popup-form {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.popup-form input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid var(--border-2);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: var(--font);
    outline: none;
    color: var(--text);
    transition: border-color var(--transition);
}

.popup-form input:focus {
    border-color: var(--accent);
}

.popup-form button {
    padding: 14px 24px;
    background: var(--bg-dark);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: none;
    white-space: nowrap;
    transition: background var(--transition);
}

.popup-form button:hover {
    background: var(--accent);
}

.popup-success {
    display: none;
    font-size: 15px;
    color: #16a34a;
    margin-bottom: 8px;
    padding: 12px;
    background: #f0fdf4;
    border-radius: var(--radius-sm);
}

.popup-success.visible {
    display: block;
}

/* ======================== SHOP ALL PAGE REFIT ======================== */

/* Collection Hero */
.shop-hero {
    position: relative;
    height: 50vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.shop-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.shop-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
}

.shop-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.shop-hero-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

/* Shop Layout Container */
.shop-container {
    padding-top: 60px;
    padding-bottom: 80px;
}

.shop-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Sidebar Attributes */
.shop-sidebar {
    width: 240px;
    flex-shrink: 0;
}

.sidebar-filter-group {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.sidebar-filter-group:last-child {
    border-bottom: none;
}

.filter-title {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text);
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-style {
    cursor: pointer;
}

.accordion-icon {
    font-size: 14px;
    color: var(--text-3);
}

.filter-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Custom Checkbox */
.custom-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-2);
    cursor: pointer;
    position: relative;
    transition: color var(--transition);
}

.custom-checkbox:hover {
    color: var(--text);
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    height: 16px;
    width: 16px;
    background-color: var(--bg);
    border: 1px solid var(--border-2);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.custom-checkbox:hover input~.checkmark {
    border-color: var(--text);
}

.custom-checkbox input:checked~.checkmark {
    background-color: var(--text);
    border-color: var(--text);
}

.checkmark:after {
    content: "";
    display: none;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.custom-checkbox input:checked~.checkmark:after {
    display: block;
}

/* Main Area & Sort Bar */
.shop-main {
    flex-grow: 1;
}

.shop-sort-bar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 32px;
    font-size: 13px;
    color: var(--text-2);
    gap: 40px;
}

.sort-dropdown {
    display: flex;
    align-items: center;
}

.sort-select {
    background: transparent;
    border: none;
    font-family: inherit;
    font-size: 13px;
    color: var(--text);
    cursor: pointer;
    font-weight: 500;
    outline: none;
    padding-right: 20px;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 14px;
}

.sort-count {
    color: var(--text-3);
}

/* 3-Column Grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Enhanced Cards */
.shop-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s var(--ease);
}

.shop-card:hover {
    transform: translateY(-4px);
}

.shop-card-img-wrapper {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-alt);
    margin-bottom: 16px;
    aspect-ratio: 3/4;
}

.shop-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.shop-card:hover .shop-card-img {
    transform: scale(1.05);
}

.shop-card-info {
    text-align: center;
}

.shop-card-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.shop-card-sizes {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-bottom: 8px;
}

.shop-card-sizes span {
    font-size: 11px;
    color: var(--text-2);
    background: var(--bg-alt);
    padding: 2px 6px;
    border-radius: 2px;
}

.shop-card-price {
    font-size: 14px;
    font-weight: 600;
    color: #b71c1c;
    /* Distinct accent color for pricing */
}

/* ======================== ANIMATIONS ======================== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll reveal */
.pd-gallery,
.pd-info,
.service-item,
.about-img,
.about-text {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.pd-gallery.vis,
.pd-info.vis,
.service-item.vis,
.about-img.vis,
.about-text.vis {
    opacity: 1;
    transform: translateY(0);
}

.pd-info {
    transition-delay: 0.12s;
}

.services-grid .service-item:nth-child(2) {
    transition-delay: 0.08s;
}

.services-grid .service-item:nth-child(3) {
    transition-delay: 0.16s;
}

.services-grid .service-item:nth-child(4) {
    transition-delay: 0.24s;
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
    .product-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .pd-gallery {
        position: static;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .about-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .shop-layout {
        flex-direction: column;
        gap: 32px;
    }

    .shop-sidebar {
        width: 100%;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .nav-left,
    .nav-right .nav-link {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-inner {
        grid-template-columns: auto 1fr auto;
    }

    .nav-logo {
        margin: 0 auto;
    }

    .hero {
        height: 70vh;
    }

    .hero-title {
        font-size: 36px;
    }

    .section {
        padding: 56px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .cart-drawer {
        width: 100%;
    }

    .popup {
        padding: 32px 24px;
    }

    .popup-form {
        flex-direction: column;
    }

    .pd-sizes {
        gap: 6px;
    }

    .pd-size-chip {
        min-width: 42px;
        padding: 8px 12px;
        font-size: 13px;
    }
}