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

body {
    font-family: 'Montserrat', sans-serif;
    background: #FFFFFF;
    color: var(--text-dark);
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
    font-size: var(--text-base);
    margin: 0;
    padding: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Announcement Bar */
.announcement-bar {
    background: linear-gradient(90deg, var(--gray-800) 0%, var(--gray-600) 50%, var(--gray-800) 100%);
    color: var(--white);
    text-align: center;
    padding: clamp(12px, 2.5vh, 16px) var(--spacing-sm);
    font-size: var(--text-xs);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    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: 11px; padding: 16px var(--spacing-md); }
}

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

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(20px, 2.5vh, 26px) var(--spacing-sm);
    position: relative;
    min-height: 80px;
}

nav .mobile-menu-btn {
    order: -1;
    margin-right: auto;
}

nav .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

nav .nav-icons {
    margin-left: auto;
}

@media (min-width: 768px) {
    nav { padding: clamp(24px, 3vh, 32px) var(--spacing-lg); min-height: 92px; }
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 4.5vw, 36px);
    font-weight: 400;
    letter-spacing: 0.45em;
    color: var(--text-dark);
    text-decoration: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    text-shadow: none;
}

.logo::after {
    content: 'DUBAI';
    display: block;
    font-size: clamp(6px, 1.2vw, 9px);
    letter-spacing: 0.6em;
    color: var(--gray-600);
    text-align: center;
    margin-top: clamp(1px, 0.3vh, 3px);
}

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

.mobile-menu-btn span {
    width: clamp(22px, 4vw, 26px);
    height: 2px;
    background: var(--gray-700);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

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

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Navigation Menu */
.nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 50%, var(--gray-100) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: clamp(24px, 4vh, 36px);
    list-style: none;
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
}

.nav-links.active {
    right: 0;
}

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

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

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

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

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

    nav {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        grid-template-rows: auto auto;
        row-gap: 14px;
        align-items: center;
    }
    
    .logo {
        grid-column: 2;
        grid-row: 1;
        justify-self: center;
    }

    .nav-icons {
        grid-column: 3;
        grid-row: 1;
        justify-self: end;
    }

    .nav-links {
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        background: transparent;
        gap: 40px;
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: center;
    }
    
    .nav-links a { font-size: 11px; }
}

.nav-icons {
    display: none;
}

@media (max-width: 1023px) {
    .nav-icons {
        display: flex;
        gap: 16px;
        align-items: center;
    }

    .nav-icons .search-link,
    .nav-icons a[aria-label="Account"] {
        display: none;
    }
}

@media (min-width: 1024px) {
    .nav-icons {
        display: flex;
        gap: 24px;
        align-items: center;
    }
}

.nav-icon {
    width: 22px;
    height: 22px;
    stroke: var(--text-dark);
    stroke-width: 1.5;
    fill: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-icons a:hover .nav-icon {
    stroke: var(--gray-600);
    transform: scale(1.1);
}

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

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: var(--text-dark);
    font-size: 11px;
    font-weight: 700;
    min-width: 22px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    animation: cartPulse 0.3s ease;
    border: 2px solid var(--white);
    font-family: 'Montserrat', sans-serif;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.btn-full {
    width: 100%;
}

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

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

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

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

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

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

/* Home Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 50%, var(--gray-50) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

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

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

.breadcrumb span:not(:last-child) {
    color: var(--gray-500);
}

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

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

/* Filters Section */
.filters-section {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.filters-bar {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
    margin-bottom: var(--spacing-md);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.filters-bar::-webkit-scrollbar {
    display: none;
}

@media (min-width: 768px) {
    .filters-bar {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
}

.filter-btn {
    padding: 12px 24px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid var(--gray-400);
    color: var(--text-dark);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gray-300) 0%, var(--gray-200) 100%);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.filter-btn span {
    position: relative;
    z-index: 1;
}

.filter-btn.active::before,
.filter-btn:hover::before {
    transform: translateY(0);
}

.filter-btn.active,
.filter-btn:hover {
    color: var(--white);
    border-color: var(--gray-600);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.sort-dropdown select,
.custom-select {
    padding: 12px 20px;
    font-size: 12px;
    border: 1px solid var(--gray-400);
    background: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.sort-dropdown select:hover,
.custom-select:hover {
    border-color: var(--gray-600);
}

.sort-dropdown select:focus,
.custom-select:focus {
    outline: none;
    border-color: var(--gray-600);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

/* Products Grid */
.products-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

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

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.product-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
}

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

.product-card:hover::before {
    border-color: var(--gray-400);
}

.product-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

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

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

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

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

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

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

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



.product-ribbon {
    position: absolute;
    top: clamp(8px, 2vw, 12px);
    right: clamp(-28px, -5vw, -32px);
    background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 100%);
    color: var(--cream);
    padding: clamp(6px, 1.5vw, 8px) clamp(40px, 8vw, 48px);
    font-size: clamp(8px, 1.2vw, 12px);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 15;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.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: var(--spacing-md) var(--spacing-sm);
    text-align: center;
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    position: relative;
}

.product-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-400), transparent);
}

.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 3vw, 24px);
    color: var(--text-dark);
    margin-bottom: 10px;
    transition: color 0.3s ease;
    letter-spacing: 0.05em;
}

.product-card:hover .product-name {
    color: var(--gray-900);
}

.product-category {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    font-weight: 400;
}

.product-price {
    font-size: clamp(16px, 2.5vw, 19px);
    color: var(--text-dark);
    font-weight: 400;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.08em;
}

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

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

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

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

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

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

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

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

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

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
    align-items: stretch;
    background: var(--ivory);
    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: var(--champagne);
}

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

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

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

@media (min-width: 1024px) {
    .product-images {
        min-height: 100vh;
        position: sticky;
        top: 0;
    }
}

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

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

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

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

@media (min-width: 1024px) {
    .product-detail-info {
        padding: 56px 48px;
        min-height: 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: var(--champagne);
    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 (min-width: 1024px) {
    .main-image-container {
        height: 100vh;
        min-height: 100vh;
    }
}

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

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

.main-product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.main-image-container:hover .main-product-image {
    transform: scale(1.04);
}

.zoom-btn {
    position: absolute;
    bottom: 32px;
    right: 32px;
    background: rgba(251, 249, 247, 0.95);
    border: 2px solid var(--brown);
    padding: 16px;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(107, 84, 67, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    backdrop-filter: blur(12px);
}

.zoom-btn:hover {
    background: var(--brown);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(107, 84, 67, 0.35);
}

.zoom-btn:hover svg {
    stroke: var(--cream);
}

.zoom-btn svg {
    stroke: var(--brown);
    transition: stroke 0.3s ease;
    stroke-width: 1.5;
}

.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: var(--brown);
    box-shadow: 0 8px 28px rgba(107, 84, 67, 0.3);
    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: 32px;
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.product-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: 10px 20px;
    font-size: 10px;
    background: var(--white);
    border: 2px solid rgba(107, 84, 67, 0.3);
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Montserrat', sans-serif;
    position: relative;
    letter-spacing: 0.08em;
    font-weight: 500;
    border-radius: 0;
}

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

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

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

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

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

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

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

.inventory-status {
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 0;
    font-size: 13px;
    line-height: 1.7;
    font-weight: 500;
    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: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.04) 100%);
    border-left: 3px solid #10B981;
    color: #047857;
}

.inventory-status.low-stock {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.08) 0%, rgba(245, 158, 11, 0.04) 100%);
    border-left: 3px solid #F59E0B;
    color: #92400e;
}

.inventory-status.out-of-stock {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(239, 68, 68, 0.04) 100%);
    border-left: 3px solid #EF4444;
    color: #991b1b;
}

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

.inventory-status .in-stock {
    color: #10B981;
}

.inventory-status .low-stock {
    color: #F59E0B;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.product-meta {
    padding-top: 12px;
    border-top: 1px solid rgba(107, 84, 67, 0.12);
    margin-top: 16px;
    font-size: 10px;
    color: var(--text-mid);
}

@media (min-width: 375px) {
    .product-meta {
        padding-top: 14px;
        margin-top: 18px;
        font-size: 10px;
    }
}

@media (min-width: 480px) {
    .product-meta {
        padding-top: 15px;
        margin-top: 20px;
        font-size: 11px;
    }
}

@media (min-width: 600px) {
    .product-meta {
        padding-top: 16px;
        margin-top: 24px;
        font-size: 11px;
    }
}

@media (min-width: 768px) {
    .product-meta {
        padding-top: 18px;
        margin-top: 28px;
        font-size: 12px;
    }
}

@media (min-width: 1024px) {
    .product-meta {
        padding-top: 20px;
        margin-top: 36px;
        font-size: 12px;
    }
}

@media (min-width: 1440px) {
    .product-meta {
        padding-top: 24px;
        margin-top: 40px;
        font-size: 13px;
    }
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 0;
    font-size: 13px;
    color: var(--text-light);
    border-bottom: 1px solid rgba(107, 84, 67, 0.08);
    letter-spacing: 0.3px;
}

.meta-item:last-child {
    border-bottom: none;
}

.meta-item svg {
    stroke: var(--brown);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Cart Page */
.cart-section {
    padding: clamp(40px, 6vh, 80px) 0;
    min-height: 60vh;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, var(--white) 100%);
}

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

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

.cart-items {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2.5vh, 24px);
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: clamp(18px, 3vw, 28px);
    padding: clamp(20px, 3.5vh, 32px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, var(--white) 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
}

.cart-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cart-item:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.cart-item:hover::before {
    opacity: 1;
}

@media (min-width: 768px) {
    .cart-item {
        grid-template-columns: 160px 1fr auto auto;
        align-items: center;
        padding: clamp(24px, 4vh, 40px);
    }
}

.cart-item-image {
    overflow: hidden;
    border-radius: 2px;
}

.cart-item-image img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.cart-item:hover .cart-item-image img {
    transform: scale(1.02);
}

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

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 1.5vh, 16px);
}

.cart-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(20px, 3.5vw, 26px);
    font-weight: 300;
    color: var(--text-dark);
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.cart-item-meta {
    font-size: clamp(11px, 1.8vw, 12px);
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cart-item-price {
    font-size: clamp(20px, 3.5vw, 26px);
    color: var(--text-dark);
    font-weight: 300;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.05em;
}

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

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

.cart-item-actions-mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    gap: 12px;
    grid-column: 1 / -1;
}

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

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

.qty-btn {
    background: none;
    border: none;
    font-size: 16px;
    color: var(--text-dark);
    cursor: pointer;
    padding: 8px 12px;
    transition: all 0.2s ease;
    flex: 1;
    min-width: 40px;
}

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

.qty-value {
    font-size: 13px;
    min-width: 35px;
    text-align: center;
    font-weight: 400;
    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: 1px solid rgba(0, 0, 0, 0.12);
    color: var(--text-muted);
    cursor: pointer;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 2px;
}

.remove-btn:hover {
    color: #d32f2f;
    border-color: #d32f2f;
    background: rgba(211, 47, 47, 0.04);
}

.remove-btn svg {
    stroke: currentColor;
    transition: stroke 0.3s ease;
    width: 18px;
    height: 18px;
}

/* Cart Summary */
.cart-summary {
    background: linear-gradient(145deg, var(--white) 0%, rgba(255, 255, 255, 0.99) 100%);
    padding: clamp(28px, 4.5vh, 48px);
    position: sticky;
    top: 100px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    backdrop-filter: blur(20px);
}

.summary-title {
    font-size: clamp(22px, 3.5vw, 28px);
    color: var(--text-dark);
    margin-bottom: clamp(20px, 3vh, 32px);
    letter-spacing: 0.08em;
    padding-bottom: clamp(18px, 2.5vh, 28px);
    border-bottom: 2px solid rgba(0, 0, 0, 0.08);
    font-weight: 300;
    font-family: 'Cormorant Garamond', serif;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: clamp(14px, 2vh, 18px) 0;
    font-size: clamp(12px, 2vw, 14px);
    color: var(--text-mid);
    letter-spacing: 0.02em;
}

.summary-row:not(:last-of-type) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.summary-row.summary-total {
    font-size: clamp(22px, 3.5vw, 28px);
    font-weight: 300;
    color: var(--text-dark);
    padding: clamp(18px, 3vh, 28px) 0;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 0.05em;
    border-top: 2px solid rgba(0, 0, 0, 0.08);
}

.free-shipping {
    color: var(--text-dark);
    font-weight: 400;
}

.continue-shopping {
    display: block;
    text-align: center;
    margin-top: clamp(16px, 2.5vh, 24px);
    color: var(--text-muted);
    text-decoration: none;
    font-size: clamp(11px, 1.8vw, 13px);
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.continue-shopping:hover {
    color: var(--text-dark);
}

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

.empty-cart svg {
    stroke: var(--gray-300);
    opacity: 0.4;
    margin-bottom: clamp(24px, 3.5vh, 40px);
    width: 100px;
    height: 100px;
}

.empty-cart h2 {
    color: var(--text-dark);
    margin-bottom: clamp(12px, 2vh, 20px);
    font-size: clamp(24px, 4vw, 36px);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.empty-cart p {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
}

/* Checkout Page */
.checkout-section {
    padding: clamp(48px, 9vh, 96px) 0;
}

.checkout-steps {
    display: none;
}

@media (min-width: 768px) {
    .checkout-steps {
        display: flex;
        align-items: center;
        gap: 16px;
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        margin-bottom: var(--spacing-lg);
    }
}

.step {
    color: var(--text-muted);
    transition: color 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.step.active {
    color: var(--text-dark);
    font-weight: 500;
}

.step.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--text-dark);
}

.step-arrow {
    color: var(--gray-400);
}

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

@media (min-width: 1024px) {
    .checkout-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: var(--spacing-2xl);
    }
}

/* Forms */
.form-section {
    margin-bottom: clamp(36px, 6vh, 48px);
    padding-bottom: clamp(36px, 6vh, 48px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    font-size: clamp(20px, 4vw, 24px);
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.08em;
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-size: clamp(12px, 2vw, 14px);
    color: var(--text-dark);
    margin-bottom: clamp(10px, 1.8vh, 12px);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: clamp(14px, 2.8vw, 22px) clamp(18px, 3.2vw, 24px);
    font-size: clamp(14px, 2.2vw, 16px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--white);
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    color: var(--text-dark);
    min-height: 50px;
    box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-dark);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.08);
}

.form-note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--spacing-md);
    font-style: italic;
}

/* Payment Methods */
.payment-methods-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.payment-option {
    display: block;
    cursor: pointer;
}

.payment-option input {
    display: none;
}

.payment-option-content {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: clamp(14px, 2.5vw, 20px);
    border: 2px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: var(--white);
    min-height: 44px;
    box-sizing: border-box;
}

.payment-option-content:hover {
    border-color: rgba(0, 0, 0, 0.15);
}

.payment-option input:checked + .payment-option-content {
    border-color: var(--text-dark);
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.payment-option .payment-icon {
    font-size: 24px;
    color: var(--text-dark);
}

/* Order Summary Sidebar */
.order-summary-sidebar {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    padding: clamp(20px, 4vh, 40px);
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 3vh, 24px);
    margin-bottom: clamp(20px, 4vh, 30px);
}

.summary-item {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    gap: 16px;
    align-items: center;
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.summary-item-image {
    width: 70px;
    height: 90px;
    object-fit: cover;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.summary-item-details h4 {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.summary-item-details p {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.summary-item-price {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
    text-align: right;
}

.summary-totals {
    padding-top: var(--spacing-lg);
    border-top: 2px solid rgba(0, 0, 0, 0.1);
}

/* Account Page */
.account-section {
    padding: var(--spacing-2xl) 0;
}

.success-banner {
    background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
    color: #2e7d32;
    padding: 20px var(--spacing-lg);
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: var(--spacing-xl);
    border-left: 4px solid #4caf50;
}

.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(180deg, var(--white) 0%, var(--gray-50) 100%);
    padding: var(--spacing-xl);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.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: 13px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.account-nav-item:hover {
    background: rgba(0, 0, 0, 0.03);
    border-left-color: var(--gray-600);
    color: var(--text-dark);
}

.account-nav-item.active {
    background: rgba(0, 0, 0, 0.05);
    border-left-color: var(--gray-700);
    color: var(--text-dark);
    font-weight: 500;
}

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

.account-nav-item.special:hover {
    background: linear-gradient(135deg, var(--gray-600) 0%, var(--gray-700) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.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.08em;
    position: relative;
    padding-bottom: var(--spacing-md);
}

.tab-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gray-700) 0%, var(--gray-600) 100%);
}

/* Orders */
.orders-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.order-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: var(--spacing-lg);
    transition: all 0.3s ease;
}

.order-card:hover {
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.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-number {
    display: block;
    font-size: 17px;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 0.03em;
}

.order-date {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.order-status {
    padding: 8px 16px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 0;
    font-weight: 500;
}

.status-processing {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    color: #e65100;
    border: 1px solid rgba(230, 81, 0, 0.2);
}

.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(0, 0, 0, 0.08);
}

.order-item-info h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 0.03em;
}

.order-item-info p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.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(0, 0, 0, 0.08);
}

.order-total {
    font-size: 17px;
    font-weight: 500;
    color: var(--text-dark);
}

/* Appointments */
.appointments-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.appointment-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--spacing-lg);
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: var(--spacing-lg);
    align-items: center;
    transition: all 0.3s ease;
}

.appointment-card:hover {
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

@media (max-width: 767px) {
    .appointment-card {
        grid-template-columns: 1fr;
    }
}

.appointment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.appointment-icon svg {
    stroke: var(--text-dark);
}

.appointment-details h4 {
    font-size: 19px;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 0.03em;
}

.appointment-date {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.appointment-location {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.appointment-actions {
    display: flex;
    gap: 14px;
}

@media (max-width: 767px) {
    .appointment-actions {
        justify-content: flex-start;
    }
}

.cta-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
    padding: var(--spacing-xl);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.cta-card h3 {
    color: var(--text-dark);
    margin-bottom: 14px;
    letter-spacing: 0.05em;
}

.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: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: var(--spacing-md) var(--spacing-md);
    border-radius: 4px;
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

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

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

/* Appointment Page */
.appointment-section {
    padding: var(--spacing-2xl) 0;
}

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

@media (min-width: 1024px) {
    .appointment-grid {
        grid-template-columns: 1.5fr 1fr;
        gap: var(--spacing-2xl);
    }
}

.consultation-types {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
}

@media (min-width: 768px) {
    .consultation-types {
        grid-template-columns: repeat(3, 1fr);
    }
}

.consultation-option input {
    display: none;
}

.consultation-card {
    padding: var(--spacing-lg);
    border: 2px solid rgba(0, 0, 0, 0.08);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--white);
}

.consultation-card:hover {
    border-color: rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.consultation-option input:checked + .consultation-card {
    border-color: var(--gray-600);
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.consultation-card svg {
    stroke: var(--text-dark);
    margin-bottom: 14px;
}

.consultation-card h4 {
    font-size: 19px;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: 0.03em;
}

.consultation-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 768px) {
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
}

.time-slot {
    padding: 14px;
    background: transparent;
    border: 1px solid var(--gray-400);
    color: var(--text-dark);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Montserrat', sans-serif;
}

.time-slot.selected,
.time-slot:hover {
    background: linear-gradient(135deg, var(--gray-700) 0%, var(--gray-600) 100%);
    color: var(--white);
    border-color: var(--gray-700);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Consultation Info */
.consultation-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.info-card {
    background: linear-gradient(180deg, var(--white) 0%, var(--gray-50) 100%);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: var(--spacing-xl);
}

.info-card h3 {
    font-size: 21px;
    color: var(--text-dark);
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.05em;
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

.info-list svg {
    stroke: var(--text-dark);
    flex-shrink: 0;
    margin-top: 2px;
}

.atelier-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.atelier-detail {
    display: flex;
    gap: 18px;
}

.atelier-detail svg {
    stroke: var(--text-dark);
    flex-shrink: 0;
}

.atelier-detail strong {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.atelier-detail p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

.info-card.highlight {
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
    border-color: var(--text-dark);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    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, var(--white) 0%, var(--gray-50) 100%);
    padding: var(--spacing-2xl) var(--spacing-xl);
    max-width: 520px;
    width: 100%;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15), 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    animation: modalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-50) 100%);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.modal-icon svg {
    stroke: var(--text-dark);
}

.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: 24px;
    letter-spacing: 0.05em;
}

.modal-content p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

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

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

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

.btn-add-to-cart {
    background: var(--text-dark);
    color: var(--white);
    padding: clamp(12px, 2vw, 16px) clamp(24px, 4vw, 40px);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    min-height: 44px;
}

.btn-add-to-cart:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
}

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

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