/* GHOHARY Haute Couture - Luxury Warm Aesthetic */
/* Warm Brown, Gold & Beige Color Palette */

:root {
    /* Luxury Warm Palette - Brown, Gold & Beige */
    --nav-height: 72px;
    --announcement-height: 0px;
    
    /* Core Colors */
    --white: #FFFFFF;                   /* Pure white */
    --black: #0A0A0A;                   /* Deep black */
    --gray-50: #FAF8F5;                 /* Warm cream off-white */
    --gray-100: #F5F2EE;                /* Light warm cream */
    --gray-200: #EFE9E3;                /* Warm beige */
    --gray-300: #E5DDD3;                /* Soft taupe */
    --gray-400: #D4C9B8;                /* Medium taupe */
    --gray-500: #BEA89F;                /* Muted taupe */
    --gray-600: #9D8B7E;                /* Warm medium brown */
    --gray-700: #6B5D52;                /* Dark warm brown */
    --gray-800: #4A3E35;                /* Very dark brown */
    --gray-900: #2A1F18;                /* Deep chocolate brown */
    
    /* Luxury Brown, Gold & Beige Signature Colors */
    --gold: #C9A55D;                    /* Warm champagne gold */
    --gold-light: #E8D4B8;              /* Light gold accent */
    --gold-bright: #D4B896;             /* Warm honey gold */
    --gold-dark: #9D7E4A;               /* Dark mustard gold */
    --gold-accent: #B8956A;             /* Muted warm gold */
    --brown: #6B5443;                   /* Warm medium brown (primary) */
    --brown-light: #8B7355;             /* Light warm brown */
    --brown-dark: #3A2D25;              /* Deep chocolate brown */
    --brown-accent: #5F4C42;            /* Dark warm accent */
    --beige: #D4C5B9;                   /* Warm beige */
    --beige-light: #EAE0D9;             /* Light beige */
    --beige-dark: #B8A895;              /* Dark beige */
    --cream: #FAF8F5;                   /* Luxury warm cream */
    --ivory: #F5F2EE;                   /* Ivory tone */
    --pearl: #F8F5F2;                   /* Pearl white */
    --champagne: #F0EBE5;               /* Champagne */
    --rose-gold: #B8956A;               /* Rose gold tone */
    --copper: #9D7E4A;                  /* Copper tone */
    --bronze: #7A6B5E;                  /* Bronze tone */
    --bronze-dark: #4A3E35;             /* Dark bronze */
    --silver: #C0C0C0;                  /* Silver accent */
    --silver-light: #E8E8E8;            /* Light silver */
    
    /* Text Hierarchy - Warm Aesthetic */
    --text-dark: #2A1F18;               /* Deep chocolate text */
    --text-mid: #6B5D52;                /* Warm brown text */
    --text-light: #9D8B7E;              /* Light warm text */
    --text-muted: #B8A895;              /* Muted warm text */
    
    /* Shadows - Premium Brown & Gold */
    --shadow-soft: 0 2px 8px rgba(107, 84, 67, 0.08);
    --shadow-medium: 0 6px 20px rgba(107, 84, 67, 0.15);
    --shadow-gold: 0 8px 32px rgba(201, 165, 93, 0.2);
    --shadow-luxury: 0 16px 48px rgba(42, 31, 24, 0.15), 0 6px 20px rgba(107, 84, 67, 0.1);
    --shadow-elevation: 0 20px 60px rgba(42, 31, 24, 0.2);
    
    /* Spacing System - Fluid Responsive */
    --spacing-xs: clamp(8px, 1.5vw + 3px, 12px);
    --spacing-sm: clamp(16px, 2.5vw + 6px, 24px);
    --spacing-md: clamp(28px, 4vw + 10px, 42px);
    --spacing-lg: clamp(42px, 5vw + 14px, 64px);
    --spacing-xl: clamp(56px, 6vw + 18px, 96px);
    --spacing-2xl: clamp(72px, 8vw + 24px, 144px);
    
    /* Container Widths */
    --container-mobile: 94%;
    --container-tablet: 90%;
    --container-desktop: 86%;
    --container-wide: 82%;
    --container-max: 1800px;
    
    /* Typography Scale */
    --text-xs: clamp(12px, 1.8vw + 3px, 16px);
    --text-sm: clamp(14px, 2.1vw + 4px, 18px);
    --text-base: clamp(16px, 2.3vw + 5px, 20px);
    --text-md: clamp(17px, 2.5vw + 6px, 22px);
    --text-lg: clamp(19px, 2.8vw + 7px, 25px);
    --text-xl: clamp(22px, 3.3vw + 9px, 32px);
    --text-2xl: clamp(28px, 4.5vw + 12px, 42px);
    --text-3xl: clamp(36px, 5.5vw + 14px, 64px);
    
    /* Letter Spacing */
    --ls-tight: 0.04em;
    --ls-normal: 0.08em;
    --ls-wide: 0.12em;
    --ls-extra-wide: 0.16em;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    background: #ffffff;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    color: var(--text-dark);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    font-size: var(--text-base);
    margin: 0;
    padding: 0;
    animation: pageEnter 0.65s ease-out forwards;
}

body:not(.is-home) {
    padding-top: var(--nav-height, 96px);
}

html,
body,
header,
main,
footer,
section {
    background: #ffffff !important;
}

/* Page Transition Animations */
@keyframes pageEnter {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes pageExit {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Seamless elegant transition overlay */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 35%, #3b261a 0%, #2f1a10 48%, #22130b 100%);
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.65s ease;
    overflow: hidden;
}

.page-transition__logo {
    width: min(70vw, 520px);
    height: auto;
}

.page-transition__logo svg {
    width: 100%;
    height: auto;
}

.page-transition__logo text,
.page-transition__logo .draw-letter {
    font-family: 'Cormorant Garamond', serif;
    font-size: 96px;
    letter-spacing: 0.08em;
    fill: transparent;
    stroke: rgba(245, 234, 219, 0.9);
    stroke-width: 1.2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 260;
    stroke-dashoffset: 260;
    animation: ghoharyDraw 0.7s ease forwards, ghoharyFill 0.35s ease forwards;
}

@keyframes ghoharyDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes ghoharyFill {
    to { fill: rgba(245, 234, 219, 0.92); }
}

.page-transition__logo .draw-letter:nth-child(1) { animation-delay: 0s, 0.32s; }
.page-transition__logo .draw-letter:nth-child(2) { animation-delay: 0.12s, 0.44s; }
.page-transition__logo .draw-letter:nth-child(3) { animation-delay: 0.24s, 0.56s; }
.page-transition__logo .draw-letter:nth-child(4) { animation-delay: 0.36s, 0.68s; }
.page-transition__logo .draw-letter:nth-child(5) { animation-delay: 0.48s, 0.8s; }
.page-transition__logo .draw-letter:nth-child(6) { animation-delay: 0.6s, 0.92s; }
.page-transition__logo .draw-letter:nth-child(7) { animation-delay: 0.72s, 1.04s; }

.page-transition::before {
    content: '';
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at 50% 30%, rgba(255, 240, 220, 0.2), transparent 60%);
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

.page-transition.is-active::before {
    opacity: 0.9;
    transform: scale(1);
}

.page-transition__logo {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-transition.is-active .page-transition__logo {
    opacity: 1;
    transform: translateY(0) scale(1);
}

body.product-page {
    font-family: 'Montserrat', sans-serif;
}

body.product-page .product-title,
body.product-page .price-currency,
body.product-page .price-amount {
    font-family: inherit;
}

body.product-page .product-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.04em;
}

body.product-page .btn,
body.product-page .size-btn {
    font-family: inherit;
}

body.product-page .size-btn.out-of-stock {
    color: rgba(47, 26, 16, 0.5);
    border-color: rgba(111, 79, 50, 0.18);
    background: linear-gradient(135deg, rgba(244, 236, 224, 0.9), rgba(236, 226, 210, 0.8));
    cursor: not-allowed;
    position: relative;
    transform: none;
    box-shadow: none;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

body.product-page .size-btn.out-of-stock::after {
    content: none;
}

body.product-page .size-btn.out-of-stock:hover,
body.product-page .size-btn.out-of-stock:active {
    transform: none;
    box-shadow: none;
}

/* Typography - Luxury */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    letter-spacing: var(--ls-normal);
    line-height: 1.15;
    color: var(--text-dark);
}

h1 {
    font-size: var(--text-3xl);
    letter-spacing: var(--ls-wide);
    font-weight: 300;
}

h2 {
    font-size: var(--text-2xl);
    letter-spacing: var(--ls-wide);
    font-weight: 300;
}

h3 {
    font-size: var(--text-xl);
    letter-spacing: var(--ls-normal);
    font-weight: 300;
}

h4 {
    font-size: var(--text-lg);
    letter-spacing: var(--ls-normal);
    font-weight: 400;
}

p {
    color: var(--text-mid);
    line-height: 1.8;
    letter-spacing: var(--ls-tight);
}

a {
    color: var(--gray-700);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--gray-900);
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-600); border-radius: 3px; }

/* Container - Fluid Responsive */
.container {
    width: var(--container-mobile);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

@media (min-width: 640px) {
    .container { 
        width: var(--container-tablet);
        padding: 0 var(--spacing-md); 
    }
}

@media (min-width: 1024px) {
    .container { 
        width: var(--container-desktop);
        padding: 0 var(--spacing-lg); 
    }
}

@media (min-width: 1440px) {
    .container { 
        width: var(--container-wide);
        padding: 0 var(--spacing-xl); 
    }
}

@media (min-width: 1920px) {
    .container { 
        padding: 0 var(--spacing-2xl); 
    }
}

/* Announcement Bar */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    background: #ebe5de;
    color: var(--text-dark);
    text-align: center;
    padding: clamp(8px, 1.5vw + 2px, 10px) var(--spacing-sm);
    font-size: clamp(12px, 1.1vw + 4px, 14px);
    letter-spacing: 0.04em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    width: 100%;
    border-bottom: 1px solid rgba(42, 31, 24, 0.1);
    box-shadow: 0 1px 8px rgba(42, 31, 24, 0.06);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (min-width: 768px) {
    .announcement-bar { font-size: 13px; padding: 10px var(--spacing-md); }
}

/* Navigation */
.nav-container {
    position: fixed;
    top: var(--announcement-height, 0px);
    z-index: 1000;
    width: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--gray-200);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: none;
    display: flex;
    justify-content: center;
}

body.has-fixed-nav {
    padding-top: var(--nav-height, 96px);
}

body.has-fixed-nav .hero {
    margin-top: calc(-1 * var(--nav-height, 96px));
}

/* Luxury header theme */
.nav-container {
    background: #241E19;
    border-bottom: 1px solid rgba(245, 239, 231, 0.18);
    box-shadow: 0 10px 24px rgba(20, 16, 13, 0.22);
}

.nav-container::after {
    background: linear-gradient(90deg, transparent, rgba(245, 239, 231, 0.25), transparent);
}

.nav-container.hero-transparent {
    background: #241E19;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(245, 239, 231, 0.18);
    box-shadow: 0 10px 24px rgba(20, 16, 13, 0.22);
}

.nav-container.hero-transparent::after {
    background: linear-gradient(90deg, transparent, rgba(245, 239, 231, 0.25), transparent);
}

.nav-container .logo,
.nav-container .nav-links a,
.nav-container .nav-icon,
.nav-container .search-link .nav-icon {
    color: #F5EFE7;
    stroke: #F5EFE7;
}

.nav-container .nav-icon path,
.nav-container .nav-icon circle,
.nav-container .nav-icon rect {
    stroke: currentColor;
}

.nav-container .mobile-menu-btn span {
    background: #F5EFE7;
}

.nav-container .cart-count {
    background: rgba(245, 239, 231, 0.14);
    color: #F5EFE7;
    border: 1px solid rgba(245, 239, 231, 0.35);
}

/* Homepage hero top: transparent with white icons */
body.is-home.hero-top .nav-container {
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
}

body.is-home.hero-top .nav-container::after {
    background: transparent;
}

body.is-home.hero-top .nav-container .logo,
body.is-home.hero-top .nav-container .nav-links a,
body.is-home.hero-top .nav-container .nav-icon,
body.is-home.hero-top .nav-container .search-link .nav-icon {
    color: #ffffff;
    stroke: #ffffff;
}

body.is-home.hero-top .nav-container .mobile-menu-btn span {
    background: #ffffff;
}

body.is-home.hero-top .nav-container .cart-count {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

body.is-home:not(.hero-top) .nav-container {
    background: #241E19;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(245, 239, 231, 0.18);
    box-shadow: 0 10px 24px rgba(20, 16, 13, 0.22);
}

body.is-home:not(.hero-top) .nav-container .logo,
body.is-home:not(.hero-top) .nav-container .nav-links a,
body.is-home:not(.hero-top) .nav-container .nav-icon,
body.is-home:not(.hero-top) .nav-container .search-link .nav-icon {
    color: #F5EFE7;
    stroke: #F5EFE7;
}

body.is-home:not(.hero-top) .nav-container .mobile-menu-btn span {
    background: #F5EFE7;
}

body.is-home:not(.hero-top) .nav-container .cart-count {
    background: rgba(245, 239, 231, 0.14);
    color: #F5EFE7;
    border: 1px solid rgba(245, 239, 231, 0.35);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body.collections-page .nav-container {
    background: #241E19;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(245, 239, 231, 0.18);
    box-shadow: 0 10px 24px rgba(20, 16, 13, 0.22);
}

body.collections-page .nav-container .logo,
body.collections-page .nav-container .nav-links a,
body.collections-page .nav-container .nav-icon,
body.collections-page .nav-container .search-link .nav-icon {
    color: #F5EFE7;
    stroke: #F5EFE7;
}

body.collections-page .nav-container .mobile-menu-btn span {
    background: #F5EFE7;
}

body.collections-page .nav-container .cart-count {
    background: rgba(245, 239, 231, 0.14);
    color: #F5EFE7;
    border: 1px solid rgba(245, 239, 231, 0.35);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

body.product-page .nav-container {
    background: #241E19;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid rgba(245, 239, 231, 0.18);
    box-shadow: 0 10px 24px rgba(20, 16, 13, 0.22);
}

body.product-page .nav-container .logo,
body.product-page .nav-container .nav-links a,
body.product-page .nav-container .nav-icon,
body.product-page .nav-container .search-link .nav-icon {
    color: #F5EFE7;
    stroke: #F5EFE7;
}

body.product-page .nav-container .mobile-menu-btn span {
    background: #F5EFE7;
}

body.product-page .nav-container .cart-count {
    background: rgba(245, 239, 231, 0.14);
    color: #F5EFE7;
    border: 1px solid rgba(245, 239, 231, 0.35);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.nav-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-300), transparent);
}

@media (max-width: 1023px) {
    body.hero-top .nav-container {
        background: #241E19;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom: 1px solid rgba(245, 239, 231, 0.18);
        box-shadow: 0 10px 24px rgba(20, 16, 13, 0.22);
    }

    body:not(.hero-top) .nav-container {
        background: #241E19;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom: 1px solid rgba(245, 239, 231, 0.18);
        box-shadow: 0 10px 24px rgba(20, 16, 13, 0.22);
    }

    body:not(.hero-top) .nav-container .nav-icon {
        color: #F5EFE7;
        stroke: #F5EFE7;
    }

    body:not(.hero-top) .nav-container .mobile-menu-btn span {
        background: #F5EFE7;
    }

    body:not(.hero-top) .nav-container .cart-count {
        background: rgba(245, 239, 231, 0.14);
        color: #F5EFE7;
        border: 1px solid rgba(245, 239, 231, 0.35);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    body.collections-page .nav-container {
        background: #241E19;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom: 1px solid rgba(245, 239, 231, 0.18);
        box-shadow: 0 10px 24px rgba(20, 16, 13, 0.22);
    }

    body.collections-page .nav-container .logo,
    body.collections-page .nav-container .nav-links a,
    body.collections-page .nav-container .nav-icon,
    body.collections-page .nav-container .search-link .nav-icon {
        color: #F5EFE7;
        stroke: #F5EFE7;
    }

    body.collections-page .nav-container .mobile-menu-btn span {
        background: #F5EFE7;
    }

    body.collections-page .nav-container .cart-count {
        background: rgba(245, 239, 231, 0.14);
        color: #F5EFE7;
        border: 1px solid rgba(245, 239, 231, 0.35);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    body.product-page .nav-container {
        background: #241E19;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom: 1px solid rgba(245, 239, 231, 0.18);
        box-shadow: 0 10px 24px rgba(20, 16, 13, 0.22);
    }

    body.product-page .nav-container .logo,
    body.product-page .nav-container .nav-links a,
    body.product-page .nav-container .nav-icon,
    body.product-page .nav-container .search-link .nav-icon {
        color: #F5EFE7;
        stroke: #F5EFE7;
    }

    body.product-page .nav-container .mobile-menu-btn span {
        background: #F5EFE7;
    }

    body.product-page .nav-container .cart-count {
        background: rgba(245, 239, 231, 0.14);
        color: #F5EFE7;
        border: 1px solid rgba(245, 239, 231, 0.35);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav-container .mobile-menu-btn span,
    body.is-home.hero-top .nav-container .mobile-menu-btn span,
    body.is-home:not(.hero-top) .nav-container .mobile-menu-btn span,
    body.collections-page .nav-container .mobile-menu-btn span,
    body.product-page .nav-container .mobile-menu-btn span,
    body.menu-open .nav-container.hero-transparent .mobile-menu-btn span {
        background: #111111 !important;
        box-shadow: none !important;
    }

    .mobile-menu-btn.active::before {
        color: #111111 !important;
    }
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(10px, 2vh, 16px) var(--spacing-sm);
    position: relative;
    min-height: 56px;
    width: 100%;
}

.nav-container nav.container {
    max-width: 100%;
    width: 100%;
    padding-left: clamp(12px, 2vw, 28px);
    padding-right: clamp(12px, 2vw, 28px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

nav .logo {
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

nav .nav-icons {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 26px);
    margin-left: 0;
    order: 3;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
    order: 1;
}

.nav-icons > * {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.nav-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    flex: 0 0 auto;
    transition: transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-icons a:hover,
.nav-icons a:focus-visible {
    transform: translateY(-1px);
    opacity: 0.95;
}

.nav-icons a:active {
    transform: scale(0.95);
}

.nav-icons > * + *::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 18px;
    background: rgba(0, 0, 0, 0.08);
}

.nav-icons > * + *::before {
    display: none;
}

.nav-icons-left {
    margin-left: 0;
    order: 1;
    gap: 14px;
}

.nav-icons-right {
    margin-left: auto;
    order: 3;
}

.nav-icons-right .country-locator-link {
    order: 3;
}

.nav-icons-right .account-link {
    order: 2;
}

.nav-icons-right .cart-link {
    order: 4;
}

.nav-icons-right .search-link {
    order: 1;
}

@media (min-width: 768px) {
    nav { padding: clamp(10px, 2vh, 16px) var(--spacing-lg); min-height: 54px; }
}

@media (min-width: 768px) {
    .nav-container {
        background: #241E19;
        border-bottom: 1px solid rgba(245, 239, 231, 0.18);
        box-shadow: 0 10px 24px rgba(20, 16, 13, 0.22);
    }

    .nav-container.hero-transparent {
        background: #241E19;
        border-bottom: 1px solid rgba(245, 239, 231, 0.18);
        box-shadow: 0 10px 24px rgba(20, 16, 13, 0.22);
    }

    .nav-container.hero-transparent .logo,
    .nav-container.hero-transparent .nav-icon,
    .nav-container.hero-transparent .search-link .nav-icon {
        color: #F5EFE7;
        stroke: #F5EFE7;
    }

    .nav-container.hero-transparent .mobile-menu-btn span {
        background: #F5EFE7;
    }

    .nav-container.hero-transparent .cart-count {
        background: rgba(245, 239, 231, 0.14);
        color: #F5EFE7;
        border: 1px solid rgba(245, 239, 231, 0.35);
    }
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 4.6vw, 34px);
    font-weight: 300;
    letter-spacing: var(--ls-wide);
    color: var(--text-dark);
    text-decoration: none;
    z-index: 1001;
    text-shadow: none;
}

.logo::after {
    content: '';
    display: none;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    order: 1;
    margin-right: auto;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
}

@media (min-width: 768px) and (max-width: 1023px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn span {
    width: clamp(20px, 3.6vw, 24px);
    height: 1px;
    background: #000;
    transition: none;
    border-radius: 1px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.active span {
    background: #fff;
    opacity: 0;
}

.mobile-menu-btn.active::before {
    content: '×';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    line-height: 1;
    color: #fff;
    font-weight: 300;
}


/* Mobile Navigation Menu */
.nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #F6F4F1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: clamp(6px, 1.2vh, 12px);
    padding-left: 0;
    list-style: none;
    overflow-x: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 1000;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Mobile menu: hide Men, Atelier, Journal */
@media (max-width: 1023px) {
    .nav-links > li.menu-primary:has(> .menu-primary-trigger[data-submenu="men"]),
    .nav-links > li.menu-primary:has(> .menu-primary-trigger[data-submenu="atelier"]),
    .nav-links > li.menu-primary:has(> .menu-primary-trigger[data-submenu="journal"]),
    .nav-links > li.menu-submenu[data-menu="men"],
    .nav-links > li.menu-submenu[data-menu="atelier"],
    .nav-links > li.menu-submenu[data-menu="journal"] {
        display: none;
    }
}

.nav-links.active > li.menu-primary > .menu-primary-trigger,
.nav-links.active > li.menu-primary > a,
.nav-links.active .menu-bottom-links a,
.nav-links.active .menu-utility-trigger {
    opacity: 0;
    transform: translate3d(100vw, 0, 0);
    animation: menuItemSlideIn 1.25s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    will-change: transform, opacity;
}

.nav-links.closing {
    opacity: 1;
    visibility: visible;
    pointer-events: none;
}

.nav-links.closing > li.menu-primary > .menu-primary-trigger,
.nav-links.closing > li.menu-primary > a,
.nav-links.closing .menu-bottom-links a,
.nav-links.closing .menu-utility-trigger {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    animation: menuItemSlideOut 0.85s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.nav-links.active > li.menu-primary:nth-child(1) > .menu-primary-trigger,
.nav-links.active > li.menu-primary:nth-child(1) > a { animation-delay: 0.14s; }
.nav-links.active > li.menu-primary:nth-child(2) > .menu-primary-trigger,
.nav-links.active > li.menu-primary:nth-child(2) > a { animation-delay: 0.28s; }
.nav-links.active > li.menu-primary:nth-child(3) > .menu-primary-trigger,
.nav-links.active > li.menu-primary:nth-child(3) > a { animation-delay: 0.42s; }
.nav-links.active > li.menu-primary:nth-child(4) > .menu-primary-trigger,
.nav-links.active > li.menu-primary:nth-child(4) > a { animation-delay: 0.56s; }
.nav-links.active > li.menu-primary:nth-child(5) > .menu-primary-trigger,
.nav-links.active > li.menu-primary:nth-child(5) > a { animation-delay: 0.7s; }
.nav-links.active .menu-bottom-links a,
.nav-links.active .menu-utility-trigger { animation-delay: 0.9s; }

.nav-links.active .menu-bottom-links li:nth-child(1) > a,
.nav-links.active .menu-bottom-links li:nth-child(1) > .menu-utility-trigger { animation-delay: 0.9s; }
.nav-links.active .menu-bottom-links li:nth-child(2) > a,
.nav-links.active .menu-bottom-links li:nth-child(2) > .menu-utility-trigger { animation-delay: 1.05s; }
.nav-links.active .menu-bottom-links li:nth-child(3) > a,
.nav-links.active .menu-bottom-links li:nth-child(3) > .menu-utility-trigger { animation-delay: 1.2s; }
.nav-links.active .menu-bottom-links li:nth-child(4) > a,
.nav-links.active .menu-bottom-links li:nth-child(4) > .menu-utility-trigger { animation-delay: 1.35s; }
.nav-links.active .menu-bottom-links li:nth-child(5) > a,
.nav-links.active .menu-bottom-links li:nth-child(5) > .menu-utility-trigger { animation-delay: 1.5s; }

.nav-links.closing > li.menu-primary:nth-child(1) > .menu-primary-trigger,
.nav-links.closing > li.menu-primary:nth-child(1) > a { animation-delay: 0s; }
.nav-links.closing > li.menu-primary:nth-child(2) > .menu-primary-trigger,
.nav-links.closing > li.menu-primary:nth-child(2) > a { animation-delay: 0.05s; }
.nav-links.closing > li.menu-primary:nth-child(3) > .menu-primary-trigger,
.nav-links.closing > li.menu-primary:nth-child(3) > a { animation-delay: 0.1s; }
.nav-links.closing > li.menu-primary:nth-child(4) > .menu-primary-trigger,
.nav-links.closing > li.menu-primary:nth-child(4) > a { animation-delay: 0.15s; }
.nav-links.closing > li.menu-primary:nth-child(5) > .menu-primary-trigger,
.nav-links.closing > li.menu-primary:nth-child(5) > a { animation-delay: 0.2s; }
.nav-links.closing .menu-bottom-links a,
.nav-links.closing .menu-utility-trigger { animation-delay: 0.26s; }

.nav-links.closing .menu-bottom-links li:nth-child(1) > a,
.nav-links.closing .menu-bottom-links li:nth-child(1) > .menu-utility-trigger { animation-delay: 0.26s; }
.nav-links.closing .menu-bottom-links li:nth-child(2) > a,
.nav-links.closing .menu-bottom-links li:nth-child(2) > .menu-utility-trigger { animation-delay: 0.32s; }
.nav-links.closing .menu-bottom-links li:nth-child(3) > a,
.nav-links.closing .menu-bottom-links li:nth-child(3) > .menu-utility-trigger { animation-delay: 0.38s; }
.nav-links.closing .menu-bottom-links li:nth-child(4) > a,
.nav-links.closing .menu-bottom-links li:nth-child(4) > .menu-utility-trigger { animation-delay: 0.44s; }
.nav-links.closing .menu-bottom-links li:nth-child(5) > a,
.nav-links.closing .menu-bottom-links li:nth-child(5) > .menu-utility-trigger { animation-delay: 0.5s; }

.nav-links.active.submenu-active .menu-submenu.active .submenu-back,
.nav-links.active.submenu-active .menu-submenu.active .submenu-section-title,
.nav-links.active.submenu-active .menu-submenu.active .submenu-footer,
.nav-links.active.submenu-active .menu-submenu.active .submenu-list a {
    opacity: 0;
    transform: translate3d(100vw, 0, 0);
    animation: submenuItemSlideIn 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    will-change: transform, opacity;
}

.nav-links.closing.submenu-active .menu-submenu.active .submenu-back,
.nav-links.closing.submenu-active .menu-submenu.active .submenu-section-title,
.nav-links.closing.submenu-active .menu-submenu.active .submenu-footer,
.nav-links.closing.submenu-active .menu-submenu.active .submenu-list a {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    animation: submenuItemSlideOut 0.75s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.nav-links.active.submenu-active .menu-submenu.active .submenu-back { animation-delay: 0.1s; }
.nav-links.active.submenu-active .menu-submenu.active .submenu-section-title { animation-delay: 0.22s; }
.nav-links.active.submenu-active .menu-submenu.active .submenu-list a:nth-child(1) { animation-delay: 0.34s; }
.nav-links.active.submenu-active .menu-submenu.active .submenu-list a:nth-child(2) { animation-delay: 0.46s; }
.nav-links.active.submenu-active .menu-submenu.active .submenu-list a:nth-child(3) { animation-delay: 0.58s; }
.nav-links.active.submenu-active .menu-submenu.active .submenu-list a:nth-child(4) { animation-delay: 0.7s; }
.nav-links.active.submenu-active .menu-submenu.active .submenu-list a:nth-child(5) { animation-delay: 0.82s; }
.nav-links.active.submenu-active .menu-submenu.active .submenu-footer { animation-delay: 0.94s; }

.nav-links.closing.submenu-active .menu-submenu.active .submenu-back { animation-delay: 0s; }
.nav-links.closing.submenu-active .menu-submenu.active .submenu-section-title { animation-delay: 0.06s; }
.nav-links.closing.submenu-active .menu-submenu.active .submenu-list a:nth-child(1) { animation-delay: 0.14s; }
.nav-links.closing.submenu-active .menu-submenu.active .submenu-list a:nth-child(2) { animation-delay: 0.22s; }
.nav-links.closing.submenu-active .menu-submenu.active .submenu-list a:nth-child(3) { animation-delay: 0.3s; }
.nav-links.closing.submenu-active .menu-submenu.active .submenu-list a:nth-child(4) { animation-delay: 0.38s; }
.nav-links.closing.submenu-active .menu-submenu.active .submenu-list a:nth-child(5) { animation-delay: 0.46s; }
.nav-links.closing.submenu-active .menu-submenu.active .submenu-footer { animation-delay: 0.54s; }

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: clamp(16px, 3vw, 20px);
    letter-spacing: 0.06em;
    text-transform: none;
    font-family: inherit;
    position: relative;
    padding: clamp(6px, 1.5vh, 10px) 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 400;
}

.nav-links > li:not(.menu-bottom-group) {
    width: 100%;
    padding: 2px 0;
}

.nav-links > li:not(.menu-bottom-group):last-of-type {
    border-bottom: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gray-400);
    transition: width 0.4s ease;
}

.nav-links a:hover::after,
.nav-links a:active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a:active {
    color: var(--gray-900);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.menu-bottom-group,
.menu-bottom-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

@keyframes menuItemSlideIn {
    from {
        opacity: 0;
        transform: translate3d(100vw, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes submenuItemSlideIn {
    from {
        opacity: 0;
        transform: translate3d(100vw, 0, 0);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes menuItemSlideOut {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    to {
        opacity: 0;
        transform: translate3d(100vw, 0, 0);
    }
}

@keyframes submenuItemSlideOut {
    from {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
    to {
        opacity: 0;
        transform: translate3d(100vw, 0, 0);
    }
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
        margin-right: 0;
    }

    nav {
        padding: 14px var(--spacing-lg);
        min-height: 54px;
    }

    .nav-icons-left .search-link {
        display: none;
    }

    .nav-container nav.container {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-rows: auto;
        row-gap: 0;
        padding-left: clamp(20px, 3vw, 36px);
        padding-right: clamp(20px, 3vw, 36px);
    }

    .nav-left {
        display: none;
    }
    
    nav .logo {
        grid-column: 1;
        grid-row: 1;
        justify-self: start;
        position: static;
        transform: none;
        order: auto;
    }

    nav .nav-icons {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
        order: auto;
        margin-left: 0;
    }

    .nav-container {
        background: transparent;
        border-bottom: 1px solid transparent;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav-container .logo,
    .nav-container .nav-links a,
    .nav-container .menu-primary-trigger,
    .nav-container .nav-icon,
    .nav-container .search-link .nav-icon {
        color: #ffffff;
        stroke: #ffffff;
    }

    .nav-container .nav-links {
        color: #ffffff;
    }

    .nav-container:hover {
        background: #ffffff;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
    }

    .nav-container:hover .logo,
    .nav-container:hover .nav-links a,
    .nav-container:hover .menu-primary-trigger,
    .nav-container:hover .nav-icon,
    .nav-container:hover .search-link .nav-icon {
        color: var(--text-dark);
        stroke: var(--text-dark);
    }

    .nav-container:hover .cart-count {
        background: var(--text-dark);
        color: #ffffff;
        border: 1px solid var(--text-dark);
    }

    .nav-container .cart-count {
        background: rgba(255, 255, 255, 0.14);
        color: #ffffff;
        border: 1px solid rgba(255, 255, 255, 0.35);
    }

    .nav-container.hero-transparent {
        background: transparent;
        border-bottom: 1px solid transparent;
        box-shadow: none;
    }

    .nav-container.hero-transparent .logo,
    .nav-container.hero-transparent .nav-icon,
    .nav-container.hero-transparent .nav-links a {
        color: #fff;
        stroke: #fff;
    }

    .nav-container.hero-transparent .search-link .nav-icon {
        color: #fff;
        stroke: #fff;
    }

    .nav-container.hero-transparent .mobile-menu-btn span {
        background: #fff;
    }

    .nav-container.hero-transparent .cart-count {
        color: #000;
    }

    .nav-links {
        display: flex;
        position: relative;
        flex-direction: row;
        width: auto;
        height: auto;
        background: transparent;
        gap: 378px;
        grid-column: 2;
        grid-row: 1;
        justify-content: center;
        align-items: center;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        padding: 0;
        margin: 0;
    }

    .logo {
        font-weight: 600;
        letter-spacing: 0.14em;
        font-size: clamp(26px, 2.4vw, 30px);
    }

    .nav-links > li.menu-primary {
        width: auto;
        padding: 0;
    }
    
    .nav-links a { 
        font-size: 13px;
        padding: 0;
    }

    .nav-links > li.menu-primary > .menu-primary-trigger {
        background: none;
        border: none;
        padding: 0;
        font-size: 13px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: inherit;
        font-family: inherit;
        cursor: pointer;
    }

    .nav-links a::after {
        height: 2px;
        background: #ffffff;
    }

    .menu-bottom-group,
    .menu-bottom-links {
        display: none;
    }

    .nav-links .menu-submenu {
        display: block;
        position: fixed;
        top: var(--nav-height, 96px);
        left: 0;
        width: 100vw;
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        border-radius: 0;
        padding: 96px 56px;
        min-height: 420px;
        max-height: calc(100vh - var(--nav-height, 96px) - 24px);
        overflow-y: auto;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
        z-index: 1100;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: none;
        --submenu-center: 50vw;
    }

    .nav-links.submenu-active .menu-submenu.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }

    .nav-links.submenu-active .menu-primary {
        opacity: 0.55;
    }

    .nav-links.submenu-active .menu-primary .menu-primary-trigger[aria-expanded="true"] {
        opacity: 1;
    }

    .menu-submenu .submenu-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(20px, 3vh, 36px);
        text-align: center;
        width: min(520px, 80vw);
        margin-left: auto;
        margin-right: auto;
        transform: none;
        position: relative;
        left: 0;
    }

    .menu-submenu .submenu-list a {
        padding: 6px 0;
        min-height: auto;
        font-family: 'Cormorant Garamond', serif;
        font-size: 18px;
        letter-spacing: 0.16em;
        line-height: 1.25;
        text-transform: uppercase;
        color: #1d1a17;
    }

    .menu-submenu .submenu-section-title {
        padding: 0;
        margin: 12px 0 6px;
        font-family: 'Cormorant Garamond', serif;
        letter-spacing: 0.24em;
        text-align: center;
        width: min(520px, 80vw);
        margin-left: auto;
        margin-right: auto;
        transform: none;
        position: relative;
        left: 0;
    }

    .menu-submenu .submenu-footer {
        text-align: center;
        width: min(520px, 80vw);
        margin-left: auto;
        margin-right: auto;
        transform: none;
        position: relative;
        left: 0;
    }

    .menu-submenu .submenu-back {
        display: none;
    }

    /* Desktop submenu: remove sliding animations */
    .nav-links.submenu-active .menu-submenu.active,
    .nav-links.submenu-active .menu-submenu.active .submenu-list,
    .nav-links.submenu-active .menu-submenu.active .submenu-section-title,
    .nav-links.submenu-active .menu-submenu.active .submenu-footer,
    .nav-links.submenu-active .menu-submenu.active .submenu-list a {
        animation: none !important;
        transform: none !important;
    }

    .nav-links.submenu-active .menu-submenu.active .submenu-list a,
    .nav-links.submenu-active .menu-submenu.active .submenu-section-title,
    .nav-links.submenu-active .menu-submenu.active .submenu-footer {
        opacity: 1 !important;
    }
}

@media (min-width: 1024px) {
    .nav-links.active {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(8, 8, 8, 0.3);
        backdrop-filter: blur(72px) saturate(170%);
        -webkit-backdrop-filter: blur(72px) saturate(170%);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        padding: clamp(40px, 6vh, 64px) 0 24px;
        box-shadow: none;
        z-index: 1200;
    }

    .nav-links.active > li,
    .nav-links.active .menu-bottom-group {
        width: 100%;
    }

    .nav-links.active > li.menu-primary {
        margin-bottom: 6px;
    }

    .nav-links.active > li.menu-primary > .menu-primary-trigger {
        display: block;
        width: 100%;
        padding: 16px 32px 16px 16px;
        font-size: 16px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        background: none;
        border: none;
        text-align: left;
        cursor: pointer;
        color: #ffffff;
        font-family: inherit;
        position: relative;
        line-height: 1.4;
        min-height: 48px;
        font-weight: 400;
    }

    .nav-links.active > li.menu-primary > .menu-primary-trigger::after {
        content: '';
        position: absolute;
        right: 18px;
        top: 50%;
        width: 8px;
        height: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.7);
        border-right: 1px solid rgba(255, 255, 255, 0.7);
        transform: translateY(-50%) rotate(45deg);
        background: none;
        opacity: 0.6;
    }

    .nav-links.active .menu-submenu {
        display: none;
        width: 100%;
        padding: 0 0 12px;
        position: static;
    }

    .nav-links.active.submenu-active .menu-primary,
    .nav-links.active.submenu-active .menu-bottom-group {
        display: none;
    }

    .nav-links.active.submenu-active .menu-submenu.active {
        display: flex;
        flex-direction: column;
        min-height: 100%;
    }

    .nav-links.active .submenu-back {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: none;
        border: none;
        padding: 10px 32px 16px 16px;
        font-size: 14px;
        letter-spacing: 0.04em;
        text-transform: none;
        color: #ffffff;
        cursor: pointer;
        line-height: 1.4;
        width: 100%;
        font-weight: 400;
    }

    .nav-links.active .submenu-back-arrow {
        font-size: 16px;
        line-height: 1;
    }

    .nav-links.active .submenu-list {
        display: grid;
        gap: 12px;
        margin-bottom: 18px;
    }

    .nav-links.active .submenu-list a {
        text-decoration: none;
        color: #ffffff;
        font-size: 14px;
        letter-spacing: 0.02em;
        text-transform: none;
        padding: 12px 32px 12px 16px;
        min-height: 48px;
        display: flex;
        align-items: center;
        line-height: 1.4;
        font-weight: 400;
    }

    .nav-links.active .submenu-section-title {
        font-size: 12px;
        letter-spacing: 0.04em;
        text-transform: none;
        color: #ffffff;
        margin: 6px 0 12px;
        padding: 0 32px 0 16px;
        font-weight: 400;
    }

    .nav-links.active .menu-bottom-group {
        margin-top: clamp(24px, 3vh, 32px);
        background: transparent;
        padding: clamp(16px, 2.5vh, 24px) 0 12px;
        position: relative;
    }

    .nav-links.active .menu-bottom-group::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 1px;
        width: 100%;
        background: rgba(255, 255, 255, 0.18);
    }

    .nav-links.active .menu-bottom-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding-left: 0;
        align-items: flex-start;
        width: 100%;
    }

    .nav-links.active .menu-bottom-links a,
    .nav-links.active .menu-utility-trigger {
        font-size: 13px;
        letter-spacing: 0.01em;
        text-transform: none;
        line-height: 1.4;
        min-height: 48px;
        display: flex;
        align-items: center;
        color: #ffffff;
        font-weight: 400;
        padding: 0 32px 0 16px;
        background: none;
        border: none;
        font-family: inherit;
        width: 100%;
        text-align: left;
        cursor: pointer;
    }

    .nav-links.active .submenu-footer {
        color: #ffffff;
    }

    .nav-links.active #countryLocatorMenuLabel {
        color: #ffffff;
    }
}

@media (min-width: 1024px) {
    body.has-fixed-nav .hero {
        margin-top: 0;
    }
}

@media (max-width: 1023px) {
    .nav-container nav.container {
        position: relative;
    }

    .mobile-menu-btn {
        position: relative;
    }

    .nav-icons {
        position: relative;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(12, 12, 12, 0.3);
        backdrop-filter: blur(72px) saturate(170%);
        -webkit-backdrop-filter: blur(72px) saturate(170%);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0;
        list-style: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.25s ease;
        z-index: 1000;
        box-shadow: none;
        padding: clamp(40px, 7vh, 56px) 0 20px;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        touch-action: pan-y;
    }

    @supports (height: 100svh) {
        .nav-links {
            height: 100svh;
        }
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links > li,
    .nav-links .menu-bottom-group {
        position: relative;
        z-index: 2;
    }

    .nav-icons {
        display: flex;
        gap: 20px;
        align-items: center;
        margin-left: 0;
    }

    .nav-links a {
        color: #ffffff;
        letter-spacing: 0.04em;
        font-weight: 400;
        padding: 6px 32px 6px 16px;
        line-height: 1.4;
        min-height: 48px;
        display: flex;
        align-items: center;
        transition: opacity 0.2s ease;
    }

    .nav-links > li.menu-primary > a {
        display: block;
        width: 100%;
        padding: 16px 32px 16px 16px;
        font-size: 16px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        line-height: 1.4;
        min-height: 48px;
        color: #ffffff;
        font-weight: 400;
    }

    .nav-links > li.menu-primary > .menu-primary-trigger {
        display: block;
        width: 100%;
        padding: 16px 32px 16px 16px;
        font-size: 16px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        background: none;
        border: none;
        text-align: left;
        cursor: pointer;
        color: #ffffff;
        font-family: inherit;
        position: relative;
        line-height: 1.4;
        min-height: 48px;
        transition: opacity 0.2s ease;
        font-weight: 400;
    }

    .nav-links > li.menu-primary {
        width: 100%;
        margin-bottom: 6px;
    }

    .nav-links .menu-submenu {
        display: none;
        width: 100%;
        padding: 0 0 12px;
    }

    .nav-links.submenu-active .menu-primary,
    .nav-links.submenu-active .menu-bottom-group {
        display: none;
    }

    .nav-links.submenu-active .menu-submenu.active {
        display: flex;
        flex-direction: column;
        min-height: 100%;
    }

    .submenu-back {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: none;
        border: none;
        padding: 10px 32px 16px 16px;
        font-size: 14px;
        letter-spacing: 0.04em;
        text-transform: none;
        color: #ffffff;
        cursor: pointer;
        line-height: 1.4;
        width: 100%;
        font-weight: 400;
    }

    .submenu-back-arrow {
        font-size: 16px;
        line-height: 1;
    }

    .submenu-list {
        display: grid;
        gap: 12px;
        margin-bottom: 18px;
    }

    .submenu-list a {
        text-decoration: none;
        color: #ffffff;
        font-size: 14px;
        letter-spacing: 0.02em;
        text-transform: none;
        padding: 12px 32px 12px 16px;
        min-height: 48px;
        display: flex;
        align-items: center;
        line-height: 1.4;
        font-weight: 400;
    }

    .submenu-section-title {
        font-size: 12px;
        letter-spacing: 0.04em;
        text-transform: none;
        color: #ffffff;
        margin: 6px 0 12px;
        padding: 0 32px 0 16px;
        font-weight: 400;
    }

    .nav-links a::after {
        content: none;
    }

    .nav-links > li.menu-primary > a::after {
        content: '';
        position: absolute;
        right: 18px;
        top: 50%;
        left: auto;
        bottom: auto;
        width: 8px;
        height: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.7);
        border-right: 1px solid rgba(255, 255, 255, 0.7);
        transform: translateY(-50%) rotate(45deg);
        background: none;
        opacity: 0.6;
    }

    .nav-links > li.menu-primary > .menu-primary-trigger::after {
        content: '';
        position: absolute;
        right: 18px;
        top: 50%;
        left: auto;
        bottom: auto;
        width: 8px;
        height: 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.7);
        border-right: 1px solid rgba(255, 255, 255, 0.7);
        transform: translateY(-50%) rotate(45deg);
        background: none;
        opacity: 0.6;
    }

    .menu-bottom-group {
        margin-top: clamp(24px, 3vh, 32px);
        width: 100%;
        background: transparent;
        padding: clamp(16px, 2.5vh, 24px) 0 12px;
        position: relative;
    }

    .menu-bottom-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding-left: 0;
        align-items: flex-start;
    }

    .menu-bottom-links a {
        font-size: 13px;
        letter-spacing: 0.01em;
        text-transform: none;
        line-height: 1.4;
        min-height: 48px;
        display: flex;
        align-items: center;
        color: #ffffff;
        font-weight: 400;
    }

    .menu-utility-trigger {
        font-size: 13px;
        letter-spacing: 0.01em;
        text-transform: none;
        line-height: 1.4;
        min-height: 48px;
        display: flex;
        align-items: center;
        background: none;
        border: none;
        padding: 0 16px;
        color: #ffffff;
        font-family: inherit;
        cursor: pointer;
        width: 100%;
        text-align: left;
    }


    .menu-bottom-group::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        height: 1px;
        width: 100%;
        background: rgba(255, 255, 255, 0.18);
    }

    .nav-links a:hover,
    .nav-links a:active,
    .nav-links .menu-primary-trigger:hover,
    .nav-links .menu-primary-trigger:active,
    .menu-utility-trigger:hover,
    .menu-utility-trigger:active {
        color: inherit;
        text-shadow: none;
        opacity: 1;
    }

    .submenu-footer {
        font-size: 12px;
        letter-spacing: 0.02em;
        color: #ffffff;
        margin-top: auto;
        line-height: 1.4;
        padding: 0 32px 12px 16px;
        font-weight: 400;
    }

.menu-bottom-links .country-locator-item {
    margin-top: 0;
    padding-top: 2px;
    padding-left: 0;
    border-top: none;
    width: 100%;
    align-self: stretch;
}

.menu-bottom-links .country-locator-link {
    justify-content: flex-start;
    gap: 6px;
    white-space: nowrap;
}

.menu-bottom-links #countryLocatorMenuLabel {
    color: #ffffff;
    letter-spacing: 0.02em;
}
}

body.menu-open .nav-container.hero-transparent .mobile-menu-btn span {
    background: #fff;
}

body.menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, 0.22);
    backdrop-filter: blur(72px) saturate(170%);
    -webkit-backdrop-filter: blur(72px) saturate(170%);
    z-index: 900;
    pointer-events: none;
}

body.menu-open .nav-container {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
}

body.menu-open .nav-container .logo,
body.menu-open .nav-container .nav-icons {
    opacity: 0;
    pointer-events: none;
}

@media (max-width: 1023px) {
    body.menu-open .mobile-menu-btn {
        position: relative;
        margin-right: auto;
    }
}

body.menu-open .nav-container::after {
    opacity: 0;
}

/* Country Locator Overlay */
.country-locator-overlay {
    position: fixed;
    inset: 0;
    background: #F6F4F1;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 2000;
}

.country-locator-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.country-locator-overlay.active .country-locator-dialog {
    transform: translateY(0);
    opacity: 1;
}

.country-locator-dialog {
    width: min(720px, 100%);
    background: #F6F4F1;
    border: none;
    padding: clamp(20px, 4vw, 32px);
    max-height: 100vh;
    overflow-y: auto;
    position: relative;
    border-radius: 0;
    transform: translateY(18px);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.country-locator-dialog h3 {
    font-size: clamp(18px, 3.5vw, 24px);
    margin-bottom: 18px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #111111;
    font-weight: 400;
}

.country-locator-subtitle {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.country-locator-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #111111;
}

.country-locator-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.country-locator-section-title {
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.6);
    font-weight: 400;
}

.country-locator-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.country-option {
    width: 100%;
    text-align: left;
    border: none;
    background: none;
    padding: 6px 0;
    font-size: 14px;
    color: rgba(17, 17, 17, 0.72);
    cursor: pointer;
    letter-spacing: 0.02em;
    font-weight: 400;
}

.country-option:hover {
    opacity: 1;
}

.country-option-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
}

.country-option-currency {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.56);
}

.country-option.is-selected {
    color: #111111;
    font-weight: 500;
}

.country-selector-trigger {
    background: transparent;
    border: none;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: inherit;
}

.country-selector-trigger .nav-icon {
    width: 21px;
    height: 21px;
}

.menu-bottom-links .country-selector-trigger {
    width: 100% !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    text-align: left !important;
    padding: 0 32px 0 16px !important;
    min-height: 48px !important;
    white-space: normal !important;
}

.menu-bottom-links .country-selector-trigger #countrySelectorLabel {
    margin-left: 4px;
    letter-spacing: 0.08em;
}

.country-locator-error {
    font-size: 13px;
    color: #111111;
}

.country-locator-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
    margin-top: 22px;
}

.country-locator-selected {
    color: rgba(0, 0, 0, 0.55);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.nav-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 1.4;
    fill: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.nav-icons a:hover .nav-icon {
    stroke: #000;
    transform: scale(1.1);
}

.search-link .nav-icon {
    opacity: 1;
    transform: none;
}

.search-link:hover .nav-icon,
.search-link:active .nav-icon {
    opacity: 1;
    transform: none;
}

.nav-container.hero-transparent .search-link .nav-icon {
    opacity: 1;
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(246, 244, 241, 0.96);
    backdrop-filter: blur(6px);
    border-radius: 0;
    padding: calc(var(--nav-height, 96px) + 12px) 18px 24px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    transition: transform 0.35s ease, opacity 0.25s ease;
    z-index: 1200;
}

.search-overlay.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.search-shell {
    width: min(860px, calc(100% - 24px));
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(17, 17, 17, 0.08);
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    padding: clamp(16px, 2.2vw, 22px);
    position: relative;
}

.search-headline {
    margin: 0 0 12px;
}

.search-kicker {
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.52);
}

.search-subtitle {
    margin: 5px 0 0;
    font-size: 13px;
    color: rgba(17, 17, 17, 0.68);
}

.search-input {
    width: 100%;
    background: transparent;
    border: none;
    font-size: clamp(15px, 2.2vw, 18px);
    letter-spacing: 0.02em;
    padding: 10px 12px 10px 38px;
    color: #111111;
    font-family: inherit;
    font-weight: 500;
}

.search-input::placeholder {
    color: rgba(17, 17, 17, 0.45);
}

.search-input:focus {
    outline: none;
}

.search-input-wrap {
    position: relative;
    width: 100%;
    border: 1px solid rgba(17, 17, 17, 0.14);
    border-radius: 999px;
    background: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-input-wrap:focus-within {
    border-color: rgba(17, 17, 17, 0.32);
    box-shadow: 0 0 0 4px rgba(17, 17, 17, 0.06);
}

.search-input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    stroke: rgba(26, 26, 26, 0.5);
    stroke-width: 1.4;
    fill: none;
    pointer-events: none;
}

.search-suggestions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
    font-size: 13px;
    color: #111111;
    letter-spacing: 0.02em;
    text-transform: none;
    font-weight: 400;
}

.search-suggestions a {
    text-decoration: none;
    color: inherit;
}

.search-recent-item {
    background: #ffffff;
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 999px;
    padding: 7px 12px;
    text-align: left;
    font-size: 12px;
    letter-spacing: 0.02em;
    color: #111111;
    text-transform: none;
    font-weight: 400;
    font-family: inherit;
    cursor: pointer;
}

.search-collections a {
    text-decoration: none;
    color: inherit;
}

.search-quick-links {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.search-quick-links a {
    text-decoration: none;
    color: #111111;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 999px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.92);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.search-quick-links a:hover {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

.search-meta {
    margin-top: 12px;
    min-height: 16px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.54);
}

.search-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: 1px solid rgba(17, 17, 17, 0.1);
    background: #ffffff;
    color: #111;
    font-size: 20px;
    line-height: 1;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    padding: 0;
    cursor: pointer;
}

.search-block {
    margin-top: 18px;
}

.search-block-title {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.45);
    margin: 0 0 10px;
}

.search-collections {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
    color: #1a1a1a;
    letter-spacing: 0.02em;
    font-weight: 500;
}

body.search-open .nav-container {
    filter: none;
}

.search-results {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: min(56vh, 520px);
    overflow-y: auto;
    padding-right: 4px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #111111;
    font-size: 13px;
    letter-spacing: 0.02em;
    border-radius: 12px;
    padding: 8px 9px;
    transition: background 0.2s ease;
    border: 1px solid transparent;
}

.search-result-item:hover {
    color: #111111;
    background: rgba(17, 17, 17, 0.03);
    border-color: rgba(17, 17, 17, 0.08);
}

.search-result-title {
    font-size: 14px;
    color: #111111;
    font-weight: 500;
}

.search-result-meta {
    font-size: 12px;
    color: rgba(17, 17, 17, 0.6);
    letter-spacing: 0.02em;
}

.search-result-thumb {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #e8e4df;
}

.search-result-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.search-result-body {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    min-width: 0;
    flex: 1;
}

.search-result-body .search-result-title,
.search-result-body .search-result-meta {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-view-all {
    justify-content: center;
    margin-top: 3px;
    padding: 10px 12px;
    border: 1px solid rgba(17, 17, 17, 0.18);
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: #ffffff;
}

.search-empty-state {
    margin: 8px 0 0;
    color: rgba(17, 17, 17, 0.58);
    font-size: 13px;
    text-align: center;
    padding: 20px 12px;
}

.search-products {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.search-product-card {
    text-decoration: none;
    color: rgba(26, 26, 26, 0.75);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-product-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.search-product-card span {
    font-size: 12px;
    color: rgba(17, 17, 17, 0.72);
    letter-spacing: 0.02em;
}

/* Cart Count Badge */
.cart-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    transform: none;
    background: #fff;
    color: #000;
    font-size: clamp(9px, 1.2vw, 12px);
    font-weight: 700;
    min-width: auto;
    width: auto;
    height: auto;
    border-radius: 999px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: none;
    animation: cartPulse 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.nav-container.hero-transparent .cart-count {
    color: #000;
}

.nav-container .cart-count {
    color: #000;
}

@media (max-width: 767px) {
    .nav-container .cart-count {
        right: 0;
        top: 0;
        bottom: auto;
        transform: none;
        background: #fff;
        color: #000;
        border-radius: 999px;
        padding: 0 5px;
        line-height: 1.1;
    }

    .nav-container.hero-transparent .cart-count {
        background: #fff;
        color: #000;
        padding: 0 5px;
        border-radius: 999px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: 1px solid rgba(0, 0, 0, 0.08);
    }
}

@media (min-width: 1024px) {
    .hero.hero-haute {
        padding-top: var(--nav-height, 96px);
    }

    .hero.hero-haute .hero-media {
        top: var(--nav-height, 96px);
        height: calc(100% - var(--nav-height, 96px));
    }
}

.shipping-notice {
    margin-top: 8px;
    font-size: 12px;
    color: #6b5f56;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.shipping-notice.error {
    color: #9f2f2f;
}

.shipping-method-btn {
    width: 100%;
    background: #fff;
    color: #000;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 14px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: none;
}

.shipping-method-eta {
    text-align: left;
}

.shipping-method-price {
    text-align: right;
    white-space: nowrap;
}

.cart-link:hover .cart-count {
    box-shadow: 0 4px 16px rgba(201, 165, 93, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

@keyframes cartPulse {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.25); }
    100% { transform: scale(1); opacity: 1; }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
}

@media (min-width: 375px) {
    .btn {
        padding: 12px 32px;
        font-size: 10px;
    }
}

@media (min-width: 480px) {
    .btn {
        padding: 13px 36px;
        font-size: 11px;
        gap: 11px;
    }
}

@media (min-width: 600px) {
    .btn {
        padding: 14px 40px;
        font-size: 11px;
    }
}

@media (min-width: 768px) {
    .btn {
        padding: 14px 44px;
        font-size: 12px;
    }
}

@media (min-width: 1024px) {
    .btn {
        padding: 16px 48px;
        font-size: 12px;
        width: auto;
    }
}

@media (min-width: 1440px) {
    .btn {
        padding: 16px 52px;
        font-size: 13px;
        gap: 12px;
    }
}

.btn-primary {
    background: var(--text-dark);
    color: var(--cream);
    border: 2px solid var(--text-dark);
    box-shadow: none;
    font-weight: 500;
    letter-spacing: 0.25em;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    transform: translateX(-100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-primary span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.btn-primary:hover::before,
.btn-primary:active::before {
    transform: translateX(0);
}

.btn-primary:hover::after {
    transform: translateX(100%);
}

.btn-primary:hover {
    box-shadow: 0 8px 32px rgba(31, 29, 27, 0.25);
    transform: translateY(-2px);
}

.btn-primary:hover span {
    color: var(--cream);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 4px 16px rgba(31, 29, 27, 0.15);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
    box-shadow: none;
    font-weight: 500;
    letter-spacing: 0.25em;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--text-dark);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.btn-secondary span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.btn-secondary:hover::before,
.btn-secondary:active::before {
    transform: scaleX(1);
}

.btn-secondary:hover,
.btn-secondary:active {
    border-color: var(--text-dark);
    box-shadow: 0 6px 24px rgba(31, 29, 27, 0.2);
    transform: translateY(-2px);
}

.btn-secondary:hover span {
    color: var(--cream);
}

.btn-full {
    width: 100%;
}

.btn-link {
    background: none;
    border: none;
    color: var(--gray-700);
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
    padding: 4px 0;
    position: relative;
    transition: color 0.3s ease;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gray-500);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.btn-link:hover {
    color: var(--gray-900);
}

.btn-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-link.danger {
    color: #c94545;
}

.btn-link.danger::after {
    background: #c94545;
}

/* Home Hero Section */
.hero {
    position: relative;
    height: auto;
    min-height: clamp(520px, 70vh, 820px);
    background: #fff;
    padding: clamp(16px, 3vw, 32px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.03), transparent 70%);
    animation: heroGlow 6s ease-in-out infinite;
}

.hero:not(.hero-nude-block) .hero-media {
    inset: clamp(16px, 3vw, 32px);
}

@media (min-width: 1024px) {
    .hero {
        min-height: 100vh;
        height: 100vh;
        padding: 0;
    }

    .hero:not(.hero-nude-block) .hero-media {
        inset: 0;
    }

    .hero.hero-haute {
        min-height: 100vh;
        height: 100vh;
        padding: 0;
    }

    .hero.hero-haute .hero-media {
        inset: 0;
    }

    /* Desktop: full-bleed hero video under transparent header */
    .hero.hero-haute {
        min-height: 100vh;
        padding: 0;
    }

    .hero.hero-haute .hero-media {
        inset: 0;
    }

    .hero.hero-haute .hero-content {
        padding-top: var(--nav-height, 96px);
        padding-bottom: clamp(40px, 6vw, 96px);
    }

    .hero:not(.hero-nude-block) .hero-video,
    .hero:not(.hero-nude-block) .hero-image {
        object-fit: cover;
        object-position: center;
    }
}

@media (min-width: 1024px) {
    .hero.hero-haute {
        min-height: 100vh !important;
        height: 100vh !important;
        max-height: 100vh !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .hero.hero-haute .hero-media {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }

    .hero.hero-haute .hero-video,
    .hero.hero-haute .hero-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        object-position: center;
    }
}

@media (max-width: 767px) {
    :root {
        --nav-height: 62px !important;
    }

    nav {
        padding: 12px var(--spacing-sm) !important;
        min-height: 62px !important;
    }

    .nav-container nav.container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    nav .nav-icons {
        gap: 18px !important;
        align-items: center;
    }

    .nav-icons a,
    .mobile-menu-btn {
        width: 34px !important;
        height: 34px !important;
    }

    .mobile-menu-btn {
        padding: 9px !important;
    }

    .mobile-menu-btn span {
        width: 21px;
    }

    .nav-icons a .nav-icon {
        width: 21px;
        height: 21px;
    }

    .cart-link .cart-count,
    .nav-container .cart-count {
        top: 0px;
        right: 0px;
    }

    .nav-icons-right .search-link {
        display: none;
    }

    .nav-icons-right .country-locator-link {
        display: none;
    }

    .hero:not(.hero-nude-block) {
        padding: 0;
        height: 100vh;
        min-height: 100vh;
    }

    .hero:not(.hero-nude-block) .hero-media {
        inset: 0;
    }
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.hero-subtitle {
    font-size: var(--text-sm);
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 8px;
    opacity: 0.9;
}

.hero-subtitle.hero-subtitle-small {
    font-size: clamp(10px, 1.1vw + 2px, 12px);
    letter-spacing: 0.22em;
    color: #fff;
}

.hero-title {
    font-size: clamp(48px, 10vw, 96px);
    color: var(--text-dark);
    font-weight: 300;
    letter-spacing: var(--ls-wide);
    line-height: 1.1;
    margin-bottom: 10px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.hero-title.hero-title-small {
    font-size: clamp(28px, 6vw, 56px);
    color: #fff;
    font-weight: 500;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero-title.hero-title-light {
    color: #fff;
    text-shadow: 0 2px 26px rgba(0, 0, 0, 0.4);
}

.hero-subtitle.hero-subtitle-light {
    color: rgba(255, 255, 255, 0.72);
}

.hero-description.hero-description-light {
    color: rgba(255, 255, 255, 0.86);
    text-transform: uppercase;
    letter-spacing: 0.26em;
    font-size: clamp(10px, 1.6vw, 12px);
    max-width: 520px;
}

.hero-description {
    font-size: clamp(16px, 3vw, 22px);
    color: var(--text-light);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: var(--spacing-2xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.02em;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    justify-content: center;
    align-items: center;
}

.hero-cta.hero-cta-text {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(12px, 1.4vw, 16px);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #fff;
    margin-top: 6px;
}

.hero-cta.hero-cta-link {
    text-decoration: none;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-cta.hero-cta-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 1px;
    background: #fff;
}

@media (min-width: 768px) {
    .hero-cta {
        flex-direction: row;
        gap: var(--spacing-xl);
    }
}

@media (min-width: 1024px) {
    .hero.hero-haute .hero-cta {
        flex-direction: column;
        gap: 18px;
    }

    .hero.hero-haute .hero-note {
        white-space: nowrap;
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(18px, 2.2vw, 26px);
        letter-spacing: 0.32em;
        font-weight: 500;
    }

    .hero.hero-haute .hero-cta .btn {
        white-space: nowrap;
        font-family: 'Cormorant Garamond', serif;
        font-size: clamp(12px, 1.4vw, 14px);
        letter-spacing: 0.28em;
        font-weight: 500;
    }

    .hero.hero-haute .hero-note-year {
        letter-spacing: 0.32em;
        font-variant-numeric: lining-nums tabular-nums;
    }
}

.hero-cta .btn {
    min-width: 240px;
}

.hero-note {
    font-size: clamp(16px, 2.8vw, 24px);
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0 0 0;
    font-weight: 500;
}

.hero-maison .hero-description {
    font-size: clamp(14px, 2.6vw, 22px);
    font-weight: 500;
    letter-spacing: 0.16em;
    color: rgba(255, 255, 255, 0.98);
    text-transform: uppercase;
}

.hero-haute .btn-primary {
    background: transparent;
    border: none;
    color: #ffffff;
    box-shadow: none;
    padding: 0;
    min-width: 0;
    font-size: clamp(13px, 2.2vw, 18px);
    letter-spacing: 0.28em;
    font-weight: 500;
    text-decoration: underline;
    text-decoration-color: #ffffff;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    overflow: visible;
    display: inline-block;
}

.hero-haute .btn-primary:hover,
.hero-haute .btn-primary:active {
    background: transparent;
    color: #ffffff;
    border: none;
    box-shadow: none;
    transform: none;
}

.hero-haute .btn-primary:hover span,
.hero-haute .btn-primary:active span {
    color: #ffffff;
}

/* Page Hero */
.page-hero {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, var(--gray-50) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(0, 0, 0, 0.03), transparent 60%);
    pointer-events: none;
}

@media (min-width: 768px) {
    .page-hero {
        padding: var(--spacing-2xl) 0 var(--spacing-xl);
    }
}

.page-title {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: clamp(32px, 6vw, 56px);
    letter-spacing: 0.15em;
}

.page-description {
    max-width: 650px;
    margin: 0 auto;
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-mid);
    text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:active {
    color: var(--text-dark);
}

.account-section .breadcrumb {
    justify-content: flex-start;
}

/* Story + Editorial */
.story-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

@media (min-width: 768px) {
    .story-section { padding: var(--spacing-2xl) 0; }
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

@media (min-width: 1024px) {
    .story-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    }
}

.story-image {
    width: 100%;
    height: clamp(320px, 55vw, 520px);
    border-radius: clamp(18px, 3vw, 28px);
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(18, 13, 9, 0.18);
}

.story-body {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.story-editorial-body {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.story-kicker {
    font-size: clamp(10px, 1.3vw + 2px, 12px);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.story-title {
    font-size: clamp(28px, 5vw, 50px);
    letter-spacing: 0.16em;
    color: var(--text-dark);
}

.story-text {
    font-size: var(--text-md);
    color: var(--text-light);
    line-height: 1.9;
}

.story-highlight {
    background: #f7f3ee;
    border: 1px solid rgba(80, 60, 40, 0.12);
    border-radius: clamp(16px, 3vw, 24px);
    padding: var(--spacing-lg);
    display: grid;
    gap: 12px;
}

.story-highlight-title {
    font-size: 14px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-mid);
}

.story-highlight p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.8;
}

.press-strip {
    padding: var(--spacing-lg) 0;
    background: #f2ede7;
}

.press-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    text-align: center;
}

@media (min-width: 768px) {
    .press-grid {
        grid-template-columns: repeat(3, 1fr);
        text-align: center;
    }
}

.press-item {
    border: 1px solid rgba(74, 52, 32, 0.12);
    border-radius: 999px;
    padding: 14px 18px;
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-mid);
    background: rgba(255, 255, 255, 0.7);
}

.journal-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

@media (min-width: 768px) {
    .journal-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xl);
    }
}

.journal-card {
    background: var(--white);
    border-radius: clamp(16px, 2.5vw, 22px);
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(18, 13, 9, 0.12);
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.journal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 60px rgba(18, 13, 9, 0.18);
}

.journal-card img {
    width: 100%;
    height: clamp(220px, 32vw, 280px);
    object-fit: cover;
}

.journal-card-body {
    padding: var(--spacing-md);
    display: grid;
    gap: 10px;
}

.journal-meta {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.journal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(18px, 2.4vw, 24px);
    color: var(--text-dark);
    letter-spacing: 0.12em;
}

.journal-excerpt {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
}

.journal-link {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--text-dark);
}

.journal-article {
    margin-top: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: #f7f3ee;
    border: 1px solid rgba(80, 60, 40, 0.12);
    border-radius: clamp(16px, 3vw, 24px);
}

@media (min-width: 768px) {
    .journal-article {
        margin-top: var(--spacing-xl);
        padding: var(--spacing-xl);
    }
}

.journal-article h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 2.6vw, 28px);
    color: var(--text-dark);
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.journal-article p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 12px;
}

.journal-article p:last-child {
    margin-bottom: 0;
}

.journal-detail {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

@media (min-width: 768px) {
    .journal-detail {
        padding: var(--spacing-2xl) 0;
    }
}

.journal-detail .container {
    max-width: 920px;
}

.journal-detail-image {
    width: 100%;
    height: clamp(280px, 55vw, 520px);
    object-fit: cover;
    border-radius: clamp(18px, 3vw, 28px);
    box-shadow: 0 24px 60px rgba(18, 13, 9, 0.18);
    margin-bottom: var(--spacing-lg);
}

.journal-detail h2 {
    font-size: clamp(26px, 4.6vw, 44px);
    letter-spacing: 0.16em;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.journal-detail p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 16px;
}

.journal-detail p:last-child {
    margin-bottom: 0;
}

.journal-detail .journal-meta {
    display: inline-block;
    margin-bottom: 12px;
}

/* ===== LANGUAGE / RTL SUPPORT ===== */
.lang-toggle {
    background: transparent;
    border: 1px solid currentColor;
    color: inherit;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.lang-toggle:hover {
    background: rgba(255, 255, 255, 0.15);
}

.lang-toggle-label {
    display: inline-block;
    line-height: 1;
}

body.lang-ar {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0;
}

body.lang-ar h1,
body.lang-ar h2,
body.lang-ar h3,
body.lang-ar h4,
body.lang-ar h5 {
    letter-spacing: 0.04em;
}

html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .breadcrumb {
    flex-direction: row-reverse;
}

html[dir="rtl"] .breadcrumb span {
    transform: scaleX(-1);
}

html[dir="rtl"] .nav-links,
html[dir="rtl"] .menu-submenu,
html[dir="rtl"] .submenu-list,
html[dir="rtl"] .menu-bottom-links {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .nav-left,
html[dir="rtl"] .nav-icons-right,
html[dir="rtl"] .nav-icons-left {
    flex-direction: row-reverse;
}

html[dir="rtl"] .menu-submenu .submenu-back-arrow {
    transform: scaleX(-1);
}

html[dir="rtl"] .hero-content,
html[dir="rtl"] .section-header,
html[dir="rtl"] .story-grid,
html[dir="rtl"] .contact-info,
html[dir="rtl"] .journal-article,
html[dir="rtl"] .journal-detail,
html[dir="rtl"] .product-detail-info,
html[dir="rtl"] .filters-section,
html[dir="rtl"] .products-section {
    text-align: right;
}

html[dir="rtl"] .hero-cta,
html[dir="rtl"] .filters-actions {
    justify-content: flex-start;
}

/* Filters Section */
.filters-section {
    padding: clamp(4px, 1.2vw, 10px) 0;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    position: relative;
    z-index: 3;
}

body.collections-page .filters-section {
    position: relative;
    z-index: 1202;
}

@media (min-width: 1024px) {
    body.collections-page .filters-section {
        position: sticky;
        top: calc(var(--nav-height, 96px) + 8px);
    }
}

body.collections-page .filters-section .filters-actions {
    position: relative;
    z-index: 1203;
}

body.collections-page .filters-section .filters-panel,
body.collections-page .filters-section .sort-panel,
body.collections-page .filters-section .filter-group-toggle {
    position: relative;
    z-index: 1204;
}

.collections-page {
    background: #F6F4F1;
}

.collections-page .products-section {
    padding: 8px 0 24px;
}

.collections-page .products-section .container {
    width: 100%;
    max-width: none;
    padding-left: 24px;
    padding-right: 24px;
}

.collections-page .products-grid {
    gap: clamp(20px, 4vw, 36px);
}

.collections-page .page-hero,
.collections-page .filters-section {
    background: #F6F4F1;
}

.collections-page .page-hero {
    padding: 8px 0 10px;
}

@media (min-width: 768px) {
    .collections-page .page-hero {
        padding: 12px 0 14px;
    }
}

.collections-page .sort-dropdown select,
.collections-page .custom-select {
    border: 1px solid rgba(111, 79, 50, 0.2);
    background: rgba(255, 255, 255, 0.92);
    color: rgba(47, 26, 16, 0.72);
    font-weight: 400;
    letter-spacing: 0.16em;
    box-shadow: 0 10px 24px rgba(36, 20, 12, 0.08);
    border-radius: 999px;
    padding: 10px 18px;
}

.collections-page .sort-dropdown select:hover,
.collections-page .custom-select:hover,
.collections-page .sort-dropdown select:focus,
.collections-page .custom-select:focus {
    border-color: transparent;
    box-shadow: none;
    outline: none;
}

.collections-page .page-hero::before {
    display: none;
}

.filters-toggle {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
    border: none;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 6px 0;
    cursor: pointer;
    color: rgba(47, 26, 16, 0.7);
}

.filters-toggle-icon-svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.2;
    fill: none;
    flex-shrink: 0;
    margin-right: 8px;
}

.filters-panel {
    display: grid;
    gap: 24px;
    margin-top: 8px;
    background: transparent;
    padding: 0;
    border: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
    border-radius: 0;
    position: relative;
    z-index: 2;
}

.collections-heading {
    margin-bottom: 14px;
}

.collections-search-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    margin-bottom: 12px;
}

.collections-search-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(47, 26, 16, 0.14);
    border-radius: 999px;
    min-height: 44px;
    box-shadow: 0 10px 26px rgba(36, 20, 12, 0.07);
}

.collections-search-icon {
    position: absolute;
    left: 14px;
    width: 17px;
    height: 17px;
    stroke: rgba(47, 26, 16, 0.56);
    stroke-width: 1.6;
    fill: none;
}

.collections-search-input {
    width: 100%;
    border: none;
    background: transparent;
    color: #24140c;
    font-size: 13px;
    padding: 11px 14px 11px 39px;
    letter-spacing: 0.02em;
}

.collections-search-input:focus {
    outline: none;
}

.collections-search-clear {
    border: 1px solid rgba(47, 26, 16, 0.2);
    background: #ffffff;
    color: rgba(47, 26, 16, 0.78);
    border-radius: 999px;
    height: 42px;
    padding: 0 15px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
}

.collections-search-meta {
    grid-column: 1 / -1;
    margin: 0;
    min-height: 15px;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(47, 26, 16, 0.56);
}

@media (max-width: 640px) {
    .search-overlay {
        padding: calc(var(--nav-height, 84px) + 10px) 10px 12px;
    }

    .search-shell {
        width: 100%;
        border-radius: 16px;
        padding: 14px 12px;
    }

    .search-kicker {
        font-size: 10px;
    }

    .search-subtitle {
        font-size: 12px;
    }

    .search-result-thumb {
        width: 54px;
        height: 54px;
    }

    .collections-search-toolbar {
        grid-template-columns: 1fr;
    }

    .collections-search-clear {
        justify-self: start;
        height: 38px;
        padding: 0 13px;
    }
}

.collections-title {
    font-size: clamp(22px, 3.2vw, 28px);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #24140c;
    font-weight: 400;
    margin: 0;
}

.filters-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(111, 79, 50, 0.2);
    border-bottom: 1px solid rgba(111, 79, 50, 0.2);
    padding: 12px 0;
    position: relative;
    z-index: 2;
    background: transparent;
    border-radius: 0;
}

.sort-toggle {
    background: transparent;
    border: none;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 6px 0;
    cursor: pointer;
    color: rgba(47, 26, 16, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.sort-toggle-icon-svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.2;
    fill: none;
    flex-shrink: 0;
    margin-right: 8px;
}

.sort-panel {
    display: grid;
    gap: 10px;
    margin-top: 12px;
    background: transparent;
    padding: 0;
    border: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
    border-radius: 0;
}

.filters-panel.is-expanded {
    border: 1px solid rgba(111, 79, 50, 0.16);
    margin-top: 8px;
    padding: 20px 20px 16px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 24px 70px rgba(36, 20, 12, 0.16);
}

.sort-panel.is-expanded {
    opacity: 1;
    transform: translateY(0);
}

.sort-panel.is-collapsed {
    max-height: 0;
}

.filter-sort {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-sort-label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(47, 26, 16, 0.65);
}

.filter-sort-select {
    border: 1px solid rgba(111, 79, 50, 0.2);
    background: rgba(255, 255, 255, 0.92);
    padding: 11px 18px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.filters-panel.is-collapsed {
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
}

.filters-panel.is-expanded {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.filters-panel.is-expanded {
    max-height: 70vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.filter-label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.filter-group h3 {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.filter-options {
    display: grid;
    gap: 10px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: max-height 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.filter-group-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    border: none;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 12px 0;
    cursor: pointer;
    color: rgba(47, 26, 16, 0.7);
    position: relative;
    z-index: 2;
}

.filter-group-icon {
    font-size: 18px;
    color: rgba(111, 79, 50, 0.75);
}

.filter-options.is-collapsed {
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
}

.filter-options.is-expanded {
    opacity: 1;
    transform: translateY(0);
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(47, 26, 16, 0.7);
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(111, 79, 50, 0.12);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.filter-option input {
    width: 14px;
    height: 14px;
    accent-color: #2f1a10;
}

.filter-option:hover {
    border-color: rgba(111, 79, 50, 0.35);
    box-shadow: 0 10px 24px rgba(36, 20, 12, 0.08);
}

.sort-dropdown {
    display: flex;
    justify-content: flex-end;
}

.sort-dropdown select,
.custom-select {
    padding: clamp(9px, 1.5vw, 12px) clamp(12px, 2vw, 16px);
    font-size: clamp(11px, 1.8vw, 13px);
    border: 1px solid rgba(201, 165, 93, 0.3);
    background: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    font-weight: 500;
}

@media (max-width: 640px) {
    .sort-dropdown {
        justify-content: flex-start;
        margin-top: 6px;
    }

    .sort-dropdown select,
    .custom-select {
        width: 100%;
    }
}

.sort-dropdown select:hover,
.custom-select:hover {
    border-color: var(--gold);
    box-shadow: 0 2px 8px rgba(201, 165, 93, 0.15);
}

.sort-dropdown select:focus,
.custom-select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 165, 93, 0.1);
}

/* Products Grid */
.products-section {
    padding: clamp(40px, 6vw, 60px) 0;
    background: transparent;
}

.home-full-collection {
    background: #ffffff;
}

.home-full-collection .section-header {
    margin-bottom: clamp(10px, 2vw, 18px);
}

.home-full-collection .products-grid {
    margin-top: clamp(10px, 2vw, 18px);
}

.home-full-collection .section-description {
    margin-bottom: 0;
}

.home-full-collection-status {
    grid-column: 1 / -1;
    text-align: center;
    color: rgba(17, 17, 17, 0.58);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 18px 0;
}

.home-featured-product {
    padding: var(--spacing-xl) 0;
    background: #f3eee8;
}

@media (min-width: 768px) {
    .home-featured-product {
        padding: var(--spacing-2xl) 0;
    }
}

.home-featured-product .products-grid {
    margin-top: var(--spacing-xl);
}

.featured-indicator {
    display: none;
}

@media (max-width: 767px) {
    .home-featured-grid {
        display: flex !important;
        overflow-x: auto;
        padding: 4px 6vw 10px;
        gap: clamp(14px, 4vw, 22px);
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin-top: var(--spacing-lg);
    }

    .home-featured-grid::-webkit-scrollbar {
        display: none;
    }

    .home-featured-grid .product-card {
        flex: 0 0 90vw;
        max-width: 90vw;
        scroll-snap-align: start;
    }

    .featured-indicator {
        margin: 10px auto 0;
        width: min(280px, 76vw);
        display: flex;
        gap: 8px;
        align-items: center;
        justify-content: center;
    }

    .featured-indicator-dot {
        flex: 1;
        height: 2px;
        background: rgba(0, 0, 0, 0.2);
        transition: background 220ms ease, transform 220ms ease;
        transform-origin: center;
    }

    .featured-indicator-dot.is-active {
        background: #111111;
        transform: scaleY(1.6);
    }
}

@media (min-width: 768px) {
    .featured-indicator {
        display: none !important;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 3vw, 24px);
}

.collections-empty-state {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(47, 26, 16, 0.14);
    border-radius: 18px;
    box-shadow: 0 20px 44px rgba(36, 20, 12, 0.08);
    padding: clamp(28px, 5vw, 48px);
    text-align: center;
}

.collections-empty-state h3 {
    margin: 0 0 8px;
    font-size: clamp(18px, 2.8vw, 24px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #24140c;
}

.collections-empty-state p {
    margin: 0;
    font-size: 13px;
    color: rgba(47, 26, 16, 0.66);
    letter-spacing: 0.03em;
}

.single-product-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 640px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: clamp(18px, 3.5vw, 28px);
    }

    .single-product-grid {
        grid-template-columns: minmax(0, 1fr);
        max-width: 720px;
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: clamp(20px, 4vw, 32px);
    }
}

.product-card {
    background: transparent;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: none;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: none;
    transition: border-color 0.4s ease;
    pointer-events: none;
    z-index: 10;
}

.product-card:hover::before {
    border-color: transparent;
}

.product-card:hover {
    box-shadow: none;
    transform: none;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card-empty {
    min-height: clamp(810px, 135vw, 1170px);
    background: #DDDDDE;
}

.collections-page .product-card-empty {
    background: transparent;
}

.product-card-empty .product-link {
    height: 100%;
}

.product-image-wrapper {
    position: relative;
    aspect-ratio: 3/5;
    overflow: hidden;
    background: transparent;
    padding: 0;
    box-sizing: border-box;
    border-radius: 14px;
}

.product-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.15) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.collections-page .product-image-wrapper::after {
    display: none;
}

.product-card:hover .product-image-wrapper::after {
    opacity: 0;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    border-radius: inherit;
}

.product-card:active .product-image {
    transform: none;
}

@media (min-width: 1024px) {
    .product-card:hover .product-image {
        transform: none;
    }
}



.product-ribbon {
    display: none;
}

.product-card:hover .product-ribbon {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transform: rotate(45deg) translateY(-2px);
}

@media (min-width: 768px) {
    .product-ribbon {
        top: 12px;
        right: -32px;
        padding: 8px 48px;
        font-size: 11px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
    }

    .product-card:hover .product-ribbon {
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    }
}

.product-info {
    padding: clamp(14px, 3vw, 18px) 0;
    text-align: left;
    background: transparent;
    position: relative;
    border-top: none;
    box-sizing: border-box;
}

.product-info::before {
    content: none;
}

.product-name {
    font-family: inherit;
    font-size: 16px;
    color: #000000;
    margin-bottom: clamp(6px, 1vw, 10px);
    transition: none;
    letter-spacing: 0.02em;
    font-weight: 400;
    line-height: 1.3;
}

@media (max-width: 640px) {
    .collections-page .product-name {
        font-size: 15px;
    }
}

.product-category {
    font-size: 12px;
    color: rgba(17, 17, 17, 0.72);
    text-transform: none;
    letter-spacing: 0.02em;
    font-weight: 400;
    margin-bottom: clamp(8px, 1.5vw, 12px);
    transition: none;
}

.collections-page .product-category {
    display: none;
}

.collections-page .product-info {
    text-align: center;
    padding: 16px 0 10px;
}

.collections-page .product-price {
    color: rgba(17, 17, 17, 0.48);
    font-size: 13px;
    font-weight: 400;
}

.collections-page .product-card:hover .product-price {
    color: rgba(17, 17, 17, 0.48);
}

.product-category::first-letter {
    text-transform: uppercase;
}

.product-price {
    font-size: 15px;
    color: #111111;
    font-weight: 400;
    font-family: inherit;
    letter-spacing: 0.02em;
    transition: none;
}

.collections-page .product-category,
.collections-page .product-price {
    color: rgba(17, 17, 17, 0.48);
    font-size: 13px;
    letter-spacing: 0.02em;
}

@media (max-width: 640px) {
    .collections-title {
        font-size: 22px;
        letter-spacing: 0.02em;
    }

    .collections-page .product-name {
        font-size: 14px;
    }

    .collections-page .product-price {
        font-size: 14px;
        color: rgba(17, 17, 17, 0.48);
    }

    .collections-page .product-category {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.72);
    }
}

.product-card:hover .product-price {
    color: var(--gold);
    text-shadow: none;
}

/* Load More */
.load-more-container {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 50%, var(--white) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.03), transparent 70%);
}

.cta-content {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-size: clamp(28px, 5vw, 44px);
    letter-spacing: 0.12em;
}

.cta-description {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

/* Product Detail Page */
.product-detail-section {
    padding: 0;
    background: #fff;
    min-height: auto;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.product-detail-section .container {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

@media (max-width: 767px) {
    .product-detail-section {
        width: auto;
        left: auto;
        right: auto;
        margin-left: auto;
        margin-right: auto;
    }
    
    .product-detail-section .container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
    align-items: stretch;
    background: #fff;
    width: 100%;
}

@media (min-width: 600px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        max-width: 100vw;
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        max-width: 100vw;
        width: 100%;
    }
}

@media (min-width: 1440px) {
    .product-detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
        max-width: 100vw;
        width: 100%;
    }
}

.product-images {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
    min-height: auto;
    background: #fff;
}

.product-images {
    padding-top: 0;
}

@media (min-width: 600px) {
    .product-images {
        min-height: 55vh;
    }
}

@media (min-width: 768px) {
    .product-images {
        min-height: 100vh;
        position: sticky;
        top: 0;
        background: var(--cream);
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .product-images {
        width: 100%;
    }
}

@media (min-width: 1024px) {
    .product-images {
        min-height: auto;
        position: static;
        top: auto;
    }
}

.product-detail-info {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 28px 16px;
    min-height: auto;
    justify-content: center;
    background: #fff;
}

@media (min-width: 480px) {
    .product-detail-info {
        padding: 32px 20px;
        min-height: auto;
    }
}

@media (min-width: 600px) {
    .product-detail-info {
        padding: 36px 24px;
    }
}

@media (min-width: 768px) {
    .product-detail-info {
        padding: 48px 40px;
        min-height: auto;
        justify-content: flex-start;
        padding-top: 60px;
        width: 100%;
        overflow-x: hidden;
    }
}

@media (min-width: 1024px) {
    .product-detail-info {
        padding: 56px 48px;
        min-height: auto;
        justify-content: flex-start;
        max-width: 100%;
        position: sticky;
        top: var(--nav-height, 96px);
        align-self: start;
    }
}

@media (min-width: 1440px) {
    .product-detail-info {
        padding: 64px 56px;
        min-height: auto;
        max-width: 100%;
    }
}

@media (min-width: 1920px) {
    .product-detail-info {
        padding: 72px 64px;
        min-height: auto;
        max-width: 100%;
    }
}

@media (min-width: 1024px) {
    .product-detail-grid {
        align-items: start;
        column-gap: clamp(28px, 4vw, 56px);
    }

    .product-detail-info {
        min-height: auto;
        max-height: none;
        overflow-y: visible;
    }
}

.main-image-container {
    position: relative;
    aspect-ratio: auto;
    width: 100%;
    height: auto;
    min-height: 45vh;
    overflow: hidden;
    background: #fff;
    margin-bottom: 0;
    box-shadow: none;
    border-radius: 0;
    touch-action: pan-y;
}

@media (min-width: 375px) {
    .main-image-container {
        min-height: 48vh;
    }
}

@media (min-width: 480px) {
    .main-image-container {
        min-height: 52vh;
    }
}

@media (min-width: 600px) {
    .main-image-container {
        min-height: 56vh;
    }
}

@media (min-width: 768px) {
    .main-image-container {
        width: 100%;
        height: 100vh;
        min-height: 100vh;
    }
}

@media (max-width: 767px) {
    .product-images,
    .main-image-container {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .main-image-container {
        height: auto;
        min-height: 70vh;
    }
}

@media (max-width: 767px) {
    body.product-page .product-detail-section .container {
        width: 100%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }

    body.product-page .product-images {
        width: 100vw;
        margin-left: 50%;
        transform: translateX(-50%);
        padding-top: 0;
    }

    body.product-page .main-image-container {
        width: 100vw;
        height: 100vh;
        min-height: 100vh;
    }
}

@media (max-width: 767px) {
    .product-detail-section {
        overflow-x: hidden;
    }
}

@media (max-width: 767px) {
    .product-detail-info {
        width: 100%;
        box-sizing: border-box;
    }

    .product-detail-info .btn,
    .product-detail-info .btn-full {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}

@media (min-width: 1024px) {
    .main-image-container {
        height: 100vh;
        min-height: 100vh;
    }
}

@media (min-width: 1440px) {
    .main-image-container {
        height: 100vh;
        min-height: 100vh;
    }
}

@media (min-width: 1920px) {
    .main-image-container {
        height: 100vh;
        min-height: 100vh;
    }
}

.main-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s ease;
    will-change: transform, opacity;
    display: block;
}

.main-image-container:hover .main-product-image {
    transform: none;
}

.main-product-image.zoomed {
    transform: scale(1.32);
    cursor: zoom-out;
}

.main-product-image.is-exiting {
    opacity: 0;
    transform: translateX(var(--image-exit, -24px)) scale(0.995);
}

.main-product-image.is-entering {
    opacity: 0;
    transform: translateX(var(--image-enter, 24px)) scale(1.005);
}

.gallery-indicator {
    position: absolute;
    left: 50%;
    bottom: clamp(18px, 3vh, 28px);
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 2;
    pointer-events: auto;
}

.gallery-indicator-item {
    width: 20px;
    height: 1px;
    border-radius: 2px;
    background: rgba(245, 234, 219, 0.35);
    opacity: 0.6;
    transition: width 0.9s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.9s ease, background 0.9s ease;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
    cursor: pointer;
}

.gallery-indicator-item.active {
    width: 40px;
    background: rgba(245, 234, 219, 0.92);
    opacity: 0.95;
}

.image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
}

body.product-page .image-nav {
    background: transparent !important;
}

body.product-page .image-nav svg {
    stroke: #000000 !important;
}

.image-prev {
    left: 22px;
}

.image-next {
    right: 22px;
}

.image-nav:hover {
    background: #F8F8F8;
    transform: translateY(-50%);
    box-shadow: none;
}

.image-nav svg {
    stroke: #1A1A1A;
    transition: stroke 0.3s ease;
    stroke-width: 1.6;
}

.image-nav:hover svg {
    stroke: #1A1A1A;
}

.thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
    gap: 8px;
    padding: 0;
}

@media (min-width: 375px) {
    .thumbnail-gallery {
        grid-template-columns: repeat(auto-fit, minmax(65px, 1fr));
        gap: 9px;
    }
}

@media (min-width: 480px) {
    .thumbnail-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        padding: 16px;
    }
}

@media (min-width: 600px) {
    .thumbnail-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
        padding: 20px;
    }
}

@media (min-width: 768px) {
    .thumbnail-gallery {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
        padding: 24px;
        max-width: none;
    }
}

@media (min-width: 1024px) {
    .thumbnail-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
        padding: 32px;
    }
}

@media (min-width: 1440px) {
    .thumbnail-gallery {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
        padding: 40px;
    }
}

.thumbnail {
    aspect-ratio: 3/4;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: block;
    width: 100%;
    border-radius: 0;
}

.product-image-stack {
    display: none;
    width: 100%;
}

.stacked-product-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

@media (min-width: 1024px) {
    body.product-stack-ready .product-image-stack {
        display: block;
    }

    body.product-stack-ready .stacked-product-image {
        height: 100vh;
    }
}

.thumbnail.active,
.thumbnail:hover {
    opacity: 1;
    border-color: var(--brown);
    box-shadow: 0 8px 28px rgba(107, 84, 67, 0.3);
    transform: scale(1.02);
}

body.product-page .thumbnail:hover {
    opacity: 0.6;
    border-color: transparent;
    box-shadow: none;
    transform: none;
}

.product-badge-detail {
    display: inline-block;
    background: transparent;
    color: var(--brown);
    padding: 0;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 16px;
    box-shadow: none;
    border-radius: 0;
    align-self: flex-start;
    position: relative;
}

@media (min-width: 375px) {
    .product-badge-detail {
        font-size: 9px;
        margin-bottom: 18px;
    }
}

@media (min-width: 480px) {
    .product-badge-detail {
        font-size: 10px;
        margin-bottom: 22px;
    }
}

@media (min-width: 600px) {
    .product-badge-detail {
        font-size: 10px;
        margin-bottom: 24px;
    }
}

@media (min-width: 768px) {
    .product-badge-detail {
        font-size: 11px;
        margin-bottom: 28px;
    }
}

@media (min-width: 1024px) {
    .product-badge-detail {
        font-size: 11px;
        margin-bottom: 32px;
    }
}

.product-badge-detail::before {
    content: '';
    display: none;
}

.product-title {
    font-size: clamp(24px, 5.2vw, 42px);
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
    line-height: 1.0;
    font-weight: 400;
    font-family: 'Cormorant Garamond', serif;
}

@media (min-width: 375px) {
    .product-title {
        font-size: clamp(26px, 5.6vw, 44px);
        margin-bottom: 14px;
    }
}

@media (min-width: 480px) {
    .product-title { 
        font-size: clamp(28px, 5.9vw, 46px);
        margin-bottom: 16px;
    }
}

@media (min-width: 600px) {
    .product-title { 
        font-size: clamp(30px, 6vw, 48px);
        margin-bottom: 18px;
    }
}

@media (min-width: 768px) {
    .product-title { 
        font-size: clamp(32px, 5.5vw, 50px);
        margin-bottom: 20px;
    }
}

@media (min-width: 1024px) {
    .product-title { 
        font-size: clamp(34px, 5.2vw, 52px);
        margin-bottom: 24px;
    }
}

@media (min-width: 1440px) {
    .product-title { 
        font-size: clamp(36px, 5vw, 56px);
        margin-bottom: 28px;
    }
}

.product-subtitle {
    font-size: 9px;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 0.4em;
    margin-bottom: 20px;
    font-weight: 500;
}

@media (min-width: 375px) {
    .product-subtitle {
        font-size: 9px;
        margin-bottom: 22px;
    }
}

@media (min-width: 480px) {
    .product-subtitle {
        font-size: 10px;
        margin-bottom: 24px;
    }
}

@media (min-width: 600px) {
    .product-subtitle {
        font-size: 11px;
        margin-bottom: 28px;
    }
}

@media (min-width: 768px) {
    .product-subtitle {
        font-size: 12px;
        margin-bottom: 32px;
    }
}

@media (min-width: 1024px) {
    .product-subtitle {
        font-size: 13px;
        margin-bottom: 36px;
    }
}

.product-price-detail {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 28px;
    padding: 0;
    background: transparent;
    border-left: none;
    border-radius: 0;
    position: relative;
    align-items: center;
}

@media (min-width: 480px) {
    .product-price-detail {
        gap: 14px;
        margin-bottom: 32px;
    }
}

@media (min-width: 600px) {
    .product-price-detail {
        gap: 14px;
        margin-bottom: 36px;
    }
}

@media (min-width: 768px) {
    .product-price-detail {
        gap: 16px;
        margin-bottom: 40px;
    }
}

@media (min-width: 1024px) {
    .product-price-detail {
        gap: 16px;
        margin-bottom: 48px;
    }
}

.product-price-detail::before {
    content: '';
    display: none;
}

.price-label {
    font-size: 8px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.35em;
    font-weight: 500;
}

@media (min-width: 480px) {
    .price-label {
        font-size: 9px;
    }
}

@media (min-width: 768px) {
    .price-label {
        font-size: 9px;
    }
}

@media (min-width: 1024px) {
    .price-label {
        font-size: 10px;
    }
}

.price-currency {
    font-size: clamp(22px, 4.6vw, 34px);
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 400;
    font-family: 'Cormorant Garamond', serif;
    white-space: nowrap;
    line-height: 1;
}

@media (min-width: 480px) {
    .price-currency {
        font-size: clamp(24px, 4.8vw, 36px);
        white-space: nowrap;
    }
}

@media (min-width: 600px) {
    .price-currency {
        font-size: clamp(26px, 4.6vw, 38px);
        white-space: nowrap;
    }
}

@media (min-width: 768px) {
    .price-currency {
        font-size: clamp(28px, 4.4vw, 40px);
        white-space: nowrap;
    }
}

@media (min-width: 1024px) {
    .price-currency {
        font-size: clamp(30px, 4.2vw, 42px);
        white-space: nowrap;
    }
}

.price-amount {
    font-size: clamp(22px, 4.6vw, 34px);
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: 0.02em;
    font-family: 'Cormorant Garamond', serif;
    white-space: nowrap;
    line-height: 1;
}

@media (min-width: 480px) {
    .price-amount {
        font-size: clamp(24px, 4.8vw, 36px);
        white-space: nowrap;
    }
}

@media (min-width: 600px) {
    .price-amount {
        font-size: clamp(26px, 4.6vw, 38px);
        white-space: nowrap;
    }
}

@media (min-width: 768px) {
    .price-amount {
        font-size: clamp(28px, 4.4vw, 40px);
        white-space: nowrap;
    }
}

@media (min-width: 1024px) {
    .price-amount {
        font-size: clamp(30px, 4.2vw, 42px);
        white-space: nowrap;
    }
}

.product-description {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(31, 29, 27, 0.1);
}

@media (min-width: 480px) {
    .product-description {
        margin-bottom: 28px;
        padding-bottom: 28px;
    }
}

@media (min-width: 600px) {
    .product-description {
        margin-bottom: 32px;
        padding-bottom: 32px;
    }
}

@media (min-width: 768px) {
    .product-description {
        margin-bottom: 36px;
        padding-bottom: 36px;
    }
}

@media (min-width: 1024px) {
    .product-description {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
}

.product-description p {
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.8;
    font-size: 12px;
    letter-spacing: 0.25px;
}

@media (min-width: 480px) {
    .product-description p {
        font-size: 13px;
        margin-bottom: 11px;
    }
}

@media (min-width: 600px) {
    .product-description p {
        font-size: 13px;
        margin-bottom: 12px;
        line-height: 1.85;
    }
}

@media (min-width: 768px) {
    .product-description p {
        font-size: 13px;
        margin-bottom: 12px;
        line-height: 1.9;
    }
}

@media (min-width: 1024px) {
    .product-description p {
        font-size: 14px;
        margin-bottom: 14px;
        line-height: 1.95;
    }
}

.product-features {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

@media (min-width: 480px) {
    .product-features {
        gap: 11px;
        margin-bottom: 28px;
    }
}

@media (min-width: 600px) {
    .product-features {
        gap: 12px;
        margin-bottom: 32px;
    }
}

@media (min-width: 768px) {
    .product-features {
        gap: 14px;
        margin-bottom: 36px;
    }
}

@media (min-width: 1024px) {
    .product-features {
        gap: 16px;
        margin-bottom: 40px;
    }
}

.product-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-dark);
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0.2px;
}

@media (min-width: 480px) {
    .product-features li {
        padding: 9px 0;
        padding-left: 32px;
        font-size: 13px;
        line-height: 1.7;
    }
}

@media (min-width: 600px) {
    .product-features li {
        padding: 10px 0;
        padding-left: 34px;
        font-size: 13px;
    }
}

@media (min-width: 768px) {
    .product-features li {
        padding: 11px 0;
        padding-left: 36px;
        font-size: 13px;
        line-height: 1.8;
    }
}

@media (min-width: 1024px) {
    .product-features li {
        padding: 12px 0;
        padding-left: 40px;
        font-size: 14px;
        line-height: 1.9;
    }
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: 12px;
    background-repeat: no-repeat;
    background-position: center;
    box-shadow: 0 4px 12px rgba(201, 165, 93, 0.4);
}

.product-features li strong {
    font-weight: 500;
    color: var(--text-dark);
}

.product-atelier-notes {
    margin-top: 24px;
    padding: 18px 20px;
    background: rgba(245, 239, 232, 0.8);
    border: 1px solid rgba(111, 79, 50, 0.18);
    border-radius: 18px;
}

@media (min-width: 768px) {
    .product-atelier-notes {
        margin-top: 28px;
        padding: 22px 24px;
    }
}

.product-atelier-notes h3 {
    font-size: 11px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 8px;
}

.product-atelier-notes p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.8;
}

.product-options {
    margin-bottom: 24px;
}

@media (min-width: 480px) {
    .product-options {
        margin-bottom: 28px;
    }
}

@media (min-width: 600px) {
    .product-options {
        margin-bottom: 32px;
    }
}

@media (min-width: 768px) {
    .product-options {
        margin-bottom: 36px;
    }
}

@media (min-width: 1024px) {
    .product-options {
        margin-bottom: 40px;
    }
}

.option-group {
    margin-bottom: 18px;
}

@media (min-width: 480px) {
    .option-group {
        margin-bottom: 20px;
    }
}

@media (min-width: 600px) {
    .option-group {
        margin-bottom: 24px;
    }
}

@media (min-width: 768px) {
    .option-group {
        margin-bottom: 28px;
    }
}

@media (min-width: 1024px) {
    .option-group {
        margin-bottom: 32px;
    }
}

.option-label {
    display: block;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 500;
}

@media (min-width: 480px) {
    .option-label {
        font-size: 9px;
        margin-bottom: 14px;
    }
}

@media (min-width: 600px) {
    .option-label {
        font-size: 10px;
        margin-bottom: 16px;
    }
}

@media (min-width: 768px) {
    .option-label {
        font-size: 10px;
        margin-bottom: 18px;
    }
}

@media (min-width: 1024px) {
    .option-label {
        font-size: 11px;
        margin-bottom: 20px;
    }
}

.size-selector {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.option-upgrade .option-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border: 1px solid rgba(0, 0, 0, 0.18);
    background: #ffffff;
    color: #111111;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-align: left;
    transition: border-color 0.15s ease;
}

.option-upgrade .option-toggle.selected {
    border-color: #111111;
}

.option-upgrade .option-toggle-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.option-upgrade .option-toggle-price {
    color: rgba(0, 0, 0, 0.7);
    font-size: 12px;
}

@media (min-width: 480px) {
    .size-selector {
        gap: 11px;
        margin-bottom: 16px;
    }
}

@media (min-width: 600px) {
    .size-selector {
        gap: 12px;
        margin-bottom: 18px;
    }
}

@media (min-width: 768px) {
    .size-selector {
        gap: 13px;
        margin-bottom: 18px;
    }
}

@media (min-width: 1024px) {
    .size-selector {
        gap: 14px;
        margin-bottom: 20px;
    }
}

.size-btn {
    padding: 14px 28px;
    font-size: 10px;
    background: var(--white);
    border: 2px solid rgba(107, 84, 67, 0.3);
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Montserrat', sans-serif;
    position: relative;
    letter-spacing: 0.08em;
    font-weight: 500;
    border-radius: 6px;
}

@media (min-width: 480px) {
    .size-btn {
        padding: 13px 24px;
        font-size: 10px;
    }
}

@media (min-width: 600px) {
    .size-btn {
        padding: 14px 26px;
        font-size: 11px;
    }
}

@media (min-width: 768px) {
    .size-btn {
        padding: 15px 28px;
        font-size: 11px;
    }
}

.size-alert {
    text-align: center;
    color: #c73a3a;
    font-size: 12px;
    margin: 6px 0 12px;
}

@media (min-width: 1024px) {
    .size-btn {
        padding: 14px 28px;
        font-size: 12px;
    }
}

.size-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--brown);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0;
    z-index: -1;
}

.size-btn.selected,
.size-btn:hover {
    border-color: var(--brown);
    color: var(--cream);
    box-shadow: 0 8px 28px rgba(107, 84, 67, 0.4);
    transform: translateY(-3px);
}

.size-btn.selected {
    background: var(--brown);
    border-color: var(--brown);
    color: var(--cream);
    box-shadow: 0 8px 28px rgba(107, 84, 67, 0.5), inset 0 0 0 1px rgba(201, 165, 93, 0.15);
}

.inventory-status {
    margin-top: 18px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    animation: slideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.inventory-status.in-stock {
    background: rgba(107, 84, 67, 0.06);
    border: 1px solid rgba(107, 84, 67, 0.18);
    color: #5f4c42;
}

.inventory-status.low-stock {
    background: transparent;
    border: none;
    color: #7a6244;
    letter-spacing: 0.02em;
}

.inventory-status.out-of-stock {
    background: rgba(42, 31, 24, 0.06);
    border: 1px solid rgba(42, 31, 24, 0.18);
    color: #3a2d25;
}

.inventory-status span {
    font-weight: 600;
    display: inline-block;
    margin-right: 6px;
}

.inventory-status .in-stock {
    color: inherit;
}

.inventory-status .low-stock {
    color: inherit;
}

.inventory-status .out-of-stock {
    color: inherit;
}

.size-guide-link {
    font-size: 10px;
    color: var(--text-dark);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 500;
}

@media (min-width: 768px) {
    .size-guide-link {
        font-size: 11px;
        margin-top: 14px;
    }
}

.size-guide-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.size-guide-link:hover {
    color: var(--brown-dark);
}

.size-guide-link:hover::after {
    transform: scaleX(1);
}

.product-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
    margin-top: 16px;
}

@media (min-width: 375px) {
    .product-actions {
        gap: 13px;
        margin-bottom: 18px;
        margin-top: 18px;
    }
}

@media (min-width: 480px) {
    .product-actions {
        gap: 14px;
        margin-bottom: 20px;
        margin-top: 20px;
    }
}

@media (min-width: 600px) {
    .product-actions {
        gap: 15px;
        margin-bottom: 24px;
        margin-top: 24px;
    }
}

@media (min-width: 768px) {
    .product-actions {
        flex-direction: row;
        gap: 16px;
        margin-bottom: 28px;
        margin-top: 28px;
    }
}

@media (min-width: 1024px) {
    .product-actions {
        gap: 18px;
        margin-bottom: 36px;
        margin-top: 36px;
    }
}

@media (min-width: 1440px) {
    .product-actions {
        gap: 20px;
        margin-bottom: 40px;
        margin-top: 40px;
    }
}

/* Related Products */
.related-products {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
}

/* Testimonials */
.testimonials-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.03), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-container {
    position: relative;
    z-index: 1;
}

.testimonials-title {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xl);
    font-size: clamp(28px, 5vw, 44px);
    letter-spacing: var(--ls-wide);
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.testimonials-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    flex: 0 0 100%;
    min-width: 100%;
    padding: var(--spacing-xl) var(--spacing-lg);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
    .testimonial-card {
        padding: var(--spacing-2xl) var(--spacing-xl);
    }
}

.testimonial-quote {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    font-style: italic;
    letter-spacing: 0.02em;
    position: relative;
}

.testimonial-quote::before,
.testimonial-quote::after {
    content: '"';
    font-size: clamp(36px, 8vw, 56px);
    color: var(--gray-400);
    opacity: 0.5;
    position: absolute;
    font-family: 'Georgia', serif;
}

.testimonial-quote::before {
    top: 0;
    left: -20px;
}

.testimonial-quote::after {
    bottom: -30px;
    right: -20px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.author-image {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gray-400);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-name {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.author-title {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: var(--spacing-lg);
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--gray-600);
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
}

.section-title {
    text-align: center;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xl);
    font-size: clamp(28px, 5vw, 40px);
    letter-spacing: 0.12em;
}

/* Cart Page */
.cart-section {
    padding: clamp(40px, 6vh, 80px) 0;
    min-height: 60vh;
    background: radial-gradient(circle at 20% 0%, rgba(255, 248, 238, 0.95), rgba(243, 233, 220, 0.92));
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.cart-section .page-title {
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.22em;
}

.cart-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(26px, 4.5vh, 44px);
    margin-top: clamp(30px, 4vh, 50px);
}

@media (min-width: 1024px) {
    .cart-content {
        grid-template-columns: 1.8fr 1fr;
    }
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: minmax(0, 120px) minmax(0, 1fr);
    gap: clamp(18px, 3vw, 28px);
    padding: 18px 16px;
    background: rgba(255, 253, 250, 0.9);
    border: 1px solid rgba(111, 79, 50, 0.12);
    border-radius: 16px;
    transition: none;
    box-shadow: 0 20px 50px rgba(36, 20, 12, 0.08);
    position: relative;
    min-width: 0;
}

.cart-item-close {
    position: absolute;
    top: 8px;
    right: 8px;
    border: none;
    background: transparent;
    color: rgba(47, 26, 16, 0.55);
    font-size: 16px;
    line-height: 1;
    padding: 0;
    cursor: pointer;
}

.cart-item::before {
    content: none;
}

.cart-item:hover {
    box-shadow: none;
    border-color: rgba(111, 79, 50, 0.12);
    transform: none;
    background: rgba(255, 253, 250, 0.9);
}

.cart-item:hover::before {
    opacity: 0;
}

.cart-item + .cart-item {
    margin-top: 0;
}

@media (min-width: 768px) {
    .cart-item {
        grid-template-columns: 180px 1fr;
        align-items: center;
        padding: 22px 20px;
    }
}

.cart-item-image {
    overflow: hidden;
    border-radius: 12px;
    border: none;
}

.cart-item-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    box-shadow: none;
    transition: none;
}

.cart-item + .cart-item .cart-item-image img {
    height: 140px;
}

.cart-item-placeholder {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
}

.cart-item:hover .cart-item-image img {
    transform: none;
}

@media (min-width: 768px) {
    .cart-item-image img {
        height: 200px;
    }

    .cart-item-placeholder {
        height: 200px;
    }
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
    align-items: flex-start;
    height: 100%;
}

.cart-item-name {
    font-family: inherit;
    font-size: clamp(18px, 3.2vw, 24px);
    font-weight: 400;
    color: #24140c;
    letter-spacing: 0;
    line-height: 1.35;
    word-break: break-word;
    margin-bottom: 2px;
    width: 100%;
}

.cart-item-meta {
    font-size: clamp(11px, 1.7vw, 12px);
    color: rgba(47, 26, 16, 0.6);
    letter-spacing: 0;
    text-transform: none;
    width: 100%;
    text-align: left;
}

.cart-item-meta-row {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
}

.cart-item-meta-row:first-of-type {
    margin-top: auto;
}

.cart-item-price-line {
    margin: 10px 0 6px;
    color: rgba(47, 26, 16, 0.55);
    font-size: 12px;
    font-weight: 300;
}

.cart-item-size-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    font-size: 12px;
    color: #24140c;
}

.cart-item-remove-size {
    border: none;
    background: transparent;
    color: rgba(47, 26, 16, 0.55);
    font-size: 14px;
    line-height: 1;
    padding: 0;
    cursor: pointer;
}


.cart-item-price {
    font-size: clamp(18px, 3.2vw, 24px);
    color: #24140c;
    font-weight: 400;
    font-family: inherit;
    letter-spacing: 0;
    min-width: 0;
}

.cart-item-remove {
    align-self: flex-start;
    padding: 0;
    border: none;
    background: none;
    color: rgba(47, 26, 16, 0.7);
    text-decoration: none;
    text-underline-offset: 4px;
    text-transform: none;
    letter-spacing: 0.16em;
    font-size: 12px;
    cursor: pointer;
}

@media (max-width: 767px) {
    .cart-section {
        overflow-x: hidden;
    }

    .cart-content {
        margin-top: 18px;
        gap: 24px;
    }
}

.cart-item-actions {
    display: none;
}

@media (min-width: 768px) {
    .cart-item-actions {
        display: flex;
        flex-direction: column;
        gap: 16px;
        align-items: center;
        justify-self: end;
    }
}

.cart-item-actions-mobile {
    display: none;
}

@media (min-width: 768px) {
    .cart-item-actions-mobile {
        display: none;
    }
}

.quantity-selector {
    display: none;
}

.qty-btn {
    background: none;
    border: none;
    font-size: 17px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 10px 16px;
    transition: all 0.2s ease;
    flex: 1;
    min-width: 40px;
}

.qty-btn:hover {
    background: rgba(111, 90, 70, 0.08);
}

.qty-value {
    font-size: 14px;
    min-width: 44px;
    text-align: center;
    font-weight: 500;
    border-left: 1px solid rgba(111, 90, 70, 0.12);
    border-right: 1px solid rgba(111, 90, 70, 0.12);
    padding: 10px 0;
}

.remove-btn {
    background: none;
    border: 1px solid rgba(111, 79, 50, 0.24);
    color: rgba(47, 26, 16, 0.7);
    cursor: pointer;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px 12px;
    border-radius: 999px;
    width: 100%;
    text-align: center;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

@media (max-width: 767px) {
    .cart-item-meta {
        font-size: 12px;
    }
}

.remove-btn:hover {
    color: #2f1a10;
    border-color: rgba(47, 26, 16, 0.5);
    background: rgba(47, 26, 16, 0.08);
}

.remove-btn svg {
    stroke: currentColor;
    transition: stroke 0.3s ease;
    width: 18px;
    height: 18px;
}

/* Cart Summary */
.cart-summary {
    background: linear-gradient(160deg, rgba(255, 250, 243, 0.95), rgba(244, 233, 219, 0.92));
    padding: clamp(28px, 4.5vh, 52px) clamp(20px, 3vw, 32px);
    position: sticky;
    top: 100px;
    border: 1px solid rgba(111, 79, 50, 0.16);
    box-shadow: 0 24px 60px rgba(36, 20, 12, 0.12);
    border-radius: 18px;
    backdrop-filter: none;
}

.summary-title {
    font-size: clamp(22px, 3.5vw, 28px);
    color: #24140c;
    margin-bottom: clamp(20px, 3vh, 32px);
    letter-spacing: 0.22em;
    padding-bottom: clamp(18px, 2.5vh, 28px);
    border-bottom: 1px solid rgba(111, 79, 50, 0.22);
    font-weight: 400;
    font-family: inherit;
    text-transform: uppercase;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: clamp(12px, 2vw, 14px);
    color: rgba(47, 26, 16, 0.62);
    letter-spacing: 0;
    width: 100%;
}

.summary-row:not(:last-of-type) {
    border-bottom: none;
}

.summary-row.summary-total {
    font-size: clamp(20px, 3.6vw, 28px);
    font-weight: 400;
    color: #24140c;
    padding: 6px 0 4px;
    font-family: inherit;
    letter-spacing: 0;
    border-top: none;
    text-transform: none;
    font-family: 'Cormorant Garamond', serif;
}

.free-shipping {
    color: #24140c;
    font-weight: 400;
}

.continue-shopping {
    display: block;
    text-align: center;
    margin-top: clamp(16px, 2.5vh, 24px);
    color: rgba(47, 26, 16, 0.7);
    text-decoration: none;
    font-size: clamp(11px, 1.8vw, 13px);
    letter-spacing: 0.22em;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.continue-shopping:hover {
    color: #24140c;
}

.cart-section .btn-primary {
    background: #2f1a10;
    color: #f5eadb;
    border-color: #2f1a10;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 999px;
}

.cart-section .btn-primary:hover {
    transform: none;
    box-shadow: none;
    opacity: 0.92;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
    margin-bottom: 28px;
}

.cart-title {
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: none;
    color: #24140c;
    margin: 0;
}

.cart-item-count {
    font-size: 13px;
    color: rgba(47, 26, 16, 0.5);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.cart-checkout-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    width: 100%;
    border-radius: 999px;
    margin-top: 16px;
}

.cart-checkout-btn .checkout-btn-label,
.cart-checkout-btn .checkout-btn-total {
    font-size: 12px;
    letter-spacing: 0;
    font-weight: 400;
}

.cart-checkout-btn .checkout-btn-total {
    font-weight: 400;
}

/* Empty Cart */
.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(60px, 8vh, 120px) var(--spacing-md);
    text-align: center;
    min-height: 60vh;
}

.empty-cart svg {
    stroke: var(--gray-300);
    opacity: 0.4;
    margin-bottom: clamp(24px, 3.5vh, 40px);
    width: 100px;
    height: 100px;
}

.empty-cart h2 {
    color: var(--text-dark);
    margin-bottom: clamp(12px, 2vh, 20px);
    font-size: clamp(24px, 4vw, 36px);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.empty-cart p {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

.empty-cart-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

@media (min-width: 640px) {
    .empty-cart-actions {
        flex-direction: row;
        gap: 16px;
    }
}

/* Checkout Page */
.checkout-section {
    padding: clamp(48px, 9vh, 96px) 0;
    background: radial-gradient(circle at 20% 0%, rgba(255, 248, 238, 0.95), rgba(243, 233, 220, 0.92));
    color: #24140c;
}

.checkout-flow {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.order-summary-top {
    background: linear-gradient(160deg, rgba(255, 250, 243, 0.95), rgba(244, 233, 219, 0.92));
    padding: 22px 24px;
    border: 1px solid rgba(111, 79, 50, 0.18);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(36, 20, 12, 0.1);
}

.order-summary-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.order-summary-head h2 {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin: 0;
    color: #24140c;
}

.summary-toggle {
    background: transparent;
    border: none;
    color: rgba(47, 26, 16, 0.65);
    font-size: 11px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.checkout-step {
    padding: 18px 0;
    border-top: 1px solid rgba(111, 79, 50, 0.18);
}

.checkout-step:first-of-type {
    border-top: none;
}

.checkout-step.is-hidden {
    display: none;
}

.step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.step-title {
    font-size: 16px;
    color: #24140c;
    margin: 0;
    letter-spacing: 0.08em;
}

.step-toggle {
    width: 26px;
    height: 26px;
    border: 1px solid rgba(111, 79, 50, 0.35);
    border-radius: 50%;
    background: transparent;
    font-size: 16px;
    line-height: 1;
    color: rgba(47, 26, 16, 0.7);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.step-content {
    padding-top: 14px;
}

.checkout-step.is-collapsed .step-content {
    display: none;
}

.checkout-step.is-locked .step-title {
    color: rgba(0, 0, 0, 0.5);
}

.checkout-step.is-locked .step-toggle {
    opacity: 0.4;
    cursor: not-allowed;
}

.step-actions {
    display: grid;
    gap: 12px;
}

.connected-email {
    font-size: 12px;
    color: rgba(47, 26, 16, 0.65);
    margin-bottom: 12px;
}

.field-hint {
    font-size: 11px;
    color: rgba(47, 26, 16, 0.6);
    margin-top: 6px;
}

.field-error {
    color: #b00020;
}

.payment-summary {
    background: linear-gradient(160deg, rgba(255, 250, 243, 0.95), rgba(244, 233, 219, 0.92));
    border: 1px solid rgba(111, 79, 50, 0.18);
    padding: 18px;
    border-radius: 14px;
    margin-bottom: 16px;
}

.payment-summary-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13px;
    color: #24140c;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.payment-method {
    font-size: 13px;
    color: rgba(47, 26, 16, 0.65);
    margin-bottom: 14px;
}

.card-element-wrapper {
    padding: 14px 14px;
    border: 1px solid rgba(111, 79, 50, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.96);
    margin-bottom: 16px;
}

.card-element-wrapper label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(47, 26, 16, 0.6);
    margin-bottom: 8px;
}

.card-element-wrapper input {
    width: 100%;
    border: 1px solid rgba(111, 79, 50, 0.18);
    border-radius: 10px;
    padding: 10px 12px;
    margin-bottom: 12px;
    font-size: 14px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}


#card-element {
    min-height: 22px;
}

#card-errors {
    margin-top: 8px;
}

.payment-methods {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #24140c;
}

.payment-option {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
}

.payment-option input {
    accent-color: #000;
}

.summary-items.collapsed {
    display: none;
}

.summary-items.collapsed + .summary-totals {
    margin-top: 0;
}

.summary-items.collapsed ~ .summary-totals {
    display: none;
}

.summary-preview {
    display: grid;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 13px;
    color: rgba(47, 26, 16, 0.65);
}

.summary-preview-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.summary-preview-total {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 13px;
    color: #24140c;
}

.checkout-steps {
    display: none;
}

@media (min-width: 768px) {
    .checkout-steps {
        display: flex;
        align-items: center;
        gap: 16px;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        margin-bottom: var(--spacing-lg);
    }
}

.step {
    color: var(--text-muted);
    transition: color 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.step.active {
    color: var(--text-dark);
    font-weight: 500;
}

.step.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--text-dark);
}

.step-arrow {
    color: var(--gray-400);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.checkout-form {
    background: linear-gradient(160deg, rgba(255, 250, 243, 0.96), rgba(244, 233, 219, 0.92));
    border: 1px solid rgba(111, 79, 50, 0.18);
    padding: clamp(24px, 5vw, 44px);
    box-shadow: 0 24px 60px rgba(36, 20, 12, 0.12);
    border-radius: 18px;
}

.checkout-form .page-title {
    text-transform: uppercase;
    letter-spacing: 0.22em;
}

.checkout-section .btn {
    border-radius: 999px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
}

.checkout-section .btn-primary {
    background: #2f1a10;
    color: #f5eadb;
    border-color: #2f1a10;
    border-radius: 999px;
    letter-spacing: 0.2em;
    font-weight: 400;
    box-shadow: none;
}

.checkout-section .btn-primary:hover {
    transform: none;
    box-shadow: none;
    opacity: 0.88;
}

.checkout-section .btn-secondary {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(111, 79, 50, 0.5);
    color: #24140c;
    box-shadow: none;
}

.checkout-section .btn-secondary:hover {
    opacity: 0.9;
    transform: none;
}

.static-field {
    padding: 12px 0;
    font-size: 14px;
    color: #24140c;
}

.checkout-step[data-step="delivery"] .btn {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(111, 79, 50, 0.5);
    color: #24140c;
}

.checkout-login-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0 24px;
    border-bottom: 1px solid rgba(111, 79, 50, 0.18);
    margin-bottom: var(--spacing-lg);
}

.checkout-login-cta span {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(47, 26, 16, 0.65);
}

.checkout-login-cta .btn {
    padding: 10px 18px;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}


@media (min-width: 1024px) {
    .checkout-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: var(--spacing-2xl);
    }
}

/* Forms */
.form-section {
    margin-bottom: clamp(40px, 7vh, 56px);
    padding-bottom: 0;
    border-bottom: none;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    font-size: clamp(18px, 3.5vw, 22px);
    color: var(--ot-black-400);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.04em;
    padding-bottom: 0;
    border-bottom: none;
    text-transform: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.form-row.form-row-split {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: none;
    letter-spacing: 0.04em;
    font-size: 12px;
    cursor: pointer;
}

.form-group.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
}

.form-group label {
    display: block;
    font-size: clamp(12px, 2vw, 14px);
    color: rgba(47, 26, 16, 0.7);
    margin-bottom: clamp(10px, 1.8vh, 12px);
    text-transform: none;
    letter-spacing: 0.08em;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: clamp(14px, 2.8vw, 22px) clamp(18px, 3.2vw, 24px);
    font-size: clamp(14px, 2.2vw, 16px);
    border: 1px solid rgba(111, 79, 50, 0.18);
    background: rgba(255, 255, 255, 0.92);
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    color: #24140c;
    min-height: 50px;
    box-sizing: border-box;
    border-radius: 12px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(111, 79, 50, 0.5);
    box-shadow: 0 0 0 3px rgba(111, 79, 50, 0.12);
}

.checkout-country-picker {
    position: relative;
    display: grid;
    gap: 10px;
}

.country-select-hidden {
    display: none !important;
}

.country-search-results {
    display: none;
    max-height: 240px;
    overflow: auto;
    border: 1px solid rgba(111, 79, 50, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 30px rgba(36, 20, 12, 0.1);
}

.country-search-results.open {
    display: grid;
}

.country-search-group-list {
    display: grid;
}

.country-search-item {
    border-bottom: 1px solid rgba(111, 79, 50, 0.1);
    background: transparent;
    text-align: left;
    padding: 10px 12px;
    cursor: pointer;
    color: #24140c;
    font-size: 13px;
}

.country-search-item:last-child {
    border-bottom: 0;
}

.country-search-item:hover,
.country-search-item:focus {
    background: rgba(111, 79, 50, 0.08);
    outline: none;
}

.country-search-item.disabled {
    color: rgba(47, 26, 16, 0.45);
    cursor: not-allowed;
}

.country-search-group {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(111, 79, 50, 0.12);
    background: rgba(111, 79, 50, 0.06);
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(47, 26, 16, 0.6);
}

.country-search-item .country-search-meta {
    display: block;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(47, 26, 16, 0.55);
    margin-top: 2px;
}

.country-search-empty {
    padding: 12px;
    font-size: 12px;
    color: rgba(47, 26, 16, 0.55);
}

.form-note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--spacing-md);
    font-style: italic;
}


/* Payment Methods */
.payment-methods-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.payment-option {
    display: block;
    cursor: pointer;
}

.payment-option input {
    display: none;
}

.payment-option-content {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: clamp(14px, 2.5vw, 20px);
    border: 1px solid rgba(111, 79, 50, 0.2);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.96);
    min-height: 44px;
    box-sizing: border-box;
    border-radius: 12px;
}

.payment-option-content:hover {
    border-color: rgba(111, 79, 50, 0.35);
}

.payment-option input:checked + .payment-option-content {
    border-color: rgba(47, 26, 16, 0.6);
    background: linear-gradient(135deg, rgba(255, 252, 248, 0.98) 0%, rgba(243, 233, 219, 0.92) 100%);
    box-shadow: 0 12px 30px rgba(36, 20, 12, 0.12);
}

.payment-option .payment-icon {
    font-size: 24px;
    color: #24140c;
}

/* Order Summary Sidebar */
.order-summary-sidebar {
    background: linear-gradient(160deg, rgba(255, 250, 243, 0.95), rgba(244, 233, 219, 0.92));
    padding: clamp(18px, 3.5vh, 36px);
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    border: 1px solid rgba(111, 79, 50, 0.18);
    box-shadow: 0 24px 60px rgba(36, 20, 12, 0.12);
    border-radius: 18px;
}

.order-summary-sidebar .summary-title {
    font-size: 16px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #24140c;
    padding-bottom: 0;
    border-bottom: none;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 2.5vh, 18px);
    margin-bottom: clamp(18px, 3vh, 24px);
}

.summary-item {
    display: grid;
    grid-template-columns: 56px 1fr auto;
    gap: 16px;
    align-items: center;
    padding-bottom: 0;
    border-bottom: none;
}

.summary-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.summary-item-image {
    width: 56px;
    height: 72px;
    object-fit: cover;
    border: none;
    border-radius: 8px;
}

.summary-item-details h4 {
    font-size: 13px;
    color: #24140c;
    margin-bottom: 6px;
    font-weight: 400;
    letter-spacing: 0.08em;
}

.summary-item-details p {
    font-size: 10px;
    color: rgba(47, 26, 16, 0.6);
    text-transform: none;
    letter-spacing: 0.08em;
}

.summary-item-price {
    font-size: 13px;
    color: rgba(47, 26, 16, 0.7);
    font-weight: 400;
    text-align: right;
}

.summary-totals {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(111, 79, 50, 0.18);
}

/* Account Page */
.account-section {
    padding: var(--spacing-2xl) 0;
    background: radial-gradient(circle at 20% 0%, rgba(255, 248, 238, 0.95) 0%, rgba(243, 233, 220, 0.92) 60%, rgba(238, 226, 210, 0.88) 100%);
}

.account-section .btn {
    border-radius: 999px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.account-section .btn-primary {
    background: #2f1a10;
    color: #f5eadb;
    border: 1px solid #2f1a10;
    box-shadow: 0 14px 30px rgba(47, 26, 16, 0.24);
}

.account-section .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(91, 74, 60, 0.22);
}

.account-section .btn-secondary {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(111, 79, 50, 0.45);
    color: #24140c;
}

.account-section .btn-secondary:hover {
    background: rgba(233, 216, 194, 0.35);
}

.account-section .btn-link {
    color: rgba(47, 26, 16, 0.7);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.account-section .btn-link::after {
    background: rgba(111, 79, 50, 0.5);
}

.success-banner {
    background: linear-gradient(135deg, rgba(232, 245, 233, 0.9) 0%, rgba(241, 248, 233, 0.9) 100%);
    color: #2e7d32;
    padding: 20px var(--spacing-lg);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: var(--spacing-xl);
    border-left: 2px solid #4caf50;
    box-shadow: 0 12px 30px rgba(46, 125, 50, 0.12);
}

.success-banner svg {
    stroke: #4caf50;
    flex-shrink: 0;
}

.account-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

@media (min-width: 1024px) {
    .account-grid {
        grid-template-columns: 280px 1fr;
        gap: var(--spacing-2xl);
    }
}

.account-sidebar {
    background: linear-gradient(160deg, rgba(255, 250, 243, 0.96) 0%, rgba(244, 233, 219, 0.92) 100%);
    padding: var(--spacing-xl);
    border: 1px solid rgba(111, 79, 50, 0.18);
    box-shadow: 0 20px 54px rgba(36, 20, 12, 0.14);
    border-radius: 18px;
}

.account-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.account-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    text-decoration: none;
    color: #24140c;
    font-size: 12px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.account-nav-item:hover {
    background: rgba(233, 216, 194, 0.35);
    border-left-color: rgba(111, 79, 50, 0.6);
    color: #24140c;
}

.account-nav-item.active {
    background: rgba(233, 216, 194, 0.55);
    border-left-color: rgba(111, 79, 50, 0.9);
    color: #24140c;
    font-weight: 500;
}

.account-nav-item.special {
    margin-top: var(--spacing-lg);
    background: #2f1a10;
    color: #f5eadb;
    border-left: none;
    text-align: center;
    justify-content: center;
    letter-spacing: 0.16em;
}

.account-nav-item.special:hover {
    background: #24140c;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(36, 20, 12, 0.2);
}

.account-nav-item svg {
    stroke: currentColor;
    flex-shrink: 0;
}

.account-tab {
    display: none;
}

.account-tab.active {
    display: block;
}

.tab-title {
    font-size: clamp(28px, 5vw, 36px);
    color: var(--text-dark);
    margin-bottom: var(--spacing-xl);
    letter-spacing: 0.26em;
    position: relative;
    padding-bottom: var(--spacing-md);
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.tab-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(170, 142, 110, 0.9) 0%, rgba(170, 142, 110, 0.35) 100%);
}

/* Orders */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.order-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 241, 234, 0.96) 100%);
    border: 1px solid rgba(170, 142, 110, 0.2);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
    box-shadow: 0 16px 46px rgba(91, 74, 60, 0.12);
}

.order-card:hover {
    border-color: rgba(170, 142, 110, 0.35);
    box-shadow: 0 20px 54px rgba(91, 74, 60, 0.16);
    transform: translateY(-1px);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.order-toggle {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.order-details-panel {
    display: none;
}

.order-card.open .order-details-panel {
    display: block;
}

.order-number {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.order-date {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.order-status {
    padding: 8px 16px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 999px;
    font-weight: 500;
}

.status-processing {
    background: linear-gradient(135deg, #f7ead7 0%, #edd8bf 100%);
    color: #7b5a3b;
    border: 1px solid rgba(170, 142, 110, 0.4);
}

.order-items {
    margin-bottom: var(--spacing-lg);
}

.order-item {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 20px;
}

.order-item img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border: 1px solid rgba(170, 142, 110, 0.3);
    border-radius: 8px;
}

.order-item-info h4 {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.order-item-info p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.order-item-price {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
}

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(170, 142, 110, 0.2);
}

.order-total {
    font-size: 17px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Appointments */
.appointments-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.appointment-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--spacing-lg);
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 241, 234, 0.96) 100%);
    border: 1px solid rgba(170, 142, 110, 0.2);
    padding: var(--spacing-lg);
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 16px 46px rgba(91, 74, 60, 0.12);
}

.appointment-card:hover {
    border-color: rgba(170, 142, 110, 0.35);
    box-shadow: 0 20px 54px rgba(91, 74, 60, 0.16);
    transform: translateY(-1px);
}

@media (max-width: 767px) {
    .appointment-card {
        grid-template-columns: 1fr;
    }
}

.appointment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(248, 241, 233, 0.9) 0%, rgba(236, 224, 210, 0.9) 100%);
    border: 1px solid rgba(170, 142, 110, 0.24);
    border-radius: 14px;
}

.appointment-icon svg {
    stroke: var(--text-dark);
}

.appointment-details h4 {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.appointment-date {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.appointment-location {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.appointment-actions {
    display: flex;
    gap: 14px;
}

@media (max-width: 767px) {
    .appointment-actions {
        justify-content: flex-start;
    }
}

.cta-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 241, 234, 0.96) 100%);
    padding: var(--spacing-xl);
    text-align: center;
    border: 1px solid rgba(170, 142, 110, 0.2);
    box-shadow: 0 18px 54px rgba(91, 74, 60, 0.12);
}

.cta-card h3 {
    color: var(--text-dark);
    margin-bottom: 14px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-family: 'Cormorant Garamond', serif;
}

.cta-card p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
}

/* Profile Form */
.profile-form {
    max-width: 600px;
}

.profile-form input,
.profile-form select {
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(170, 142, 110, 0.22);
    padding: var(--spacing-md) var(--spacing-md);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.profile-form input:focus,
.profile-form select:focus {
    outline: none;
    border-color: rgba(170, 142, 110, 0.7);
    box-shadow: 0 0 0 3px rgba(170, 142, 110, 0.16);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.form-actions {
    display: flex;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.form-actions .btn {
    flex: 1;
}

/* Auth Section */
.auth-section {
    display: none;
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: radial-gradient(circle at 20% 0%, rgba(255, 248, 238, 0.95), rgba(243, 233, 220, 0.92));
    border-radius: 18px;
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.auth-card {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(160deg, rgba(255, 250, 243, 0.96), rgba(244, 233, 219, 0.92));
    padding: var(--spacing-2xl);
    border-radius: 18px;
    border: 1px solid rgba(111, 79, 50, 0.18);
    box-shadow: 0 24px 60px rgba(36, 20, 12, 0.12);
}

.auth-card h2 {
    font-size: clamp(24px, 5vw, 32px);
    color: #24140c;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.auth-card p {
    color: rgba(47, 26, 16, 0.65);
    margin-bottom: var(--spacing-xl);
    font-size: 14px;
    line-height: 1.6;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.auth-form .form-group {
    text-align: left;
}

.auth-form label {
    display: block;
    font-size: 13px;
    color: rgba(47, 26, 16, 0.7);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 500;
}

.auth-form input {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-md);
    border: 1px solid rgba(111, 79, 50, 0.18);
    border-radius: 12px;
    font-size: 14px;
    color: #24140c;
    transition: all 0.3s ease;
}

.auth-form input::placeholder {
    color: var(--text-muted);
}

.auth-form input:focus {
    outline: none;
    border-color: rgba(111, 79, 50, 0.5);
    box-shadow: 0 0 0 3px rgba(111, 79, 50, 0.12);
    background: rgba(255, 255, 255, 0.96);
}

.auth-form .btn {
    width: 100%;
}

/* Appointment Page */
.appointment-section {
    padding: var(--spacing-2xl) 0;
}

.appointment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

@media (min-width: 1024px) {
    .appointment-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: var(--spacing-2xl);
    }
}

.consultation-types {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

@media (min-width: 768px) {
    .consultation-types {
        grid-template-columns: repeat(3, 1fr);
    }
}

.consultation-option input {
    display: none;
}

.consultation-card {
    padding: var(--spacing-lg);
    border: 2px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
}

.consultation-card:hover {
    border-color: rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.consultation-option input:checked + .consultation-card {
    border-color: var(--gray-600);
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.consultation-card svg {
    stroke: var(--text-dark);
    margin-bottom: 14px;
}

.consultation-card h4 {
    font-size: 19px;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 0.03em;
}

/* Country Locator */
.country-locator {
    padding: var(--spacing-2xl) 0;
}

.country-locator .section-title {
    font-size: clamp(22px, 4vw, 32px);
    text-align: center;
    margin-bottom: 8px;
}

.country-locator .section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
}

.country-locator-card {
    max-width: 520px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: var(--spacing-lg);
    display: grid;
    gap: 16px;
    background: #ffffff;
}

.country-locator-card .btn {
    width: 100%;
}

.country-locator-current {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
}

.consultation-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 768px) {
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
}

.time-slot {
    padding: 14px;
    background: transparent;
    border: 1px solid var(--gray-400);
    color: var(--text-dark);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Montserrat', sans-serif;
}

.time-slot.selected,
.time-slot:hover {
    background: linear-gradient(135deg, var(--gray-700) 0%, var(--gray-600) 100%);
    color: var(--white);
    border-color: var(--gray-700);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Consultation Info */
.consultation-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.info-card {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: var(--spacing-xl);
}

.info-card h3 {
    font-size: 21px;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.05em;
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

.info-list svg {
    stroke: var(--text-dark);
    flex-shrink: 0;
    margin-top: 2px;
}

.atelier-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.atelier-detail {
    display: flex;
    gap: 18px;
}

.atelier-detail svg {
    stroke: var(--text-dark);
    flex-shrink: 0;
}

.atelier-detail strong {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.atelier-detail p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.info-card.highlight {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
    border-color: var(--text-dark);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(26, 24, 22, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.modal-content {
    background: linear-gradient(180deg, #ffffff 0%, #fbf8f4 100%);
    padding: clamp(40px, 5vw, 64px) clamp(28px, 6vw, 56px);
    max-width: 560px;
    width: 100%;
    text-align: center;
    border: 1px solid rgba(107, 84, 67, 0.18);
    box-shadow: 0 30px 80px rgba(31, 26, 22, 0.25), 0 12px 36px rgba(31, 26, 22, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.55);
    border-radius: 14px;
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #f7efe6 0%, #efe5dc 60%, #e2d3c3 100%);
    box-shadow: 0 10px 30px rgba(31, 26, 22, 0.2);
}

.modal-icon svg {
    stroke: var(--brown);
    stroke-width: 1.6;
}

.modal-icon.success {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
}

.modal-icon.success svg {
    stroke: #4caf50;
}

.modal-content h3 {
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-size: clamp(22px, 3vw, 28px);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
    font-size: 13px;
    letter-spacing: 0.04em;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

@media (min-width: 768px) {
    .modal-actions {
        flex-direction: row;
        justify-content: center;
    }
}

.cart-toast {
    position: fixed;
    top: 12px;
    left: 50%;
    transform: translate(-50%, -16px);
    width: min(720px, calc(100% - 32px));
    background: radial-gradient(circle at 10% 0%, rgba(255, 250, 243, 0.96), rgba(242, 232, 218, 0.92));
    border: 1px solid rgba(111, 79, 50, 0.18);
    box-shadow: 0 30px 70px rgba(32, 18, 10, 0.2);
    border-radius: 16px;
    padding: 28px 24px 26px;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
    z-index: 1200;
}

.cart-toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.cart-toast-content {
    display: flex;
    align-items: stretch;
    gap: 18px;
    margin-top: 0;
    margin-left: 0;
    padding: 0;
}

.cart-toast-image {
    width: 33%;
    max-width: 180px;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    background: #ede4d7;
    display: block;
    align-self: stretch;
    margin: 0;
}

.cart-toast-details {
    flex: 1;
    min-width: 0;
    padding-left: 6px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

.cart-toast-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(47, 26, 16, 0.72);
    font-weight: 500;
    margin: 0;
}

.cart-toast-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: min(484px, 100%);
    height: 62px;
    margin: 0 auto;
}

.cart-toast-name {
    font-size: 16px;
    font-weight: 500;
    color: #24140c;
    margin: 2px 0 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    align-self: flex-start;
    text-align: left;
}

.cart-toast-meta {
    font-size: 13px;
    color: rgba(47, 26, 16, 0.62);
    margin: auto 0 2px;
    text-align: right;
}

.cart-toast-qty,
.cart-toast-price {
    font-size: 13px;
    color: rgba(47, 26, 16, 0.62);
    margin: 0;
    text-align: right;
}

.cart-toast-price {
    color: #24140c;
    font-weight: 600;
}

.cart-toast-close {
    border: none;
    background: transparent;
    color: rgba(47, 26, 16, 0.7);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    padding: 0 4px;
}

.cart-toast-actions {
    display: flex;
    margin-top: 16px;
    justify-content: center;
}

.cart-toast-actions .btn {
    flex: 0 0 auto;
    border-radius: 999px;
    font-size: 12px;
    padding: 10px 22px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    width: 436px;
    height: 48px;
    max-width: 100%;
    margin: 0 auto;
}

.cart-toast-actions .btn:hover,
.cart-toast-actions .btn:active {
    background: #2f1a10;
    border-color: #2f1a10;
    color: #f5eadb;
    box-shadow: none;
    transform: none;
}

.cart-toast-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 13px;
    color: rgba(47, 26, 16, 0.62);
    text-decoration: none;
    text-underline-offset: 4px;
    letter-spacing: 0.18em;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
}

.cart-toast-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(47, 26, 16, 0.18), transparent);
    margin: 0 -22px;
}

.cart-toast-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(24, 14, 9, 0.28);
    backdrop-filter: blur(24px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease;
    z-index: 1100;
}

.cart-toast-backdrop.show {
    opacity: 1;
    pointer-events: auto;
}

body.cart-toast-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

@media (max-width: 640px) {
    .cart-toast {
        width: calc(100% - 16px);
        padding: 12px 12px 10px;
    }
}

/* Footer */
footer {
    background: var(--white);
    color: var(--black);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 50%, transparent 100%);
}

@media (min-width: 768px) {
    footer { padding: var(--spacing-2xl) 0 var(--spacing-lg); }
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    text-align: left;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-2xl);
        text-align: left;
    }
}

.footer-section h4 {
    font-size: 14px;
    color: var(--black);
    margin-bottom: 18px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.legal-page {
    padding: clamp(80px, 10vh, 120px) 0;
}

.legal-page h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 16px;
}

.legal-page p {
    color: var(--text-muted);
}

.size-guide-image {
    width: 100%;
    max-width: 960px;
    height: auto;
    display: block;
    margin: 24px auto 0;
}

@media (min-width: 768px) {
    .footer-section h4 { font-size: 15px; }
}

.footer-links {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
    row-gap: 12px;
    justify-items: center;
}

.footer-links a {
    color: var(--gray-700);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-links a:active {
    color: var(--black);
    padding-left: 6px;
}

.social-links {
    display: flex;
    gap: 22px;
    justify-content: center;
}

@media (min-width: 768px) {
    .social-links { justify-content: flex-start; }
}

.social-icon {
    width: 22px;
    height: 22px;
    stroke: var(--gray-700);
    fill: none;
    transition: all 0.3s ease;
}

.social-icon:hover,
.social-icon:active {
    stroke: var(--black);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: left;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 11px;
    color: var(--gray-600);
    letter-spacing: 0.05em;
}

@media (min-width: 768px) {
    .footer-bottom { font-size: 12px; }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Empty States */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-2xl) var(--spacing-md);
    text-align: center;
}

.empty-state svg {
    stroke: var(--gray-400);
    opacity: 0.3;
    margin-bottom: var(--spacing-lg);
}

.empty-state h3 {
    color: var(--text-dark);
    margin-bottom: 14px;
    font-size: 22px;
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

/* Touch Optimizations */
* {
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

button, a {
    -webkit-touch-callout: none;
    user-select: none;
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-sm { margin-top: var(--spacing-sm); }
.mt-md { margin-top: var(--spacing-md); }
.mt-lg { margin-top: var(--spacing-lg); }
.mb-sm { margin-bottom: var(--spacing-sm); }
.mb-md { margin-bottom: var(--spacing-md); }
.mb-lg { margin-bottom: var(--spacing-lg); }

/* Enhanced Animations */
@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2); }
    50% { box-shadow: 0 0 0 12px rgba(0, 0, 0, 0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.shimmer-text {
    background: linear-gradient(90deg, var(--gray-600) 0%, var(--gray-700) 50%, var(--gray-600) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

/* Image loading placeholder */
.image-loading {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}

/* Smooth page transitions */

/* Hover lift effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-luxury);
}

/* Selection styling */
::selection {
    background: var(--gray-700);
    color: var(--white);
}

::-moz-selection {
    background: var(--gray-700);
    color: var(--white);
}

/* Order History Styling */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
}

.order-card {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: var(--spacing-lg);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.01) 100%);
    transition: all 0.3s ease;
}

.order-card:hover {
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.order-header h3 {
    font-size: var(--text-lg);
    color: var(--text-dark);
    margin: 0 0 8px 0;
    letter-spacing: 0.05em;
}

.order-date {
    color: var(--text-muted);
    font-size: 13px;
    margin: 0;
}

.order-total {
    text-align: right;
}

.order-amount {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-dark);
}

.order-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    font-size: 13px;
}

.order-details p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
}

.order-details strong {
    color: var(--text-dark);
    font-weight: 500;
}

@media (max-width: 768px) {
    .order-header {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .order-total {
        text-align: left;
    }

    .order-details {
        grid-template-columns: 1fr;
    }
}

/* Missing CSS Classes - Added for completeness */
.account-content {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 241, 234, 0.96) 100%);
    border: 1px solid rgba(170, 142, 110, 0.22);
    box-shadow: 0 20px 60px rgba(91, 74, 60, 0.14);
    padding: clamp(22px, 4vw, 36px);
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.auth-container {
    width: 100%;
    max-width: 450px;
}

.btn-add-to-cart {
    background: var(--text-dark);
    color: var(--white);
    padding: clamp(12px, 2vw, 16px) clamp(24px, 4vw, 40px);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    min-height: 44px;
}

.product-detail-section .btn-add-to-cart {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.product-detail-section .btn-add-to-cart .btn-label {
    flex: 1;
    text-align: left;
}

.product-detail-section .btn-add-to-cart .btn-price {
    font-size: 12px;
    white-space: nowrap;
}

.product-detail-section .btn-quick-buy {
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: #fff;
    color: #1c1c1c;
    text-transform: none;
    letter-spacing: 0.02em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.product-detail-section .btn-quick-buy .quick-buy-icon {
    display: inline-flex;
    align-items: center;
    color: inherit;
}

.btn-add-to-cart:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
}

/* Price font override */
.product-price,
.price-currency,
.price-amount,
.cart-item-price,
.summary-item-price,
.order-item-price,
.cart-toast-price,
.product-detail-section .btn-add-to-cart .btn-price {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
}

.product-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.payment-note {
    display: none;
}

#checkout-errors {
    color: #fa755a;
    font-size: 13px;
    min-height: 18px;
}

/* ===== ORDERS, INVOICES & TRACKING ===== */

.orders-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
}

.order-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 241, 234, 0.96) 100%);
    border: 1px solid rgba(170, 142, 110, 0.22);
    border-radius: 8px;
    padding: var(--spacing-lg);
    box-shadow: 0 12px 30px rgba(91, 74, 60, 0.08);
    transition: all 0.3s ease;
}

.order-card:hover {
    box-shadow: 0 20px 50px rgba(91, 74, 60, 0.15);
    border-color: rgba(170, 142, 110, 0.35);
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(170, 142, 110, 0.15);
}

.order-number {
    font-family: var(--font-serif);
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--text-dark);
}

.order-date {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.order-status {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.order-status.pending {
    background: rgba(255, 193, 7, 0.1);
    color: #f57f17;
}

.order-status.processing {
    background: rgba(33, 150, 243, 0.1);
    color: #1565c0;
}

.order-status.shipped {
    background: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
}

.order-status.delivered {
    background: rgba(76, 175, 80, 0.1);
    color: #1b5e20;
}

.order-status.cancelled {
    background: rgba(244, 67, 54, 0.1);
    color: #c62828;
}

.order-items {
    margin-bottom: var(--spacing-lg);
}

.order-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: var(--spacing-lg);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    margin-bottom: 10px;
}

.order-item-image {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 4px;
    background: var(--champagne);
}

.order-item-details h4 {
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.order-item-details p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 2px 0;
}

.order-item-price {
    text-align: right;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.order-summary {
    background: rgba(255, 255, 255, 0.5);
    padding: var(--spacing-md);
    border-radius: 6px;
    margin-bottom: var(--spacing-lg);
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mid);
}

.order-summary-row.total {
    border-top: 1px solid rgba(170, 142, 110, 0.15);
    padding-top: 10px;
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    letter-spacing: 0.18em;
}

.order-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-view-invoice,
.btn-track {
    padding: 10px 16px;
    font-size: 13px;
    border-radius: 999px;
    border: 1px solid rgba(170, 142, 110, 0.3);
    background: transparent;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 500;
    font-family: 'Cormorant Garamond', serif;
}

.btn-view-invoice:hover,
.btn-track:hover {
    background: rgba(170, 142, 110, 0.1);
    border-color: rgba(170, 142, 110, 0.5);
}

/* ===== INVOICE MODAL ===== */

.invoice-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
}

.invoice-modal.active {
    display: flex;
}

.invoice-container {
    background: white;
    border-radius: 8px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.invoice-header {
    background: linear-gradient(135deg, rgba(247, 241, 234, 0.98) 0%, rgba(255, 255, 255, 0.96) 100%);
    padding: var(--spacing-xl);
    border-bottom: 1px solid rgba(170, 142, 110, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.invoice-title {
    font-family: var(--font-serif);
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--text-dark);
}

.invoice-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-mid);
    transition: color 0.2s;
}

.invoice-close:hover {
    color: var(--text-dark);
}

.invoice-content {
    padding: var(--spacing-xl);
}

.invoice-branding {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(170, 142, 110, 0.15);
}

.invoice-logo {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: var(--burgundy);
}

.invoice-details {
    text-align: right;
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.8;
}

.invoice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.invoice-section h4 {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.invoice-section p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

.invoice-table {
    width: 100%;
    margin-bottom: var(--spacing-xl);
    border-collapse: collapse;
}

.invoice-table th {
    background: rgba(247, 241, 234, 0.6);
    padding: 12px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 2px solid rgba(170, 142, 110, 0.15);
    color: var(--text-dark);
}

.invoice-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(170, 142, 110, 0.1);
    font-size: 14px;
    color: var(--text-dark);
}

.invoice-table tr:last-child td {
    border-bottom: none;
}

.invoice-totals {
    display: flex;
    justify-content: flex-end;
    margin-bottom: var(--spacing-xl);
}

.totals-box {
    width: 100%;
    max-width: 300px;
}

.totals-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(170, 142, 110, 0.1);
}

.totals-row.total {
    border-bottom: 2px solid rgba(170, 142, 110, 0.3);
    border-top: 1px solid rgba(170, 142, 110, 0.15);
    padding: 12px 0;
    margin-top: 8px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

.invoice-footer {
    background: rgba(247, 241, 234, 0.4);
    padding: var(--spacing-lg);
    border-radius: 4px;
    margin-bottom: var(--spacing-lg);
    font-size: 13px;
    color: var(--text-mid);
    text-align: center;
}

.invoice-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(170, 142, 110, 0.15);
}

.btn-download,
.btn-print {
    padding: 12px 20px;
    border: 1px solid rgba(170, 142, 110, 0.3);
    background: transparent;
    color: var(--text-dark);
    border-radius: 4px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-download:hover,
.btn-print:hover {
    background: rgba(170, 142, 110, 0.1);
    border-color: rgba(170, 142, 110, 0.5);
}

/* ===== TRACKING ===== */

.tracking-container {
    display: none;
}

.tracking-container.active {
    display: block;
}

.tracking-header {
    background: linear-gradient(135deg, rgba(247, 241, 234, 0.98) 0%, rgba(255, 255, 255, 0.96) 100%);
    padding: var(--spacing-lg);
    border-radius: 8px;
    margin-bottom: var(--spacing-xl);
    border: 1px solid rgba(170, 142, 110, 0.15);
}

.tracking-title {
    font-family: var(--font-serif);
    font-size: clamp(18px, 3vw, 22px);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.tracking-number {
    font-size: 13px;
    color: var(--text-muted);
}

.tracking-carrier {
    font-size: 12px;
    color: var(--text-mid);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 6px;
}

.tracking-timeline {
    position: relative;
    padding: 0;
}

.tracking-step {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.tracking-dot {
    position: relative;
    width: 40px;
    height: 40px;
    margin-top: 6px;
    margin-left: 10px;
}

.tracking-dot::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--burgundy);
    border: 3px solid white;
    box-shadow: 0 0 0 2px var(--burgundy);
}

.tracking-dot::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 60px;
    background: rgba(170, 142, 110, 0.2);
}

.tracking-step:last-child .tracking-dot::after {
    display: none;
}

.tracking-step.completed .tracking-dot::before {
    background: var(--burgundy);
    box-shadow: 0 0 0 2px var(--burgundy);
}

.tracking-step.current .tracking-dot::before {
    box-shadow: 0 0 0 2px var(--burgundy), 0 0 8px var(--burgundy);
}

.tracking-info h4 {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.tracking-info p {
    font-size: 13px;
    color: var(--text-mid);
    margin: 2px 0;
}

.empty-state {
    text-align: center;
    padding: var(--spacing-2xl) var(--spacing-lg);
    color: var(--text-muted);
}

.empty-state svg {
    margin-bottom: var(--spacing-lg);
    opacity: 0.4;
}

.empty-state h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 14px;
    margin-bottom: var(--spacing-lg);
}

@media (max-width: 768px) {
    .order-item {
        grid-template-columns: 1fr;
    }

    .invoice-grid {
        grid-template-columns: 1fr;
    }

    .invoice-table {
        font-size: 12px;
    }

    .invoice-table th,
    .invoice-table td {
        padding: 8px;
    }

    .invoice-container {
        max-width: 100%;
        border-radius: 0;
    }
}
html.menu-open,
body.menu-open {
    overflow: hidden;
}
@media (max-width: 1023px) {
    .hero-top .nav-icons,
    .hero-top .mobile-menu-btn {
        opacity: 0;
        pointer-events: none;
    }

    body.menu-open.hero-top .mobile-menu-btn {
        opacity: 1;
        pointer-events: auto;
    }
}

.hero-evening .hero-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.18) 45%, rgba(0, 0, 0, 0) 100%) !important;
}

.hero-bridal .hero-overlay {
    background: radial-gradient(circle at 50% 70%, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0) 60%) !important;
}

.hero-haute .hero-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.46) 0%, rgba(0, 0, 0, 0.18) 38%, rgba(0, 0, 0, 0) 72%) !important;
}

.hero-nude-block {
    min-height: clamp(480px, 70vh, 800px);
    background: transparent;
    position: relative;
}

.hero-nude-surface {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: inherit;
    background: #fff;
}

.hero-nude-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #262626;
}

.hero-nude-title {
    font-size: clamp(22px, 2.6vw, 34px);
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.hero-nude-link {
    font-size: 14px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 6px;
}

.hero-nude-newsletter {
    margin-top: 56px;
}

.hero-nude-subtitle {
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero-nude-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.hero-nude-input {
    width: min(360px, 80vw);
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    color: #262626;
}

.hero-nude-input::placeholder {
    color: rgba(0, 0, 0, 0.5);
}

.hero-nude-button {
    width: min(360px, 80vw);
    padding: 12px 16px;
    border: none;
    border-radius: 6px;
    background: #222;
    color: #f8f8f8;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-link {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: block;
}

.hero-evening .hero-link {
    cursor: pointer;
}

.hero-bridal .hero-link {
    cursor: pointer;
}

/* Store locator */
.store-locator {
    background: #F6F4F1;
    padding: 120px 0 96px;
    min-height: 100vh;
}

.store-locator h1 {
    font-size: 28px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #111111;
    font-weight: 400;
}

.store-locator-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 24px;
}

.store-locator-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.store-locator-name {
    font-size: 18px;
    letter-spacing: 0.02em;
    color: #111111;
    font-weight: 400;
}

.store-locator-meta {
    font-size: 13px;
    letter-spacing: 0.02em;
    color: rgba(17, 17, 17, 0.72);
    margin-top: 6px;
    line-height: 1.4;
}

.store-locator-note {
    color: rgba(17, 17, 17, 0.6);
}

.store-locator-nearest {
    color: rgba(17, 17, 17, 0.55);
    text-transform: none;
}

.store-locator-map-toggle {
    margin-top: 26px;
    background: none;
    border: none;
    padding: 0;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #111111;
    cursor: pointer;
}

.store-locator-map {
    margin-top: 20px;
    border: 1px solid rgba(17, 17, 17, 0.12);
}

.store-locator-map iframe {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
}

@media (max-width: 720px) {
    .store-locator {
        padding: 96px 0 72px;
    }

    .store-locator h1 {
        font-size: 24px;
    }
}

/* Cookie consent */
.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    background: #000000;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 16px 20px;
    z-index: 9999;
    max-width: min(560px, 92vw);
    width: calc(100% - 32px);
    box-shadow: none;
}

.cookie-banner-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cookie-banner-content p {
    margin: 0;
    font-size: 12px;
    color: #ffffff;
}

.cookie-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.cookie-btn {
    padding: 8px 14px;
    border-radius: 3px;
    border: 1px solid #ffffff;
    background: #ffffff;
    color: #000000;
    font-size: 11px;
    letter-spacing: 0.03em;
    cursor: pointer;
    text-transform: none;
}

.cookie-btn.cookie-reject {
    background: transparent;
    color: #ffffff;
}

@media (max-width: 720px) {
    .cookie-banner {
        left: 0;
        right: 0;
        bottom: 0;
        transform: none;
        max-width: 100%;
        width: 100%;
        padding: 14px 16px;
        border-left: 0;
        border-right: 0;
    }
}

.cookie-preferences {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cookie-preferences-note {
    margin: 0;
    font-size: 14px;
    color: rgba(17, 17, 17, 0.75);
}

.cookie-preferences-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Newsletter modal */
.newsletter-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(10, 8, 7, 0.56);
    z-index: 10020;
    padding: 20px;
}

.newsletter-modal.active {
    display: flex;
}

.newsletter-modal-dialog {
    width: min(920px, 96vw);
    background: #ffffff;
    color: #111111;
    border-radius: 0;
    min-height: 420px;
    padding: 0;
    box-shadow: 0 40px 120px rgba(15, 10, 7, 0.32);
    position: relative;
    text-align: center;
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

.newsletter-modal-media,
.newsletter-modal-content {
    flex: 1 1 50%;
    min-width: 0;
}

.newsletter-modal-media {
    background: #111;
}

.newsletter-modal-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.newsletter-modal-content {
    padding: clamp(28px, 5vw, 52px) clamp(24px, 4.5vw, 52px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    text-align: center;
}

.newsletter-modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: none;
    background: transparent;
    color: rgba(17, 17, 17, 0.6);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
}

.newsletter-modal-kicker {
    margin: 0 0 6px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 56px);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #111111;
}

.newsletter-modal-title {
    margin: 0 0 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.7);
}

.newsletter-modal-body {
    margin: 0 0 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 3.1vw, 30px);
    letter-spacing: 0.06em;
    line-height: 1.55;
    color: rgba(17, 17, 17, 0.92);
}

.newsletter-modal-subtext {
    margin: -2px 0 18px;
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(17, 17, 17, 0.62);
}

.newsletter-modal-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-modal-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(17, 17, 17, 0.28);
    border-radius: 0;
    font-size: 15px;
    outline: none;
}

.newsletter-modal-input:focus {
    border-color: rgba(17, 17, 17, 0.4);
}

.newsletter-modal-button {
    width: 100%;
    padding: 14px 18px;
    border-radius: 0;
    border: 1px solid #111111;
    background: #111111;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.36em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
    box-shadow: 0 18px 35px rgba(17, 17, 17, 0.18);
}

.newsletter-modal-button:hover,
.newsletter-modal-button:active {
    background: #ffffff;
    color: #111111;
    transform: translateY(-1px);
    box-shadow: 0 22px 45px rgba(17, 17, 17, 0.22);
}

@media (max-width: 720px) {
    .newsletter-modal {
        padding: 14px;
    }

    .newsletter-modal-dialog {
        width: 100%;
        min-height: auto;
        border-radius: 0;
        flex-direction: row;
    }

    .newsletter-modal-media {
        height: auto;
    }

    .newsletter-modal-content {
        padding: 28px 22px 30px;
    }

    .newsletter-modal-body {
        font-size: 20px;
        letter-spacing: 0.04em;
        line-height: 1.5;
    }

    .newsletter-modal-subtext {
        font-size: 11px;
        letter-spacing: 0.14em;
    }
}

body.is-home:not(.hero-top) .nav-container,
body.collections-page .nav-container,
body.product-page .nav-container {
    background: #241E19 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid rgba(245, 239, 231, 0.18) !important;
    box-shadow: 0 10px 24px rgba(20, 16, 13, 0.22) !important;
}

body.is-home:not(.hero-top) .nav-container .logo,
body.is-home:not(.hero-top) .nav-container .nav-links a,
body.is-home:not(.hero-top) .nav-container .nav-icon,
body.is-home:not(.hero-top) .nav-container .search-link .nav-icon,
body.collections-page .nav-container .logo,
body.collections-page .nav-container .nav-links a,
body.collections-page .nav-container .nav-icon,
body.collections-page .nav-container .search-link .nav-icon,
body.product-page .nav-container .logo,
body.product-page .nav-container .nav-links a,
body.product-page .nav-container .nav-icon,
body.product-page .nav-container .search-link .nav-icon {
    color: #F5EFE7;
    stroke: #F5EFE7;
}

body.is-home:not(.hero-top) .nav-container .mobile-menu-btn span,
body.collections-page .nav-container .mobile-menu-btn span,
body.product-page .nav-container .mobile-menu-btn span {
    background: #F5EFE7;
}

body.is-home:not(.hero-top) .nav-container .cart-count,
body.collections-page .nav-container .cart-count,
body.product-page .nav-container .cart-count {
    background: rgba(245, 239, 231, 0.14);
    color: #F5EFE7;
    border: 1px solid rgba(245, 239, 231, 0.35);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

@media (max-width: 1023px) {
    .hero-top .nav-icons,
    .hero-top .mobile-menu-btn {
        opacity: 1 !important;
        pointer-events: auto !important;
    }
}

.nav-container {
    position: fixed !important;
    top: var(--announcement-height, 0px) !important;
    left: 0;
    right: 0;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
}

@media (min-width: 1024px) {
    .nav-container::after {
        background: transparent !important;
        height: 0 !important;
    }

    /* Desktop default: white header on all pages */
    .nav-container {
        background: #ffffff !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08) !important;
    }

    .nav-container .logo,
    .nav-container .nav-links a,
    .nav-container .menu-primary-trigger,
    .nav-container .nav-icon,
    .nav-container .search-link .nav-icon {
        color: var(--text-dark) !important;
        stroke: var(--text-dark) !important;
    }

    .nav-container .cart-count {
        background: var(--text-dark) !important;
        color: #ffffff !important;
        border: 1px solid var(--text-dark) !important;
    }

    body.is-home:not(.hero-top) .nav-container,
    body.collections-page .nav-container,
    body.product-page .nav-container {
        background: #ffffff !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08) !important;
    }

    body.is-home:not(.hero-top) .nav-container .logo,
    body.is-home:not(.hero-top) .nav-container .nav-links a,
    body.is-home:not(.hero-top) .nav-container .menu-primary-trigger,
    body.is-home:not(.hero-top) .nav-container .nav-icon,
    body.is-home:not(.hero-top) .nav-container .search-link .nav-icon,
    body.collections-page .nav-container .logo,
    body.collections-page .nav-container .nav-links a,
    body.collections-page .nav-container .menu-primary-trigger,
    body.collections-page .nav-container .nav-icon,
    body.collections-page .nav-container .search-link .nav-icon,
    body.product-page .nav-container .logo,
    body.product-page .nav-container .nav-links a,
    body.product-page .nav-container .menu-primary-trigger,
    body.product-page .nav-container .nav-icon,
    body.product-page .nav-container .search-link .nav-icon {
        color: var(--text-dark) !important;
        stroke: var(--text-dark) !important;
    }

    body.is-home:not(.hero-top) .nav-container .cart-count,
    body.collections-page .nav-container .cart-count,
    body.product-page .nav-container .cart-count {
        background: var(--text-dark) !important;
        color: #ffffff !important;
        border: 1px solid var(--text-dark) !important;
    }

    body.is-home.has-fixed-nav {
        padding-top: 0;
    }

    body.is-home.has-fixed-nav .hero {
        margin-top: 0;
    }
}

@media (min-width: 1024px) {
    /* Desktop home top: transparent header with white icons */
    body.is-home.hero-top .nav-container {
        background: rgba(12, 12, 12, 0.28) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: none !important;
        backdrop-filter: blur(18px) saturate(140%) !important;
        -webkit-backdrop-filter: blur(18px) saturate(140%) !important;
    }

    body.is-home.hero-top .nav-container .logo,
    body.is-home.hero-top .nav-container .nav-links a,
    body.is-home.hero-top .nav-container .menu-primary-trigger,
    body.is-home.hero-top .nav-container .nav-icon,
    body.is-home.hero-top .nav-container .search-link .nav-icon {
        color: #ffffff !important;
        stroke: #ffffff !important;
    }

    body.is-home.hero-top .nav-container .cart-count {
        background: rgba(255, 255, 255, 0.14) !important;
        color: #ffffff !important;
        border: 1px solid rgba(255, 255, 255, 0.35) !important;
    }
}

@media (min-width: 1024px) {
    body.is-home .nav-container:hover,
    body.collections-page .nav-container:hover,
    body.product-page .nav-container:hover {
        background: #ffffff !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08) !important;
    }

    body.is-home .nav-container:hover .logo,
    body.is-home .nav-container:hover .nav-links a,
    body.is-home .nav-container:hover .menu-primary-trigger,
    body.is-home .nav-container:hover .nav-icon,
    body.is-home .nav-container:hover .search-link .nav-icon,
    body.collections-page .nav-container:hover .logo,
    body.collections-page .nav-container:hover .nav-links a,
    body.collections-page .nav-container:hover .menu-primary-trigger,
    body.collections-page .nav-container:hover .nav-icon,
    body.collections-page .nav-container:hover .search-link .nav-icon,
    body.product-page .nav-container:hover .logo,
    body.product-page .nav-container:hover .nav-links a,
    body.product-page .nav-container:hover .menu-primary-trigger,
    body.product-page .nav-container:hover .nav-icon,
    body.product-page .nav-container:hover .search-link .nav-icon {
        color: var(--text-dark) !important;
        stroke: var(--text-dark) !important;
    }

    body.is-home .nav-container:hover .cart-count,
    body.collections-page .nav-container:hover .cart-count,
    body.product-page .nav-container:hover .cart-count {
        background: var(--text-dark) !important;
        color: #ffffff !important;
        border: 1px solid var(--text-dark) !important;
    }
}

@media (min-width: 1024px) {
    /* Desktop menu sizing + alignment (PC/Mac) */
    .nav-links {
        gap: clamp(32px, 4vw, 84px);
    }

    .nav-links > li.menu-primary {
        display: flex;
        align-items: center;
        height: var(--nav-height, 96px);
    }

    .nav-links a,
    .nav-links > li.menu-primary > .menu-primary-trigger {
        font-size: clamp(12px, 0.9vw, 14px);
        line-height: 1;
        letter-spacing: 0.18em;
    }

    .nav-links > li.menu-primary > .menu-primary-trigger {
        display: inline-flex;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    /* Desktop header: left hamburger + menu inside drawer */
    .nav-container nav.container {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
        grid-template-rows: auto !important;
        align-items: center !important;
        column-gap: 14px;
    }

    .nav-left {
        display: flex !important;
        grid-column: 1 !important;
        grid-row: 1 !important;
        align-items: center;
        justify-self: start;
    }

    .mobile-menu-btn {
        display: inline-flex !important;
        margin-right: 0 !important;
        width: 32px !important;
        height: 32px !important;
        padding: 0 !important;
        border-radius: 0 !important;
        border: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .nav-left .nav-icons-left {
        display: none !important;
    }

    .nav-container nav.container .logo,
    nav .logo {
        grid-column: 2 !important;
        grid-row: 1 !important;
        justify-self: center !important;
        margin: 0 !important;
        text-align: center;
    }

    .nav-container nav.container .nav-icons-right,
    nav .nav-icons {
        grid-column: 3 !important;
        grid-row: 1 !important;
        justify-self: end !important;
        margin-left: 0 !important;
    }

    .nav-container .mobile-menu-btn span,
    body.is-home:not(.hero-top) .nav-container .mobile-menu-btn span,
    body.collections-page .nav-container .mobile-menu-btn span,
    body.product-page .nav-container .mobile-menu-btn span {
        background: #111111 !important;
        box-shadow: none !important;
    }

    body.is-home.hero-top .nav-container .mobile-menu-btn span {
        background: #ffffff !important;
        box-shadow: none !important;
    }

    .mobile-menu-btn.active::before {
        color: #ffffff !important;
    }

    body.is-home .nav-container:hover .mobile-menu-btn,
    body.collections-page .nav-container:hover .mobile-menu-btn,
    body.product-page .nav-container:hover .mobile-menu-btn {
        background: transparent !important;
        border-color: transparent !important;
    }

    body.is-home .nav-container:hover .mobile-menu-btn span,
    body.collections-page .nav-container:hover .mobile-menu-btn span,
    body.product-page .nav-container:hover .mobile-menu-btn span {
        background: #000000 !important;
    }

    .nav-links {
        position: fixed !important;
        top: var(--nav-height, 96px) !important;
        left: 0 !important;
        width: min(420px, 92vw) !important;
        height: calc(100vh - var(--nav-height, 96px)) !important;
        background: rgba(12, 12, 12, 0.94) !important;
        backdrop-filter: blur(26px) saturate(145%) !important;
        -webkit-backdrop-filter: blur(26px) saturate(145%) !important;
        border-right: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 24px 0 56px rgba(0, 0, 0, 0.35) !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        gap: 0 !important;
        padding: clamp(28px, 4vh, 44px) 0 20px !important;
        margin: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translateX(-102%) !important;
        transition: transform 0.28s ease, opacity 0.28s ease, visibility 0.28s ease !important;
        z-index: 1200 !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
    }

    .nav-links.active {
        width: min(420px, 92vw) !important;
        height: calc(100vh - var(--nav-height, 96px)) !important;
        top: var(--nav-height, 96px) !important;
        left: 0 !important;
        right: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateX(0) !important;
        padding: clamp(28px, 4vh, 44px) 0 20px !important;
        background: rgba(12, 12, 12, 0.94) !important;
        backdrop-filter: blur(26px) saturate(145%) !important;
        -webkit-backdrop-filter: blur(26px) saturate(145%) !important;
        border-right: 1px solid rgba(255, 255, 255, 0.12) !important;
        box-shadow: 24px 0 56px rgba(0, 0, 0, 0.35) !important;
    }

    .nav-links > li.menu-primary {
        width: 100% !important;
        margin-bottom: 4px !important;
        padding: 0 !important;
        height: auto !important;
    }

    .nav-links > li.menu-primary > .menu-primary-trigger {
        width: 100% !important;
        text-align: left !important;
        padding: 14px 28px 14px 20px !important;
        font-size: 15px !important;
        letter-spacing: 0.1em !important;
        line-height: 1.3 !important;
        color: #ffffff !important;
    }

    .nav-links > li.menu-primary > .menu-primary-trigger::after {
        right: 18px !important;
    }
}

/* Unified header theme: always white background + black icons on all pages/states */
.nav-container,
.nav-container.hero-transparent,
body.is-home.hero-top .nav-container,
body.is-home:not(.hero-top) .nav-container,
body.collections-page .nav-container,
body.product-page .nav-container,
body.menu-open .nav-container,
body.search-open .nav-container {
    background: #ffffff !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.nav-container::after,
.nav-container.hero-transparent::after,
body.is-home.hero-top .nav-container::after,
body.menu-open .nav-container::after {
    background: transparent !important;
    height: 0 !important;
    opacity: 1 !important;
}

.nav-container .logo,
.nav-container .nav-links a,
.nav-container .menu-primary-trigger,
.nav-container .nav-icon,
.nav-container .search-link .nav-icon,
body.is-home.hero-top .nav-container .logo,
body.is-home.hero-top .nav-container .nav-links a,
body.is-home.hero-top .nav-container .menu-primary-trigger,
body.is-home.hero-top .nav-container .nav-icon,
body.is-home.hero-top .nav-container .search-link .nav-icon,
body.is-home:not(.hero-top) .nav-container .logo,
body.is-home:not(.hero-top) .nav-container .nav-links a,
body.is-home:not(.hero-top) .nav-container .menu-primary-trigger,
body.is-home:not(.hero-top) .nav-container .nav-icon,
body.is-home:not(.hero-top) .nav-container .search-link .nav-icon,
body.collections-page .nav-container .logo,
body.collections-page .nav-container .nav-links a,
body.collections-page .nav-container .menu-primary-trigger,
body.collections-page .nav-container .nav-icon,
body.collections-page .nav-container .search-link .nav-icon,
body.product-page .nav-container .logo,
body.product-page .nav-container .nav-links a,
body.product-page .nav-container .menu-primary-trigger,
body.product-page .nav-container .nav-icon,
body.product-page .nav-container .search-link .nav-icon {
    color: #111111 !important;
    stroke: #111111 !important;
}

.nav-container .mobile-menu-btn span,
body.is-home.hero-top .nav-container .mobile-menu-btn span,
body.is-home:not(.hero-top) .nav-container .mobile-menu-btn span,
body.collections-page .nav-container .mobile-menu-btn span,
body.product-page .nav-container .mobile-menu-btn span,
body.menu-open .nav-container .mobile-menu-btn span,
body.menu-open .nav-container.hero-transparent .mobile-menu-btn span {
    background: #111111 !important;
    box-shadow: none !important;
}

.mobile-menu-btn.active::before {
    color: #111111 !important;
}

@media (max-width: 1023px) {
    body.menu-open .nav-container .mobile-menu-btn span,
    body.menu-open .nav-container .mobile-menu-btn.active span,
    body.menu-open .mobile-menu-btn span {
        background: #111111 !important;
        box-shadow: none !important;
    }

    body.menu-open .nav-container .mobile-menu-btn.active::before,
    body.menu-open .mobile-menu-btn.active::before {
        color: #111111 !important;
    }

    body.menu-open .nav-links,
    body.menu-open .nav-links a,
    body.menu-open .nav-links .menu-primary-trigger,
    body.menu-open .nav-links .menu-utility-trigger,
    body.menu-open .nav-links .submenu-back,
    body.menu-open .nav-links .submenu-list a,
    body.menu-open .nav-links .submenu-section-title,
    body.menu-open .nav-links .submenu-footer,
    body.menu-open .nav-links #countryLocatorMenuLabel,
    body.menu-open .nav-links .country-locator-link,
    body.menu-open .nav-links .submenu-back-arrow {
        color: #ffffff !important;
        stroke: #ffffff !important;
        fill: #ffffff !important;
    }
}

@media (max-width: 1023px) {
    .mobile-menu-btn span,
    .mobile-menu-btn.active span,
    .nav-container .mobile-menu-btn span {
        background: #111111 !important;
        box-shadow: none !important;
    }

    .mobile-menu-btn,
    .mobile-menu-btn.active,
    .mobile-menu-btn.active::before {
        color: #111111 !important;
    }

    .mobile-menu-btn::before,
    .mobile-menu-btn.active::before {
        color: #111111 !important;
    }

    .nav-links,
    .nav-links a,
    .nav-links .menu-primary-trigger,
    .nav-links .menu-utility-trigger,
    .nav-links .submenu-back,
    .nav-links .submenu-back-arrow,
    .nav-links .submenu-list a,
    .nav-links .submenu-section-title,
    .nav-links .submenu-footer,
    .nav-links #countryLocatorMenuLabel,
    .nav-links .country-locator-link,
    .menu-bottom-links a,
    .menu-utility-trigger {
        color: #ffffff !important;
        fill: #ffffff !important;
        stroke: #ffffff !important;
    }

    .nav-links a::after {
        background: #ffffff !important;
    }

    .nav-container .nav-links,
    .nav-container .nav-links * {
        color: #ffffff !important;
        fill: #ffffff !important;
        stroke: #ffffff !important;
        border-color: rgba(255, 255, 255, 0.35) !important;
    }

    .nav-container .nav-links .menu-primary-trigger,
    .nav-container .nav-links .menu-utility-trigger {
        color: #ffffff !important;
        border-color: rgba(255, 255, 255, 0.35) !important;
    }

    .nav-container .nav-links .menu-bottom-links a,
    .nav-container .nav-links .menu-bottom-group a {
        color: #ffffff !important;
    }
}

@media (min-width: 1024px) {
    nav {
        padding: clamp(10px, 2.3vh, 18px) var(--spacing-sm);
        min-height: 54px;
    }

    .nav-container .logo,
    nav .logo {
        font-size: clamp(30px, 2.4vw, 42px) !important;
    }
}

.cart-link .cart-count,
.nav-container .cart-count,
.nav-container:hover .cart-count,
.nav-container.hero-transparent .cart-count,
body.is-home.hero-top .nav-container .cart-count,
body.is-home:not(.hero-top) .nav-container .cart-count,
body.collections-page .nav-container .cart-count,
body.product-page .nav-container .cart-count,
body.menu-open .nav-container .cart-count,
body.search-open .nav-container .cart-count {
    background: #000000 !important;
    color: #ffffff !important;
    border: 1px solid #ffffff !important;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.15) !important;
    border-radius: 999px !important;
    min-width: 14px !important;
    height: 14px !important;
    padding: 0 4px !important;
    line-height: 14px !important;
    font-size: 10px !important;
}

.floating-chat-btn {
    position: fixed;
    right: 14px;
    bottom: 18px;
    z-index: 2600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    border-radius: 14px;
    background: #111;
    color: #fff;
    border: 1px solid #111;
    padding: 8px 11px;
    font-size: 10px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
    box-shadow: 0 10px 20px -14px rgba(0, 0, 0, 0.55);
}

.floating-chat-btn svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex: 0 0 auto;
}

@media (max-width: 1023px) {
    .floating-chat-btn {
        right: 12px;
        bottom: 14px;
    }
}

.floating-chat-btn:hover,
.floating-chat-btn:active,
.floating-chat-btn:focus,
.floating-chat-btn:focus-visible {
    background: #fff !important;
    color: #111 !important;
    border-color: #111 !important;
    text-decoration: none;
    outline: none;
}

.floating-chat-btn:visited {
    background: #111 !important;
    color: #fff !important;
    border-color: #111 !important;
    text-decoration: none;
}

/* Header stability fix: prevent legacy hero-top animation/state shifts */
body.hero-top .announcement-bar,
body.hero-top .nav-container,
body.is-home.hero-top .nav-container {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}
body.hero-top .announcement-bar {
    top: 0 !important;
}
body.hero-top .nav-container {
    top: var(--announcement-height, 0px) !important;
}

body.hero-top .nav-container {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0 !important;
}
