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

:root {
    /* Luxury Warm Palette - Brown, Gold & Beige */
    
    /* 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;
}

body {
    font-family: "Helvetica Neue", Helvetica, Arial, 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.5s ease-out forwards;
}

/* 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: #FFFFFF;
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
}

html:has(body.product-page),
body.product-page {
    overflow-x: hidden !important;
    max-width: 100vw;
}
body.product-page {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body.product-page .product-detail-section,
body.product-page .product-detail-section .container,
body.product-page .product-detail-grid,
body.product-page .product-images,
body.product-page .product-detail-info,
body.product-page .product-actions {
    max-width: 100% !important;
    overflow-x: hidden;
}

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

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

/* Typography - Luxury */
h1, h2, h3, h4, h5, h6 {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-weight: 300;
    letter-spacing: 0.08em;
    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 {
    background: linear-gradient(90deg, var(--gray-800) 0%, var(--gray-600) 50%, var(--gray-800) 100%);
    color: var(--white);
    text-align: center;
    padding: clamp(8px, 1.8vh, 12px) var(--spacing-sm);
    font-size: clamp(11px, 1.2vw + 3px, 14px);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    position: relative;
    z-index: 1001;
    width: 100%;
    left: 0;
    right: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.announcement-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(64, 64, 64, 0.05), transparent);
    animation: announceShimmer 4s ease-in-out infinite;
}

@keyframes announceShimmer {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(50%); }
}

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

/* Navigation */
/* ── Header — Solid by default, transparent when over hero ── */
.nav-container {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 0.5px solid rgba(0,0,0,0.08);
    display: flex;
    justify-content: center;
    transition: background 0.35s ease, border-color 0.35s ease, backdrop-filter 0.35s ease;
}

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

.nav-container .logo { color: #000; transition: color 0.35s ease; }
.nav-container.hero-transparent .logo { color: #fff; }

.nav-container .nav-icon { color: #000; stroke: #000; transition: color 0.35s ease, stroke 0.35s ease; }
.nav-container.hero-transparent .nav-icon { color: #fff; stroke: #fff; }

.nav-container .mobile-menu-btn span { background: #000; transition: background 0.35s ease; }
.nav-container.hero-transparent .mobile-menu-btn span { background: #fff; }

.nav-container .cart-count { background: #000; color: #fff; transition: all 0.35s ease; }
.nav-container.hero-transparent .cart-count { background: #fff; color: #000; }

.nav-container .currency-code { color: #000; transition: color 0.35s ease; }
.nav-container.hero-transparent .currency-code { color: #fff; }

.nav-container .currency-toggle svg { stroke: #000; transition: stroke 0.35s ease; }
.nav-container.hero-transparent .currency-toggle svg { stroke: #fff; }

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

.nav-container::after { display: none; }

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    position: relative;
    min-height: 52px;
    width: 100%;
}

.nav-container nav.container {
    max-width: 100%;
    width: 100%;
    padding: 0 16px;
    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: 16px;
    margin-left: 0;
    order: 3;
}

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

/* Hide language + currency on mobile */
@media (max-width: 767px) {
    .lang-selector { display: none !important; }
    .currency-selector { display: none !important; }
    nav .nav-icons { gap: 16px; }
    .nav-container nav.container { padding: 0 14px; }
    nav { min-height: 46px; }
    .nav-left { gap: 16px; }
}

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

/* Nav links hidden — menu is in the overlay */
.nav-links {
    display: none;
}

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

/* Currency selector */
.currency-selector {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 100;
}
.currency-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    padding: 6px 10px;
    font-family: inherit;
    color: inherit;
    transition: all 0.25s ease;
}
.currency-toggle:hover {
    background: rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.08);
}
.nav-container.hero-transparent .currency-toggle:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.15);
}
.currency-code {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
}
.currency-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: -8px;
    min-width: 160px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    padding: 8px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    pointer-events: none;
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
    transition: opacity 0.22s cubic-bezier(0.22,1,0.36,1), transform 0.22s cubic-bezier(0.22,1,0.36,1);
}
.currency-dropdown.open {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0) scale(1);
}
.currency-dropdown button {
    background: none;
    border: none;
    padding: 10px 14px;
    font-size: 13px;
    font-family: inherit;
    color: #888;
    text-align: left;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: all 0.15s ease;
    border-radius: 8px;
    font-weight: 400;
}
.currency-dropdown button:hover {
    background: #f5f5f5;
    color: #000;
}
.currency-dropdown button.active {
    color: #000;
    font-weight: 600;
    background: #f0f0f0;
}

/* Language selector — mirrors currency selector */
.lang-selector {
    position: relative;
    display: flex;
    align-items: center;
    z-index: 100;
}
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    background: none;
    border: 1px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    padding: 6px 10px;
    font-family: inherit;
    color: inherit;
    transition: all 0.25s ease;
}
.lang-toggle:hover {
    background: rgba(0,0,0,0.05);
    border-color: rgba(0,0,0,0.08);
}
.nav-container.hero-transparent .lang-toggle:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.15);
}
.lang-code {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
}
.nav-container .lang-code { color: #000; transition: color 0.35s ease; }
.nav-container.hero-transparent .lang-code { color: #fff; }
.nav-container .lang-toggle svg { stroke: #000; transition: stroke 0.35s ease; }
.nav-container.hero-transparent .lang-toggle svg { stroke: #fff; }

.lang-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    right: -8px;
    min-width: 150px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
    z-index: 1200;
    display: flex;
    flex-direction: column;
    padding: 8px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    pointer-events: none;
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
    transition: opacity 0.22s cubic-bezier(0.22,1,0.36,1), transform 0.22s cubic-bezier(0.22,1,0.36,1);
}
.lang-dropdown.open {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0) scale(1);
}
.lang-dropdown button {
    background: none;
    border: none;
    padding: 10px 14px;
    font-size: 13px;
    font-family: inherit;
    color: #888;
    text-align: left;
    cursor: pointer;
    letter-spacing: 0.03em;
    transition: all 0.15s ease;
    border-radius: 8px;
    font-weight: 400;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.lang-dropdown button:hover { background: #f5f5f5; color: #000; }
.lang-dropdown button.active { color: #000; font-weight: 600; background: #f0f0f0; }
.lang-dropdown button .lang-native { font-size: 11px; color: #aaa; font-weight: 400; }
.lang-dropdown button.active .lang-native { color: #666; }

/* On mobile, compact header items so they don't overlap logo */
@media (max-width: 640px) {
    nav .nav-icons {
        gap: 12px;
    }
    .currency-selector { display: none !important; }
    .currency-dropdown { right: 0; min-width: 140px; }

    .lang-selector { display: none !important; }
    .lang-dropdown { right: 0; min-width: 130px; }

    nav .logo {
        font-size: clamp(16px, 4.5vw, 22px);
        max-width: 45%;
        overflow: hidden;
        white-space: nowrap;
    }
}

/* RTL overrides */
html[dir="rtl"] .nav-icons-right { flex-direction: row-reverse; }
html[dir="rtl"] .nav-left { flex-direction: row-reverse; }
html[dir="rtl"] .currency-dropdown,
html[dir="rtl"] .lang-dropdown { right: auto; left: -8px; }
html[dir="rtl"] .currency-dropdown button,
html[dir="rtl"] .lang-dropdown button { text-align: right; }
html[dir="rtl"] .mobile-nav-panel { right: auto; left: 0; transform: translateX(-100%); }
html[dir="rtl"] .mobile-nav-panel.open,
html[dir="rtl"] .mobile-nav-overlay.open .mobile-nav-panel { transform: translateX(0); }

#siteSearchOverlay {
    --search-max-width: 540px;
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 280ms cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0ms linear 280ms;
}

#siteSearchOverlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-search-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    inset: 0;
    display: block;
}

.site-search-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0.9;
}

.site-search-overlay__panel {
    position: absolute;
    inset: 0;
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 100%;
    height: 100%;
    background: #fff;
    border-radius: 0;
    padding: clamp(16px, 4vw, 28px);
    box-shadow: none;
    z-index: 1;
    transform: none;
    opacity: 0;
    transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
        opacity 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

#siteSearchOverlay.is-open .site-search-overlay__panel {
    transform: none;
    opacity: 1;
}

.site-search-overlay__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    gap: 12px;
}

.site-search-overlay__header h3 {
    font-size: 20px;
    letter-spacing: 0.01em;
    margin: 0;
}

.site-search-overlay__close {
    background: transparent;
    border: 0;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: var(--text-dark);
}

.site-search-form {
    display: grid;
    gap: 12px;
}

.site-search-label {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-mid);
}

.site-search-input,
.site-search-form select,
.site-search-form input[type='number'] {
    font-size: 16px;
    width: 100%;
    min-height: 42px;
    border: 1px solid rgba(42, 31, 24, 0.14);
    border-radius: 10px;
    padding: 0 12px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #fff;
    color: var(--text-dark);
}

.site-search-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: 1fr 1fr 1fr;
}

.site-search-field {
    display: grid;
    gap: 6px;
}

.site-search-field label {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-mid);
}

.site-search-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.site-search-actions .btn {
    width: auto;
    border-radius: 999px;
    min-width: 150px;
    padding: 10px 18px;
    max-width: none;
}

.site-search-hint {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
    color: var(--text-mid);
    margin-top: 4px;
}

.search-link {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}

#openSearchBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.site-search-input,
.site-search-form select,
.site-search-form input[type='number'] {
    touch-action: manipulation;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

@media (max-width: 640px) {
    .site-search-overlay__panel {
        padding: 16px 14px;
    }

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

    .site-search-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .site-search-actions .btn {
        width: 100%;
        justify-content: center;
    }
}


.logo {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(22px, 3.5vw, 30px);
    font-weight: 400;
    letter-spacing: 0.2em;
    text-decoration: none;
    z-index: 1001;
}


.logo::after {
    display: none;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 3.5px;
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.mobile-menu-btn span {
    width: 16px;
    height: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    display: block;
}


/* Desktop: same layout as mobile — hamburger, logo, icons. Single row. */
@media (min-width: 1024px) {
    .nav-container nav.container {
        padding: 0 clamp(32px, 4vw, 56px);
        min-height: 68px;
    }

    nav .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-size: 28px;
        font-weight: 400;
        letter-spacing: 0.14em;
    }


    .mobile-menu-btn {
        display: flex;
    }

    nav .nav-icons {
        gap: 28px;
    }
}

@media (max-width: 1023px) {
    .nav-container nav.container {
        display: flex;
        align-items: center;
        position: relative;
        min-height: 56px;
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .nav-icons {
        display: flex;
        gap: 16px;
        align-items: center;
    }
}

/* Nav Overlay — Dior style, full screen white */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: #fff;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 520px;
    padding: 0 clamp(24px, 5vw, 48px);
}

.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 68px;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: #000;
    padding: 8px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.mobile-nav-close:hover {
    opacity: 0.4;
}

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-top: clamp(32px, 6vh, 60px);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-nav-links li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-nav-links li:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-nav-links a {
    display: block;
    padding: 22px 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(22px, 3.5vw, 32px);
    font-weight: 300;
    letter-spacing: 0.06em;
    color: #000;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.mobile-nav-links a:hover {
    opacity: 0.4;
}

/* Mobile currency selector inside hamburger menu */
.mobile-nav-currency {
    margin-top: auto;
    padding: 28px 0 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.mobile-nav-currency-label {
    display: block;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 14px;
    font-weight: 500;
}
.mobile-nav-currency-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.mobile-nav-currency-options button {
    background: #f8f8f8;
    border: 1.5px solid transparent;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.22,1,0.36,1);
    border-radius: 10px;
    color: #888;
}
.mobile-nav-currency-options button:hover {
    border-color: #000;
    color: #000;
    background: #fff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.mobile-nav-currency-options button.active {
    background: #000;
    color: #fff;
    border-color: #000;
    box-shadow: 0 3px 12px rgba(0,0,0,0.2);
}

.nav-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.1;
    fill: none;
    transition: opacity 0.2s ease;
    display: block;
}

.nav-icons a:hover .nav-icon {
    opacity: 0.5;
}

/* Cart Count Badge */
.cart-link {
    position: relative;
    display: inline-flex;
}

.cart-count {
    position: absolute;
    bottom: -5px;
    right: -7px;
    font-size: 9px;
    font-weight: 600;
    min-width: 15px;
    height: 15px;
    border-radius: 999px;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0;
    line-height: 1;
}

/* cart-count colors handled by .nav-container state rules above */

.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: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 500;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    background: #000;
    color: #fff;
    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: #000;
    color: #fff;
    border: 2px solid #000;
    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: #fff;
}

.btn-primary:active,
.btn-primary:focus-visible {
    background: #000;
    color: #fff;
}

.btn-primary:active span,
.btn-primary:focus-visible span {
    color: #fff;
}

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

.btn-secondary {
    background: #000;
    color: #fff;
    border: 2px solid #000;
    box-shadow: none;
    font-weight: 500;
    letter-spacing: 0.25em;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: #fff;
    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: #000;
}

.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;
    min-height: 100vh;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}

@media (max-width: 767px) {
    .hero { min-height: 100svh; }
}

.hero::before { display: none; }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 24px;
}

/* Old hero element styles removed — new hero uses hero-brand, hero-tagline, hero-cta-link */

/* Old hero CTA styles removed */

/* Page Hero */
.page-hero {
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    background:
        radial-gradient(circle at 16% -10%, rgba(201, 165, 93, 0.16), transparent 48%),
        radial-gradient(circle at 84% 18%, rgba(201, 165, 93, 0.06), transparent 45%),
        linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 55%);
    opacity: 0.9;
    pointer-events: none;
}

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

.page-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: clamp(32px, 6vw, 56px);
    letter-spacing: 0.01em;
    font-weight: 600;
    text-transform: none;
    position: relative;
    display: inline-block;
    line-height: 1.15;
}

.page-title::after {
    content: '';
    display: block;
    width: 74px;
    height: 1px;
    margin: 16px auto 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.collections-page {
    background: #fff;
}

.collections-page .page-hero,
.collections-page .filters-section,
.collections-page .products-section,
.collections-page .cta-section {
    background: #fff;
}

.collections-page .page-hero::before,
.collections-page .cta-section::before {
    content: none;
}

.collections-page .product-card,
.collections-page .product-info {
    background: #fff;
}

.page-description {
    max-width: 650px;
    margin: 0 auto;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--text-mid);
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: 0.005em;
}

/* Filters Section */
.filters-section {
    padding: clamp(28px, 5vw, 48px) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
    border-bottom: 1px solid rgba(201, 165, 93, 0.2);
    position: relative;
}

.filters-section::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 165, 93, 0.4), transparent);
}

.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: 14px;
    border: 1px solid rgba(106, 87, 73, 0.26);
    border-radius: 2px;
    background: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    font-weight: 500;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 244, 0.96));
}

@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-dark);
    box-shadow: 0 2px 12px rgba(201, 165, 93, 0.14);
}

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

/* Products Grid */
.products-section {
    padding: clamp(40px, 6vw, 60px) 0;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 35%, var(--white) 100%);
}

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

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

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

.product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    transition: opacity 0.3s ease;
    border: none;
    box-shadow: none;
    position: relative;
    align-items: stretch;
}

.product-card::before { display: none; }

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

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

.product-image-wrapper {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
    flex: 0 0 auto;
    width: 100%;
    line-height: 0;
    min-height: 0;
}

@supports not (aspect-ratio: 3 / 4) {
    .product-image-wrapper {
        height: 0;
        padding-top: 133.333%;
    }
}

.product-image-wrapper::before,
.product-image-wrapper::after { display: none; }

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

.product-card:active .product-image {
    transform: scale(1.05);
}

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



.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: 14px 0 0;
    text-align: left;
    background: transparent;
    position: relative;
    border: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
    min-height: 90px;
}

.product-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 72px;
}

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

.product-name {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(13px, 1.8vw, 15px);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--text-dark);
    margin: 0;
    min-height: 2.4em;
    max-height: 2.4em;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
    font-weight: 400;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card:hover .product-name {
    color: var(--text-dark);
}

.product-category {
    font-family: "Inter", "Helvetica Neue", sans-serif;
    font-size: clamp(9px, 1.1vw, 10px);
    color: var(--text-light, #A09A93);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 400;
    margin: 0;
    min-height: 1.2em;
    max-height: 1.2em;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.product-price {
    font-family: "Inter", "Helvetica Neue", sans-serif;
    font-size: clamp(13px, 1.8vw, 15px);
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: 0.04em;
    margin: 0;
    min-height: 1.35em;
    line-height: 1.3;
    transition: all 0.3s ease;
}

@media (max-width: 640px) {
    .products-section {
        padding-top: 28px;
        padding-bottom: 36px;
    }

    .product-card {
        border-radius: 0;
    }

    .product-info {
        padding: 10px 0 0;
        min-height: 80px;
        gap: 0;
    }

    .product-meta {
        min-height: 60px;
        gap: 4px;
    }

    .product-name {
        font-size: 14px;
        line-height: 1.25;
        min-height: 2.5em;
        max-height: 2.5em;
    }

    .product-price {
        font-size: 14px;
    }

    .product-category,
    .product-price {
        line-height: 1.25;
    }

    .product-info::before {
        top: 8px;
        width: 24px;
    }
}

.product-card:hover .product-price {
    color: var(--text-dark);
}

#products-infinite-sentinel {
    width: 100%;
    height: 1px;
    margin-top: 20px;
}

.load-more-container,
.load-more-btn {
    display: none !important;
}

/* 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 */
/* Breadcrumb */
.product-breadcrumb {
    font-size: 11px;
    color: #111;
    letter-spacing: 0.01em;
    margin: 0;
    padding: 6px 16px;
    padding-top: calc(var(--nav-height, 56px) + 6px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    flex-wrap: wrap;
    background: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    position: relative;
    z-index: 1;
}
@media (min-width: 768px) {
    .product-breadcrumb { padding: 6px 24px; padding-top: calc(var(--nav-height, 64px) + 6px); }
}
.product-breadcrumb span:last-child { color: #111; font-weight: 500; }
.product-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.15s;
}
.product-breadcrumb a:hover { color: #111; }
.product-breadcrumb .bc-sep { color: #999; font-size: 10px; margin: 0 6px; }

/* Product page color swatches */
.pd-colors {
    padding: 16px 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    margin-bottom: 0;
}
.pd-colors-label {
    font-size: 12px;
    color: #666;
    display: block;
    margin-bottom: 10px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}
.pd-colors-row {
    display: flex;
    gap: 10px;
    align-items: center;
}
.pd-color-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
}
.pd-color-swatch:hover {
    transform: scale(1.1);
}
.pd-color-swatch.active {
    border-color: #111;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1), 0 0 0 2px #fff, 0 0 0 3px #111;
}

/* Variant thumbnails (auto-linked via subcollection) */
.pd-variant-thumb {
    width: 48px;
    height: 64px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
    display: block;
    flex-shrink: 0;
}
.pd-variant-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pd-variant-thumb:hover {
    border-color: #999;
}
.pd-variant-thumb.active {
    border-color: #111;
}

.product-detail-section {
    padding: 0;
    background: #ffffff;
    min-height: auto;
    width: 100%;
    position: relative;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
}

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

@media (max-width: 767px) {
    .product-detail-section {
        width: 100%;
        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: #ffffff;
    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: #ffffff;
}

.product-images {
    padding-top: var(--nav-height, 64px);
}

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

@media (min-width: 768px) {
    .product-images {
        min-height: 100vh;
        position: sticky;
        top: 0;
        background: #fafafa;
        width: 100%;
        flex-direction: row;
    }
    /* Vertical thumbnail strip on desktop */
    .product-images .thumbnail-gallery {
        display: flex;
        flex-direction: column;
        gap: 8px;
        width: 72px;
        min-width: 72px;
        padding: 12px 8px;
        order: -1;
        overflow-y: auto;
        max-height: 100vh;
        scrollbar-width: none;
    }
    .product-images .thumbnail-gallery::-webkit-scrollbar { display: none; }
    .product-images .thumbnail-gallery .thumbnail {
        width: 100%;
        aspect-ratio: 3/4;
    }
    .product-images .main-image-container {
        flex: 1;
    }
}

@media (min-width: 1024px) {
    .product-images {
        min-height: 100vh;
        position: sticky;
        top: 0;
    }
    .product-images .thumbnail-gallery {
        width: 80px;
        min-width: 80px;
        gap: 10px;
        padding: 16px 10px;
    }
}

.product-detail-info {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    padding: 20px 20px;
    min-height: auto;
    justify-content: center;
    background: #ffffff;
}

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

@media (min-width: 600px) {
    .product-detail-info {
        padding: 28px 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: 100vh;
        justify-content: center;
        max-width: 100%;
    }
}

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

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

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

@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 {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    .main-image-container {
        width: 100%;
    }

    .main-image-container {
        height: 75vh;
        min-height: 75vh;
        max-height: 75vh;
    }
}

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

@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: none;
    display: block;
}

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

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

/* ===== LV-STYLE HORIZONTAL CAROUSEL ===== */
.pd-carousel {
    width: 100%;
    max-width: 100vw;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background: #fff;
}
.pd-carousel::-webkit-scrollbar { display: none; }

.pd-carousel-track {
    display: flex;
    width: 100%;
}

.pd-carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}

.pd-carousel-slide img {
    width: 100%;
    height: 75vh;
    object-fit: cover;
    display: block;
    pointer-events: none;
    -webkit-user-drag: none;
}

@media (min-width: 768px) {
    .pd-carousel-slide img {
        height: 100vh;
        min-height: 600px;
    }
}

@media (max-width: 767px) {
    .pd-carousel-slide img {
        height: 75vh;
        min-height: 400px;
        max-height: 75vh;
    }
}

/* Hide legacy arrows */
.image-nav { display: none !important; }

.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;
}

.thumbnail.active,
.thumbnail:hover {
    opacity: 1;
    border-color: #111;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transform: scale(1.02);
}

.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: 14px;
    }
}

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

.product-title {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
    line-height: 1.2;
    font-weight: 400;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

@media (min-width: 768px) {
    .product-title {
        font-size: 22px;
        margin-bottom: 8px;
    }
}

@media (min-width: 1024px) {
    .product-title {
        font-size: 24px;
        margin-bottom: 8px;
    }
}

.product-subtitle {
    font-size: 10px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    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: 15px;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0;
    font-weight: 400;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    white-space: nowrap;
    line-height: 1.4;
}

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

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

.price-amount {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    white-space: nowrap;
    line-height: 1.4;
}

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

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

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

@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-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;
}

@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: 1.5px solid rgba(0, 0, 0, 0.15);
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: "Helvetica Neue", Helvetica, Arial, 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: #111;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0;
    z-index: -1;
}

.size-btn.selected,
.size-btn:hover {
    border-color: #111;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.size-btn.selected {
    background: #111;
    border-color: #111;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.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(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #333;
}

.inventory-status.low-stock {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #333;
}

.inventory-status.out-of-stock {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    color: #333;
}

.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: 1px;
    background: #111;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.size-guide-link:hover {
    color: #111;
}

.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: "Helvetica Neue", Helvetica, Arial, sans-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: calc(var(--nav-height, 72px) + clamp(24px, 4vh, 48px)) 0 clamp(40px, 6vh, 80px);
    min-height: 60vh;
    background: #f8f8f8;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    position: relative;
}

.cart-section .page-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(22px, 5vw, 28px);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #000;
    text-transform: none;
    margin: 0 0 8px;
}

.cart-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
    margin-top: 24px;
}

@media (min-width: 1024px) {
    .cart-content {
        grid-template-columns: 1.15fr 0.85fr;
        align-items: start;
    }
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 14px;
    padding: 16px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    position: relative;
    min-width: 0;
    align-items: center;
}

@media (min-width: 768px) {
    .cart-item {
        grid-template-columns: 100px 1fr auto auto;
        align-items: center;
        padding: 18px 20px;
    }
}

.cart-item-image {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.06);
    background: #f5f5f5;
}

.cart-item-image img {
    width: 100%;
    height: 104px;
    object-fit: cover;
    display: block;
}

.cart-item-placeholder {
    width: 100%;
    height: 104px;
    background: #f0f0f0;
}

@media (min-width: 768px) {
    .cart-item-image img {
        height: 130px;
    }

    .cart-item-placeholder {
        height: 130px;
    }
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.cart-item-name {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    letter-spacing: 0;
    line-height: 1.35;
    word-break: break-word;
}

.cart-item-meta {
    font-size: 12px;
    color: #737373;
    letter-spacing: 0;
    text-transform: none;
}

.cart-item-price {
    font-size: 14px;
    color: #000;
    font-weight: 600;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: 0;
    min-width: 0;
    white-space: nowrap;
}

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

.cart-item-actions {
    display: none;
}

@media (min-width: 768px) {
    .cart-item-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
        justify-self: end;
    }
}

.cart-item-actions-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    grid-column: 1 / -1;
}

@media (min-width: 768px) {
    .cart-item-actions-mobile {
        display: none;
    }
}

.quantity-selector {
    display: inline-flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(0,0,0,0.12);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    background: none;
    border: none;
    font-size: 15px;
    color: #000;
    cursor: pointer;
    padding: 8px 12px;
    transition: background 0.15s;
    min-width: 36px;
    text-align: center;
}

.qty-btn:hover {
    background: rgba(0,0,0,0.05);
}

.qty-value {
    font-size: 13px;
    min-width: 32px;
    text-align: center;
    font-weight: 500;
    border-left: 1px solid rgba(0,0,0,0.08);
    border-right: 1px solid rgba(0,0,0,0.08);
    padding: 8px 0;
}

.remove-btn {
    background: none;
    border: none;
    color: #737373;
    cursor: pointer;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s;
    padding: 6px 8px;
    border-radius: 6px;
    text-align: center;
    letter-spacing: 0;
    text-transform: none;
}

.remove-btn:hover {
    color: #DC2626;
    background: rgba(220, 38, 38, 0.06);
}

.remove-btn svg {
    stroke: currentColor;
    transition: stroke 0.2s;
    width: 16px;
    height: 16px;
}

/* Cart Summary */
.cart-summary {
    background: #fff;
    padding: clamp(20px, 4vw, 28px);
    position: sticky;
    top: 96px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
}

.summary-title {
    font-size: 13px;
    font-weight: 600;
    color: #000;
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    letter-spacing: 0.02em;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    text-transform: uppercase;
}

.summary-divider {
    height: 1px;
    background: rgba(0,0,0,0.06);
    margin: 4px 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
    color: #525252;
    letter-spacing: 0;
}

.summary-row.summary-total {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    padding: 12px 0 4px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: 0;
    border-top: 1px solid rgba(0,0,0,0.08);
    margin-top: 4px;
    text-transform: none;
}

.free-shipping {
    color: #000;
    font-weight: 400;
}

.continue-shopping {
    display: block;
    text-align: center;
    margin-top: 12px;
    color: #737373;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0;
    transition: color 0.2s;
    text-transform: none;
}

.continue-shopping:hover {
    color: #000;
}

.cart-section .btn-primary,
.go-checkout-btn,
.go-checkout-btn:link,
.go-checkout-btn:visited,
.go-checkout-btn:hover,
.go-checkout-btn:active,
.go-checkout-btn:focus,
.go-checkout-btn:focus-visible {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-transform: none;
    cursor: pointer;
    transition: opacity 0.15s;
    box-shadow: none;
    transform: none;
}

.cart-section .btn-primary:hover,
.go-checkout-btn:hover {
    opacity: 0.85;
    transform: none;
    box-shadow: none;
}

.go-checkout-btn span {
    color: #fff;
}

.go-checkout-btn::before,
.go-checkout-btn::after {
    display: none;
}

/* Empty Cart */
.empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(60px, 8vh, 120px) 20px;
    text-align: center;
    min-height: 50vh;
}

.empty-cart svg {
    stroke: #b5b5b5;
    opacity: 0.5;
    margin-bottom: 24px;
    width: 80px;
    height: 80px;
}

.empty-cart h2 {
    color: #000;
    margin-bottom: 10px;
    font-size: clamp(20px, 4vw, 26px);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.empty-cart p {
    color: #737373;
    margin-bottom: 24px;
    font-size: 14px;
}

/* Checkout Page */
.checkout-page {
    --checkout-bg: #ffffff;
    --checkout-text: #0b0b0b;
    --checkout-muted: #666;
    --checkout-line: #ece6dc;
    --checkout-gold-soft: #f0e6d6;
    --checkout-input-bg: #ffffff;
    --checkout-error: #b42318;
}

.checkout-page,
.checkout-page * {
    box-sizing: border-box;
}

.checkout-section {
    background: var(--checkout-bg);
    color: var(--checkout-text);
    padding: calc(clamp(18px, 4vw, 28px) + var(--nav-height, 72px)) 0 110px;
}

.checkout-section :where(h1, h2, h3, h4, h5, h6, p, label, span, input, select, textarea, a) {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: var(--checkout-text);
    letter-spacing: 0;
}

.checkout-shell {
    width: min(100%, 1080px);
    margin: 0 auto;
}

.checkout-main-title {
    font-size: clamp(30px, 7.6vw, 40px);
    font-weight: 300;
    margin: 0 0 8px;
    line-height: 1.05;
}

.checkout-page-subtitle {
    margin: 0 0 14px;
    color: var(--checkout-muted);
    font-size: clamp(14px, 3.6vw, 16px);
    line-height: 1.45;
}

.checkout-summary-toggle {
    width: 100%;
    border: 1px solid var(--checkout-line);
    border-radius: 12px;
    background: #fff;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 12px;
    cursor: pointer;
    min-height: 56px;
}

.checkout-summary-toggle:focus-visible {
    outline: 2px solid var(--checkout-text);
    outline-offset: 2px;
}

.checkout-summary-toggle-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}

.checkout-summary-caret::after {
    content: "▾";
    font-size: 14px;
    color: var(--checkout-text);
    transition: transform 0.2s ease;
    display: inline-block;
}

.checkout-summary-toggle[aria-expanded="true"] .checkout-summary-caret::after {
    transform: rotate(180deg);
}

.checkout-summary-toggle-total {
    font-weight: 500;
    white-space: nowrap;
    color: var(--checkout-text);
}

.checkout-summary-panel {
    border: 1px solid var(--checkout-line);
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px;
    background: #fff;
    border-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.checkout-summary-panel[hidden] {
    display: none;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(14px, 3.8vw, 24px);
}

.checkout-main-content {
    padding-bottom: calc(132px + env(safe-area-inset-bottom));
}

.checkout-form {
    background: #fff;
    border: 1px solid var(--checkout-line);
    border-radius: 14px;
    padding: 14px;
}

.checkout-form #checkoutForm {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkout-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--checkout-line);
}

.checkout-block:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
}

.checkout-block-title {
    font-size: 18px;
    margin: 0;
    line-height: 1.2;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    min-height: 52px;
    border: 1px solid #d9d9d9;
    border-radius: 12px;
    background: var(--checkout-input-bg);
    color: var(--checkout-text);
    padding: 0 14px;
    font-size: 15px;
    line-height: 1.2;
}

.form-group textarea {
    min-height: 110px;
    padding-top: 12px;
    padding-bottom: 12px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #9c9c9c;
}

.form-group input:focus-visible,
.form-group select:focus-visible,
.form-group textarea:focus-visible {
    outline: 2px solid var(--checkout-text);
    outline-offset: 1px;
    border-color: var(--checkout-text);
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: var(--checkout-error);
}

.form-group.has-error .field-error {
    display: block;
    color: var(--checkout-error);
    font-size: 12px;
    margin-top: 2px;
    min-height: 18px;
}

.field-error {
    min-height: 18px;
    font-size: 12px;
    margin: 0;
    color: transparent;
}

.payment-note {
    margin: 0;
    font-size: 14px;
    color: #5f5f5f;
    line-height: 1.45;
}

.checkout-trust-row {
    margin-top: 2px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.checkout-payment-block {
    gap: 14px;
}

.checkout-payment-card {
    border: 1px solid var(--checkout-line);
    border-radius: 14px;
    background: #faf9f7;
    padding: clamp(16px, 4vw, 22px);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkout-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #ddd4c8;
    border-radius: 999px;
    padding: 8px 12px;
    background: #fff;
}

.trust-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 16px;
    height: 16px;
}

.trust-icon-lock {
    color: #111;
}

.trust-icon-stripe {
    color: #635bff;
}

.trust-icon-stripe svg rect {
    fill: currentColor;
}

.trust-text {
    font-size: 12px;
    color: #6f6f6f;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.checkout-payment-actions {
    margin-top: 2px;
}

.checkout-desktop-actions {
    display: none;
    margin-top: 2px;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.checkout-section .btn {
    border-radius: 12px;
    min-height: 52px;
    border: 1px solid transparent;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.15s ease, background-color 0.15s ease;
    font-weight: 600;
    min-width: 180px;
    width: 100%;
    font-size: 15px;
    cursor: pointer;
    color: #fff;
}

.checkout-section .btn:focus-visible {
    outline: 2px solid var(--checkout-text);
    outline-offset: 2px;
}

.checkout-section .btn-primary {
    background: #2563EB;
    color: #fff;
    border-color: #2563EB;
}

.checkout-section .btn-primary:hover {
    background: #1D4ED8;
    border-color: #1D4ED8;
    transform: translateY(-1px);
}

.checkout-section .btn-primary:active,
.checkout-section .btn-primary:focus-visible {
    background: #1D4ED8;
    border-color: #1D4ED8;
}

.checkout-section .btn-primary span {
    color: #fff;
}

.checkout-section .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.checkout-section .btn-secondary {
    background: #fff;
    color: #111;
    border-color: #d1d1d1;
}

.order-summary-sidebar {
    display: none;
}

.summary-title {
    margin: 0 0 10px;
    font-size: 21px;
    font-weight: 400;
}

.order-summary-content,
.checkout-summary-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-item {
    display: grid;
    grid-template-columns: 64px 1fr auto;
    gap: 10px;
    align-items: start;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--checkout-line);
}

.summary-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.summary-item-image {
    width: 64px;
    height: 84px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #ebe2d5;
    background: #faf4ea;
}

.summary-item-details h4 {
    font-size: 15px;
    margin: 0 0 4px;
    font-weight: 500;
    line-height: 1.3;
}

.summary-item-details p {
    font-size: 13px;
    color: #5f5f5f;
    margin: 0;
    line-height: 1.35;
}

.summary-item-price {
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    text-align: right;
}

.summary-totals {
    margin-top: 10px;
    border-top: 1px solid var(--checkout-line);
    padding-top: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid #f1ece5;
}

.summary-row:last-child {
    border-bottom: 0;
}

.summary-row.summary-total {
    border-top: 1px solid #ece6dc;
    margin-top: 2px;
    font-size: 18px;
    font-weight: 600;
}

.summary-divider {
    display: none;
}

.summary-row.summary-shipping {
    border-bottom: 0;
}

.form-submit-alert {
    color: var(--checkout-error);
    font-size: 14px;
    min-height: 22px;
}

.checkout-shipping-note {
    color: #6a6a6a;
}

.checkout-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 70;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    border-top: 1px solid var(--checkout-line);
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.06);
    padding: 12px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.checkout-sticky-total {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 2px;
}

.checkout-sticky-total span {
    font-size: 12px;
    color: #6b6b6b;
}

.checkout-sticky-total strong {
    font-size: 20px;
    font-weight: 600;
}

@media (min-width: 768px) {
    .checkout-main-content {
        padding-bottom: 0;
    }

    .checkout-shell {
        width: min(100%, 1100px);
    }

    .checkout-summary-toggle,
    .checkout-summary-panel {
        display: none;
    }

    .checkout-grid {
        grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
        align-items: start;
    }

    .checkout-form {
        padding: 18px;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .order-summary-sidebar {
        display: block;
        border: 1px solid var(--checkout-line);
        border-radius: 14px;
        padding: 16px;
        position: sticky;
        top: 96px;
        background: #fff;
    }

    .checkout-desktop-actions {
        display: flex;
    }

    .checkout-desktop-actions .btn {
        width: auto;
    }

    .checkout-payment-actions .btn {
        width: auto;
        min-width: 260px;
    }

    .checkout-sticky-bar {
        position: static;
        border-top: 0;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin-top: 6px;
        justify-content: flex-end;
    }

    .checkout-section {
        padding-bottom: 28px;
    }
}

/* Account Page */
.account-section {
    padding: var(--spacing-2xl) 0;
    background: radial-gradient(circle at top, rgba(248, 242, 235, 0.95) 0%, rgba(255, 255, 255, 0.98) 55%, rgba(245, 239, 231, 0.92) 100%);
}

.account-section .btn {
    border-radius: 6px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.account-section .btn-primary {
    background: linear-gradient(135deg, #f3e7d7 0%, #e9d8c2 100%);
    color: #4b3a2f;
    border: 1px solid rgba(170, 142, 110, 0.45);
    box-shadow: 0 10px 26px rgba(91, 74, 60, 0.18);
}

.account-section .btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(91, 74, 60, 0.22);
}

.account-section .btn-secondary {
    background: transparent;
    border-color: rgba(170, 142, 110, 0.45);
    color: #4b3a2f;
}

.account-section .btn-secondary:hover {
    background: rgba(233, 216, 194, 0.35);
}

.account-section .btn-link {
    color: rgba(91, 74, 60, 0.8);
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.account-section .btn-link::after {
    background: rgba(170, 142, 110, 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, 255, 255, 0.98) 0%, rgba(247, 241, 234, 0.96) 100%);
    padding: var(--spacing-xl);
    border: 1px solid rgba(170, 142, 110, 0.22);
    box-shadow: 0 18px 50px rgba(91, 74, 60, 0.12);
}

.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: var(--text-dark);
    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(170, 142, 110, 0.6);
    color: var(--text-dark);
}

.account-nav-item.active {
    background: rgba(233, 216, 194, 0.55);
    border-left-color: rgba(170, 142, 110, 0.9);
    color: var(--text-dark);
    font-weight: 500;
}

.account-nav-item.special {
    margin-top: var(--spacing-lg);
    background: linear-gradient(135deg, #e9d8c2 0%, #d9c1a3 100%);
    color: var(--white);
    border-left: none;
    text-align: center;
    justify-content: center;
    letter-spacing: 0.16em;
}

.account-nav-item.special:hover {
    background: linear-gradient(135deg, #d9c1a3 0%, #e9d8c2 100%);
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(91, 74, 60, 0.18);
}

.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: "Helvetica Neue", Helvetica, Arial, sans-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: "Helvetica Neue", Helvetica, Arial, sans-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);
}

.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: "Helvetica Neue", Helvetica, Arial, sans-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: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    border-radius: 8px;
    margin-top: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
}

.auth-card {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: var(--spacing-2xl);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.auth-card h2 {
    font-size: clamp(24px, 5vw, 32px);
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.05em;
}

.auth-card p {
    color: var(--text-muted);
    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: var(--text-dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.auth-form input {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-md);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.auth-form input::placeholder {
    color: var(--text-muted);
}

.auth-form input:focus {
    outline: none;
    border-color: var(--text-dark);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
    background: var(--white);
}

.auth-form .btn {
    width: 100%;
}

/* 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: #16A34A;
    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;
    }
}

/* Footer */
footer {
    background: linear-gradient(180deg, var(--gray-900) 0%, var(--black) 100%);
    color: var(--white);
    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%, var(--gray-600) 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: center;
}

@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(--white);
    margin-bottom: 18px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .footer-section h4 { font-size: 15px; }
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-links a:active {
    color: var(--white);
    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-300);
    fill: none;
    transition: all 0.3s ease;
}

.social-icon:hover,
.social-icon:active {
    stroke: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
    color: var(--gray-400);
    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 */
.page-transition {
    animation: fadeInPage 0.5s ease;
}

@keyframes fadeInPage {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 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);
}

.auth-container {
    width: 100%;
    max-width: 450px;
}

.btn-add-to-cart {
    background: #111;
    color: #fff;
    padding: 0 24px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: none;
    transition: opacity 0.15s;
    height: 46px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
}
.btn-add-to-cart .btn-label { flex: 1; text-align: left; }
.btn-add-to-cart .btn-price { font-size: 15px; font-weight: 500; }

.btn-whatsapp-ask {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 46px;
    border: 1px solid #111;
    border-radius: 50px;
    background: #fff;
    color: #111;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
.btn-whatsapp-ask:hover { background: #f5f5f5; }
.btn-add-to-cart:hover,
.btn-add-to-cart:active {
    background: #111 !important;
    transform: none !important;
    opacity: 1 !important;
    box-shadow: none !important;
}

.product-detail-section .product-price-detail {
    display: flex;
    margin-bottom: 24px;
    padding-bottom: 0;
    border-bottom: none;
}
.product-detail-section .price-amount {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: #111;
}

/* ===== LV-STYLE PRODUCT PAGE ===== */
/* Image indicator lines */
.pd-img-indicators {
    display: flex;
    justify-content: center;
    padding: 14px 0;
    background: #fff;
}
.pd-img-indicators-track {
    position: relative;
    width: 100%;
    height: 2.5px;
    background: rgba(0,0,0,0.08);
    border-radius: 0;
    overflow: hidden;
}
.pd-img-indicators {
    padding: 0;
    margin-top: -1px;
}
.pd-img-indicators-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #1d1d1f;
    border-radius: 2px;
    transition: left 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: left;
}
/* Legacy pill indicators hidden */
.pd-img-indicators .pd-indicator { display: none; }

/* Fix white gap between header and image */
.product-page .product-images {
    padding-top: 0 !important;
    margin-top: 0;
}
.product-page .product-detail-section {
    margin-top: 0;
    padding-top: 0;
}

/* Reduce white space between image and SKU */
.product-detail-section .product-detail-info {
    padding-top: 16px;
}
@media (min-width: 768px) {
    .product-detail-section .product-detail-info {
        padding-top: 40px;
    }
}

/* More space between price and sizes row */
.product-detail-section .product-price-detail {
    margin-bottom: 28px;
}

/* Size guide link — black, not gray */
.pd-size-guide-link {
    color: #111;
}

/* Terms box */
.pd-terms {
    margin-top: 16px;
    margin-bottom: 8px;
}
.pd-terms-box {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 16px;
}
.pd-terms-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: #666;
    line-height: 1.5;
    cursor: pointer;
}
.pd-terms-check {
    margin-top: 2px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: #111;
}

/* Sticky purchase bar */
.pd-sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    transform: translateY(-100%);
    transition: transform 0.2s ease-out;
    padding: 10px 16px;
    will-change: transform;
}
.pd-sticky-bar.visible {
    transform: translateY(0);
}
.pd-sticky-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 600px;
    margin: 0 auto;
    gap: 12px;
}
.pd-sticky-info {
    flex: 1;
    min-width: 0;
}
.pd-sticky-name {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pd-sticky-price {
    font-size: 12px;
    color: #666;
}
.pd-sticky-btn {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    font-family: inherit;
    transition: background 0.2s;
}
.pd-sticky-btn:hover, .pd-sticky-btn:active { background: #111; opacity: 1; transform: none !important; box-shadow: none !important; }

/* Header hide/show on scroll */
.product-page .nav-container {
    transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
    will-change: transform;
}
.product-page .nav-container.header-hidden {
    transform: translateY(-100%);
}

/* Size row (LV-style clickable) */
.pd-size-row {
    display: flex;
    align-items: center;
    padding: 18px 0;
    cursor: pointer;
    transition: opacity 0.2s;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.pd-size-row:hover { opacity: 0.6; }
.pd-size-label {
    font-size: 14px;
    font-weight: 400;
    color: #111;
    flex: 1;
}
.pd-size-value {
    font-size: 14px;
    color: #666;
    margin-right: 8px;
}
.pd-size-row svg { color: #999; }
.pd-divider { height: 1px; background: rgba(0,0,0,0.08); }

/* Dior-style inline size buttons */
.pd-sizes-inline {
    padding: 20px 0 16px;
    max-width: 100%;
}
.pd-sizes-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 14px;
}
/* Size scroll indicator bar */
.pd-sizes-indicator {
    position: relative;
    width: 100%;
    height: 2px;
    background: rgba(0,0,0,0.06);
    border-radius: 1px;
    margin-top: 12px;
    overflow: hidden;
}
.pd-sizes-indicator-bar {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    background: #1a1a1a;
    border-radius: 1px;
    will-change: transform;
}
.pd-sizes-grid {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0;
    max-width: 100%;
    touch-action: pan-x;
    mask-image: linear-gradient(to right, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
}
.pd-sizes-grid.scrolled-end {
    mask-image: linear-gradient(to left, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, black 85%, transparent 100%);
}
.pd-sizes-grid.scrolled-mid {
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 85%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 85%, transparent 100%);
}
.pd-sizes-grid::-webkit-scrollbar { display: none; }
.pd-size-inline-btn {
    min-width: 68px;
    height: 52px;
    padding: 0 20px;
    flex-shrink: 0;
    border: 1px solid #d5d5d5;
    border-radius: 6px;
    background: #fff;
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 400;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    cursor: pointer;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pd-size-inline-btn:hover {
    border-color: #1a1a1a;
}
.pd-size-inline-btn.active {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
}
.pd-size-inline-btn.out-of-stock {
    color: #ccc;
    border-color: #e5e5e5;
    background: #f5f5f5;
    cursor: not-allowed;
    text-decoration: line-through;
}
/* When out of stock is auto-selected (only size), show gray not black */
.pd-size-inline-btn.out-of-stock.active {
    background: #e5e5e5;
    color: #999;
    border-color: #d5d5d5;
}
.pd-size-guide-link {
    display: inline-block;
    font-size: 13px;
    color: #111;
    text-decoration: underline;
    text-underline-offset: 3px;
    padding: 16px 0;
    transition: opacity 0.2s;
}
.pd-size-guide-link:hover { opacity: 0.6; }

/* Bottom sheet overlay */
.pd-sheet-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.4);
    align-items: flex-end;
    justify-content: center;
}
.pd-sheet-overlay.open { display: flex; }
.pd-sheet {
    background: #fff;
    width: 100%;
    max-width: 500px;
    max-height: 60vh;
    border-radius: 16px 16px 0 0;
    padding: 24px;
    animation: pdSheetUp 0.3s cubic-bezier(0.22,1,0.36,1);
    overflow-y: auto;
}
.pd-sheet--tall { max-height: 80vh; }
@keyframes pdSheetUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}
.pd-sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.pd-sheet-title {
    font-size: 18px;
    font-weight: 400;
    color: #111;
}
.pd-sheet-close {
    background: none;
    border: none;
    cursor: pointer;
    color: #111;
    padding: 4px;
}

/* === Added to Cart confirmation sheet === */
.pd-cart-confirm {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    align-items: flex-start;
}
.pd-cart-confirm-img {
    width: 110px;
    height: 140px;
    flex-shrink: 0;
    background: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
}
.pd-cart-confirm-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pd-cart-confirm-info {
    flex: 1;
    min-width: 0;
}
.pd-cart-confirm-sku {
    font-size: 11px;
    color: #888;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}
.pd-cart-confirm-name {
    font-size: 15px;
    font-weight: 400;
    color: #111;
    line-height: 1.3;
    margin-bottom: 6px;
}
.pd-cart-confirm-size {
    font-size: 13px;
    color: #444;
    margin-bottom: 4px;
}
.pd-cart-confirm-price {
    font-size: 13px;
    color: #666;
    margin-top: 8px;
}
.pd-cart-confirm-actions {
    padding: 16px 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pd-cart-confirm-btn {
    display: block;
    width: 100%;
    padding: 16px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    letter-spacing: 0.01em;
    transition: none;
}
.pd-cart-confirm-btn:hover,
.pd-cart-confirm-btn:active {
    transform: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
}
.pd-cart-confirm-btn--primary {
    background: #111;
    color: #fff;
    border: none;
}
.pd-cart-confirm-btn--secondary {
    background: #fff;
    color: #111;
    border: 1px solid #111;
}

/* Size buttons inside sheet */
.pd-sheet .size-selector {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    gap: 10px;
}
.pd-sheet .size-btn {
    padding: 14px 8px;
    font-size: 14px;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 8px;
    background: #fff;
    color: #111;
    cursor: pointer;
    transition: all 0.15s;
    font-weight: 400;
    text-align: center;
    font-family: inherit;
    min-width: 0;
    transform: none;
    box-shadow: none;
}
.pd-sheet .size-btn:hover {
    border-color: #111;
    transform: none;
    box-shadow: none;
    color: #111;
    background: #fff;
}
.pd-sheet .size-btn.selected {
    border-color: #111;
    border-width: 2px;
    background: #fff;
    color: #111;
    font-weight: 500;
    transform: none;
    box-shadow: none;
}
.pd-sheet .size-btn.out-of-stock {
    color: #ccc;
    text-decoration: line-through;
    cursor: not-allowed;
}

/* Size guide */
.pd-sg-body { padding: 0 24px 28px; }
.pd-sg-tabs { display:flex;gap:0;border:1px solid #ddd;border-radius:8px;overflow:hidden;margin-bottom:20px }
.pd-sg-tab { flex:1;padding:10px;font-size:13px;font-weight:500;background:#fff;border:none;cursor:pointer;color:#666;font-family:inherit;transition:all 0.15s }
.pd-sg-tab+.pd-sg-tab { border-left:1px solid #ddd }
.pd-sg-tab.active { background:#111;color:#fff }
.pd-sg-sizes { display:flex;gap:8px;flex-wrap:wrap;margin-bottom:20px }
.pd-sg-size-chip { min-width:42px;padding:8px 10px;font-size:13px;font-weight:500;text-align:center;border:1px solid #ddd;border-radius:6px;cursor:pointer;color:#666;transition:all 0.15s;background:#fff }
.pd-sg-size-chip:hover { border-color:#111;color:#111 }
.pd-sg-size-chip.active { background:#111;color:#fff;border-color:#111 }
.pd-sg-unit-toggle { display:flex;gap:0;border:1px solid #ddd;border-radius:6px;overflow:hidden;margin-bottom:16px;width:fit-content }
.pd-sg-unit { padding:6px 16px;font-size:12px;font-weight:500;background:#fff;border:none;cursor:pointer;color:#666;font-family:inherit;transition:all 0.15s }
.pd-sg-unit+.pd-sg-unit { border-left:1px solid #ddd }
.pd-sg-unit.active { background:#f5f5f5;color:#111;font-weight:600 }
.pd-sg-table { width:100%;border-collapse:collapse;font-size:13px;border:1px solid #eee;border-radius:8px;overflow:hidden }
.pd-sg-table th { background:#f5f5f5;padding:12px 16px;font-weight:600;color:#333;text-align:left;text-transform:uppercase;font-size:11px;letter-spacing:0.05em }
.pd-sg-table td { padding:12px 16px;text-align:left;color:#444;border-bottom:1px solid rgba(0,0,0,0.06) }
.pd-sg-table td:first-child { font-weight:500;color:#111 }

/* Desktop: center the sheet as a modal */
@media (min-width: 768px) {
    .pd-sheet-overlay { align-items: center; }
    .pd-sheet { border-radius: 16px; max-height: 70vh; }
}

.pd-sku-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.pd-sku {
    font-size: 12px;
    color: #111;
    letter-spacing: 0.04em;
    font-weight: 400;
}
.pd-wishlist {
    background: none;
    border: none;
    cursor: pointer;
    color: #111;
    padding: 4px;
    transition: opacity 0.2s;
}
.pd-wishlist:hover { opacity: 0.5; }
.pd-wishlist.active { color: #111; }
.pd-wishlist.active svg { fill: #111; }

.pd-category {
    font-size: 11px;
    color: #999;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
    font-weight: 400;
}

/* Contact link */
.pd-contact {
    display: inline-block;
    font-size: 13px;
    color: #111;
    text-decoration: underline;
    text-underline-offset: 3px;
    margin-top: 20px;
    margin-bottom: 20px;
    transition: opacity 0.2s;
}
.pd-contact:hover { opacity: 0.6; }

/* Accordion sections */
.pd-accordions {
    border-top: 1px solid rgba(0,0,0,0.08);
    margin-top: 8px;
}
.pd-accordion {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.pd-accordion summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    font-size: 14px;
    font-weight: 400;
    color: #111;
    cursor: pointer;
    list-style: none;
    transition: opacity 0.2s;
}
.pd-accordion summary::-webkit-details-marker { display: none; }
.pd-accordion summary:hover { opacity: 0.6; }
.pd-acc-icon {
    font-size: 18px;
    color: #999;
    transition: transform 0.3s;
    font-weight: 300;
}
.pd-accordion[open] .pd-acc-icon { transform: rotate(90deg); }
.pd-acc-body {
    font-size: 13px;
    color: #666;
    line-height: 1.7;
    padding-bottom: 18px;
}

/* Related products */
.pd-related {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.pd-related-title {
    font-size: 14px;
    font-weight: 400;
    color: #111;
    margin-bottom: 20px;
    font-family: inherit;
    letter-spacing: 0;
}
.pd-related-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.pd-related-card {
    cursor: pointer;
    transition: opacity 0.2s;
}
.pd-related-card:hover { opacity: 0.8; }
.pd-related-card img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    margin-bottom: 10px;
    background: #f5f5f5;
}
.pd-related-card .pd-rel-name {
    font-size: 12px;
    color: #111;
    font-weight: 400;
    margin-bottom: 4px;
    line-height: 1.4;
}
.pd-related-card .pd-rel-price {
    font-size: 12px;
    color: #666;
}
@media (min-width: 768px) {
    .pd-related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-detail-section .btn-add-to-cart {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
}
.product-detail-section .btn-add-to-cart .btn-price { display: inline; font-size: 15px; font-weight: 500; }
.product-detail-section .btn-add-to-cart .btn-label { flex: 1; text-align: left; }
.product-detail-section .btn-quick-buy {
    width: 100%;
    border-radius: 50px !important;
    border: 1px solid #111 !important;
    background: #fff !important;
    color: #111;
    text-transform: none;
    letter-spacing: 0;
    font-size: 14px;
    min-height: 52px;
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    transition: opacity 0.15s;
    transform: none !important;
    box-shadow: none !important;
    gap: 0;
}
.product-detail-section .btn-quick-buy svg {
    height: 18px;
    width: auto;
    display: block;
    flex-shrink: 0;
}
.product-detail-section .btn-quick-buy:hover,
.product-detail-section .btn-quick-buy:active,
.product-detail-section .btn-quick-buy:focus {
    background: #fff !important;
    opacity: 1 !important;
    transform: none !important;
    box-shadow: none !important;
    border-color: #111 !important;
    color: #111 !important;
}
.product-detail-section .btn-quick-buy:hover::before,
.product-detail-section .btn-quick-buy:active::before {
    transform: scaleX(0) !important;
    opacity: 0 !important;
}
.product-detail-section .btn-quick-buy:hover span,
.product-detail-section .btn-quick-buy:active span {
    color: #111 !important;
}
.product-detail-section .btn-quick-buy:hover svg,
.product-detail-section .btn-quick-buy:active svg {
    opacity: 1 !important;
}
.product-detail-section .btn-quick-buy .quick-buy-icon { display: none; }
.product-detail-section .product-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 8px;
}

.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: 15px;
    font-weight: 500;
    white-space: nowrap;
}

/* old btn-quick-buy rules removed — using the LV-style ones above */

.product-gallery {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

.payment-note {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin-top: 6px;
}

#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: "Helvetica Neue", Helvetica, Arial, sans-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: "Helvetica Neue", Helvetica, Arial, sans-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: "Helvetica Neue", Helvetica, Arial, sans-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: "Helvetica Neue", Helvetica, Arial, sans-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: "Helvetica Neue", Helvetica, Arial, sans-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: "Helvetica Neue", Helvetica, Arial, sans-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: "Helvetica Neue", Helvetica, Arial, sans-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: "Helvetica Neue", Helvetica, Arial, sans-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;
    }
}
