/* ===================================================================
   AURUM HARVEST — LUXURY DRY FRUITS STORE
   3D Glassmorphism Design System
   =================================================================== */

/* ---------- CSS Variables ---------- */
:root {
    --gold: #C9A96E;
    --gold-light: #F5E6C8;
    --gold-dark: #8B6914;
    --gold-bright: #D4AF37;
    --black: #0A0806;
    --black-light: #1A1410;
    --black-card: #12100D;
    --champagne: #F5E6C8;
    --bronze: #8B6914;

    --glass-bg: rgba(10, 8, 6, 0.45);
    --glass-border: rgba(201, 169, 110, 0.15);
    --glass-blur: 20px;
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    --glass-highlight: rgba(245, 230, 200, 0.05);

    --font-headline: 'Playfair Display', Georgia, serif;
    --font-body: 'Raleway', 'Segoe UI', sans-serif;
    --font-label: 'Montserrat', 'Segoe UI', sans-serif;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dark) var(--black);
}

html::-webkit-scrollbar {
    width: 6px;
}
html::-webkit-scrollbar-track {
    background: var(--black);
}
html::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 3px;
}

body {
    font-family: var(--font-body);
    background-color: var(--black);
    color: var(--champagne);
    line-height: 1.7;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    perspective: 1200px;
}

::selection {
    background: rgba(201, 169, 110, 0.3);
    color: var(--champagne);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

/* ---------- Three.js Canvas ---------- */
#three-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ---------- Cursor Glow ---------- */
#cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    will-change: transform;
}

/* ---------- Glass Panel Utility ---------- */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow),
                inset 0 1px 0 var(--glass-highlight);
}

/* ===================================================================
   NAVIGATION
   =================================================================== */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 clamp(16px, 3vw, 48px);
    transition: all 0.5s var(--ease-out-expo);
}

#main-nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 6, 0.6);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    opacity: 0;
    transition: opacity 0.5s ease;
}

#main-nav.scrolled::before {
    opacity: 1;
}

.nav-inner {
    position: relative;
    z-index: 1;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: height 0.5s var(--ease-out-expo);
}

#main-nav.scrolled .nav-inner {
    height: 64px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.brand-icon {
    color: var(--gold);
    font-size: 24px;
    animation: pulse-gold 3s ease-in-out infinite;
}

@keyframes pulse-gold {
    0%, 100% { opacity: 0.8; text-shadow: 0 0 10px rgba(201, 169, 110, 0.3); }
    50% { opacity: 1; text-shadow: 0 0 20px rgba(201, 169, 110, 0.6); }
}

.brand-text {
    font-family: var(--font-label);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--champagne);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(201, 169, 110, 0.08);
    border-radius: inherit;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.4s var(--ease-out-expo);
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::before {
    opacity: 1;
    transform: scale(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-icon-btn {
    position: relative;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--gold);
    transition: all 0.3s var(--ease-out-expo);
}

.nav-icon-btn:hover {
    background: rgba(201, 169, 110, 0.1);
    transform: scale(1.1);
}

.cart-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 18px;
    height: 18px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-label);
    font-size: 10px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: badge-pop 0.5s var(--ease-spring);
}

@keyframes badge-pop {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out-expo);
}

/* ===================================================================
   HERO SECTION
   =================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    z-index: 2;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(201, 169, 110, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(139, 105, 20, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, rgba(10, 8, 6, 0.3) 0%, rgba(10, 8, 6, 0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 120px 24px 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 10px 28px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: var(--radius-full);
    background: rgba(201, 169, 110, 0.05);
    backdrop-filter: blur(10px);
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s var(--ease-out-expo) 0.3s forwards;
}

.badge-diamond {
    font-size: 8px;
    opacity: 0.6;
}

.hero-title {
    font-family: var(--font-headline);
    font-size: clamp(42px, 8vw, 96px);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 28px;
    perspective: 800px;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 40%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(60px) rotateX(15deg);
    animation: titleReveal 1.2s var(--ease-out-expo) forwards;
}

.title-line[data-delay="0"] { animation-delay: 0.5s; }
.title-line[data-delay="1"] { animation-delay: 0.7s; }

.title-line em {
    font-style: italic;
    -webkit-text-fill-color: transparent;
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

@keyframes titleReveal {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 300;
    color: rgba(245, 230, 200, 0.75);
    letter-spacing: 1px;
    max-width: 600px;
    margin: 0 auto 48px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s var(--ease-out-expo) 0.9s forwards;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 64px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s var(--ease-out-expo) 1.1s forwards;
}

/* Primary Button */
.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--black);
    padding: 16px 40px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
    transform-style: preserve-3d;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.35),
                0 0 60px rgba(201, 169, 110, 0.15);
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

/* Ghost Button */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 16px 28px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(201, 169, 110, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.5s var(--ease-out-expo);
}

.btn-ghost:hover {
    background: rgba(201, 169, 110, 0.1);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.btn-ghost .material-symbols-outlined {
    font-size: 20px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s var(--ease-out-expo) 1.3s forwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-headline);
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-family: var(--font-label);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 230, 200, 0.5);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--gold-dark), transparent);
}

/* ---------- Floating 3D Dry Fruits ---------- */
.floating-fruits {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}

.floating-fruit {
    position: absolute;
    transform-style: preserve-3d;
    will-change: transform;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.floating-fruit img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(201, 169, 110, 0.25);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(201, 169, 110, 0.1),
        inset 0 0 20px rgba(0, 0, 0, 0.3);
    filter: saturate(1.1) brightness(0.85);
    transition: filter 0.5s ease, border-color 0.5s ease;
}

.floating-fruit:hover img {
    filter: saturate(1.3) brightness(1);
    border-color: rgba(201, 169, 110, 0.5);
}

.fruit-glow {
    position: absolute;
    inset: -30%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.12) 0%, transparent 65%);
    z-index: -1;
    animation: fruit-glow-pulse 4s ease-in-out infinite alternate;
}

@keyframes fruit-glow-pulse {
    0% { opacity: 0.4; transform: scale(0.9); }
    100% { opacity: 0.8; transform: scale(1.1); }
}

/* Fruit 1 — Top Left — Almonds */
.fruit-1 {
    width: 130px;
    height: 130px;
    top: 12%;
    left: 6%;
    animation: float-1 6s ease-in-out infinite alternate;
    opacity: 0;
    animation-delay: 0.5s;
    animation-fill-mode: forwards;
}

@keyframes float-1 {
    0% {
        opacity: 0.75;
        transform: translateY(0px) translateX(0px) rotateY(0deg) rotateX(5deg) scale(1);
    }
    50% {
        transform: translateY(-18px) translateX(8px) rotateY(12deg) rotateX(-3deg) scale(1.03);
    }
    100% {
        opacity: 0.85;
        transform: translateY(-30px) translateX(-5px) rotateY(-8deg) rotateX(8deg) scale(0.97);
    }
}

/* Fruit 2 — Top Right — Walnuts */
.fruit-2 {
    width: 110px;
    height: 110px;
    top: 10%;
    right: 8%;
    animation: float-2 7s ease-in-out infinite alternate;
    opacity: 0;
    animation-delay: 1s;
    animation-fill-mode: forwards;
}

@keyframes float-2 {
    0% {
        opacity: 0.7;
        transform: translateY(0px) rotateY(0deg) rotateZ(0deg) scale(1);
    }
    50% {
        transform: translateY(-22px) rotateY(-15deg) rotateZ(5deg) scale(1.05);
    }
    100% {
        opacity: 0.8;
        transform: translateY(-10px) rotateY(10deg) rotateZ(-3deg) scale(0.98);
    }
}

/* Fruit 3 — Mid Left — Pistachios */
.fruit-3 {
    width: 90px;
    height: 90px;
    top: 50%;
    left: 3%;
    animation: float-3 8s ease-in-out infinite alternate;
    opacity: 0;
    animation-delay: 1.5s;
    animation-fill-mode: forwards;
}

@keyframes float-3 {
    0% {
        opacity: 0.6;
        transform: translateY(0px) translateX(0px) rotateX(0deg) rotateY(0deg) scale(1);
    }
    33% {
        transform: translateY(-15px) translateX(12px) rotateX(10deg) rotateY(-8deg) scale(1.04);
    }
    66% {
        transform: translateY(-25px) translateX(5px) rotateX(-5deg) rotateY(12deg) scale(0.96);
    }
    100% {
        opacity: 0.7;
        transform: translateY(-8px) translateX(-8px) rotateX(6deg) rotateY(-5deg) scale(1.02);
    }
}

/* Fruit 4 — Mid Right — Dates */
.fruit-4 {
    width: 100px;
    height: 100px;
    top: 55%;
    right: 5%;
    animation: float-4 6.5s ease-in-out infinite alternate;
    opacity: 0;
    animation-delay: 0.8s;
    animation-fill-mode: forwards;
}

@keyframes float-4 {
    0% {
        opacity: 0.65;
        transform: translateY(0px) rotateZ(0deg) rotateY(0deg) scale(1);
    }
    50% {
        transform: translateY(-20px) rotateZ(-6deg) rotateY(15deg) scale(1.06);
    }
    100% {
        opacity: 0.75;
        transform: translateY(-35px) rotateZ(4deg) rotateY(-10deg) scale(0.95);
    }
}

/* Fruit 5 — Bottom Left — Gift Box */
.fruit-5 {
    width: 80px;
    height: 80px;
    bottom: 18%;
    left: 12%;
    animation: float-5 7.5s ease-in-out infinite alternate;
    opacity: 0;
    animation-delay: 2s;
    animation-fill-mode: forwards;
}

@keyframes float-5 {
    0% {
        opacity: 0.55;
        transform: translateY(0px) rotateY(0deg) rotateX(0deg) scale(1);
    }
    50% {
        transform: translateY(-16px) rotateY(18deg) rotateX(-8deg) scale(1.08);
    }
    100% {
        opacity: 0.65;
        transform: translateY(-28px) rotateY(-6deg) rotateX(5deg) scale(0.94);
    }
}

/* Fruit 6 — Bottom Right — Assorted */
.fruit-6 {
    width: 70px;
    height: 70px;
    bottom: 22%;
    right: 14%;
    animation: float-6 5.5s ease-in-out infinite alternate;
    opacity: 0;
    animation-delay: 1.2s;
    animation-fill-mode: forwards;
}

@keyframes float-6 {
    0% {
        opacity: 0.5;
        transform: translateY(0px) translateX(0px) rotateZ(0deg) scale(1);
    }
    50% {
        transform: translateY(-12px) translateX(-8px) rotateZ(8deg) scale(1.05);
    }
    100% {
        opacity: 0.6;
        transform: translateY(-24px) translateX(6px) rotateZ(-5deg) scale(0.97);
    }
}

/* Hide some on mobile for cleaner look */
@media (max-width: 768px) {
    .fruit-3, .fruit-5, .fruit-6 {
        display: none;
    }
    .fruit-1 { width: 90px; height: 90px; top: 8%; left: 3%; }
    .fruit-2 { width: 80px; height: 80px; top: 8%; right: 3%; }
    .fruit-4 { width: 75px; height: 75px; bottom: 25%; right: 3%; }
}

@media (max-width: 480px) {
    .floating-fruits {
        display: none;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(201, 169, 110, 0.5);
    font-family: var(--font-label);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: fadeUp 1s var(--ease-out-expo) 2s forwards;
    opacity: 0;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(201, 169, 110, 0.3);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* ===================================================================
   SECTIONS COMMON
   =================================================================== */
.section {
    position: relative;
    z-index: 2;
    padding: 120px clamp(16px, 5vw, 80px);
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-headline);
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    color: var(--gold);
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    font-weight: 300;
    color: rgba(245, 230, 200, 0.6);
    max-width: 500px;
    margin: 0 auto 20px;
}

.title-underline {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 0 auto;
}

/* ===================================================================
   PRODUCTS GRID — 3D GLASS CARDS
   =================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    perspective: 1000px;
    cursor: pointer;
}

.card-3d-wrapper {
    position: relative;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.6s var(--ease-out-expo);
    transform-style: preserve-3d;
    will-change: transform;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3),
                inset 0 1px 0 var(--glass-highlight);
}

.card-3d-wrapper:hover {
    border-color: rgba(201, 169, 110, 0.35);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5),
                0 0 40px rgba(201, 169, 110, 0.08),
                inset 0 1px 0 rgba(245, 230, 200, 0.1);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(201, 169, 110, 0.08), transparent 50%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.card-3d-wrapper:hover .card-glow {
    opacity: 1;
}

.product-image-wrap {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--black-card);
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.card-3d-wrapper:hover .product-image-wrap img {
    transform: scale(1.12);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 8, 6, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card-3d-wrapper:hover .product-overlay {
    opacity: 1;
}

.quick-view-btn {
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--champagne);
    padding: 12px 28px;
    border: 1px solid rgba(245, 230, 200, 0.5);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    transition: all 0.5s var(--ease-out-expo);
}

.card-3d-wrapper:hover .quick-view-btn {
    transform: translateY(0);
}

.quick-view-btn:hover {
    background: rgba(245, 230, 200, 0.15);
}

.product-badge-price {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    font-family: var(--font-label);
    font-size: 14px;
    font-weight: 700;
    color: var(--gold);
    padding: 6px 16px;
    background: rgba(10, 8, 6, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: var(--radius-full);
}

.product-badge-featured {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 5;
    font-family: var(--font-label);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--black);
    padding: 4px 12px;
    background: var(--gold);
    border-radius: var(--radius-full);
}

.product-origin {
    position: absolute;
    bottom: 12px;
    left: 16px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-label);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 230, 200, 0.7);
}

.product-origin .material-symbols-outlined {
    font-size: 14px;
    color: var(--gold);
}

.product-info {
    position: relative;
    z-index: 1;
    padding: 24px;
}

.product-name {
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 600;
    color: var(--champagne);
    margin-bottom: 8px;
}

.product-desc {
    font-size: 13px;
    font-weight: 300;
    color: rgba(245, 230, 200, 0.55);
    margin-bottom: 16px;
    line-height: 1.6;
}

.product-meta {
    margin-bottom: 20px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.product-rating .material-symbols-outlined {
    font-size: 16px;
    color: var(--gold);
}

.product-rating .material-symbols-outlined.filled {
    font-variation-settings: 'FILL' 1;
}

.product-rating .material-symbols-outlined.half {
    font-variation-settings: 'FILL' 0;
}

.rating-count {
    font-family: var(--font-label);
    font-size: 11px;
    color: rgba(245, 230, 200, 0.4);
    margin-left: 8px;
}

.add-to-cart-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 14px;
    border: 1px solid rgba(201, 169, 110, 0.35);
    border-radius: var(--radius-sm);
    background: rgba(201, 169, 110, 0.05);
    transition: all 0.4s var(--ease-out-expo);
}

.add-to-cart-btn:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    box-shadow: 0 0 24px rgba(201, 169, 110, 0.3);
}

.add-to-cart-btn .material-symbols-outlined {
    font-size: 18px;
}

/* ===================================================================
   STORY SECTION
   =================================================================== */
.story-section {
    overflow: hidden;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-image-frame {
    position: relative;
}

.frame-border {
    position: absolute;
    inset: -12px -12px -12px -12px;
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: var(--radius-lg);
    transform: translate(16px, 16px);
    transition: transform 0.6s var(--ease-out-expo);
}

.story-image-frame:hover .frame-border {
    transform: translate(8px, 8px);
}

.story-image-frame img {
    width: 100%;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 1;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    transition: transform 0.6s var(--ease-out-expo);
}

.story-image-frame:hover img {
    transform: scale(1.02);
}

.image-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(201, 169, 110, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: 0;
    pointer-events: none;
}

.story-title {
    font-family: var(--font-headline);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: var(--gold);
    line-height: 1.15;
    margin-bottom: 20px;
}

.story-title em {
    font-style: italic;
}

.gold-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    margin-bottom: 32px;
    border-radius: 2px;
}

.story-text {
    font-size: 16px;
    font-weight: 300;
    color: rgba(245, 230, 200, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
}

.discover-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 12px;
    transition: all 0.4s var(--ease-out-expo);
}

.discover-link:hover {
    gap: 20px;
    color: var(--champagne);
}

.discover-link .material-symbols-outlined {
    font-size: 22px;
    transition: transform 0.4s var(--ease-out-expo);
}

.discover-link:hover .material-symbols-outlined {
    transform: translateX(6px);
}

/* ===================================================================
   COLLECTIONS
   =================================================================== */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
}

.collection-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 420px;
    perspective: 800px;
    cursor: pointer;
}

.collection-image-wrap {
    position: absolute;
    inset: 0;
}

.collection-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-out-expo);
}

.collection-card:hover img {
    transform: scale(1.08);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(10, 8, 6, 0.85) 100%);
    transition: background 0.5s ease;
}

.collection-card:hover .collection-overlay {
    background: linear-gradient(180deg, transparent 20%, rgba(10, 8, 6, 0.9) 100%);
}

.collection-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px;
    z-index: 2;
    transform: translateY(10px);
    transition: transform 0.5s var(--ease-out-expo);
}

.collection-card:hover .collection-info {
    transform: translateY(0);
}

.collection-name {
    font-family: var(--font-headline);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
}

.collection-price {
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245, 230, 200, 0.7);
    margin-bottom: 20px;
}

.btn-collection {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    padding: 10px 24px;
    border: 1px solid rgba(201, 169, 110, 0.4);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(10px);
    transition: all 0.4s var(--ease-out-expo);
    opacity: 0;
    transform: translateY(10px);
}

.collection-card:hover .btn-collection {
    opacity: 1;
    transform: translateY(0);
}

.btn-collection:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.btn-collection .material-symbols-outlined {
    font-size: 16px;
}

/* ===================================================================
   TESTIMONIALS
   =================================================================== */
.testimonials-section {
    overflow: hidden;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    transition: all 0.5s var(--ease-out-expo);
    transform-style: preserve-3d;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 110, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(201, 169, 110, 0.06);
}

.quote-mark {
    font-size: 48px;
    color: var(--gold);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-text {
    font-family: var(--font-headline);
    font-size: 16px;
    font-weight: 400;
    color: var(--champagne);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 24px;
}

.testimonial-stars .material-symbols-outlined {
    font-size: 18px;
    color: var(--gold);
    font-variation-settings: 'FILL' 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-label);
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
}

.author-name {
    font-family: var(--font-label);
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 1px;
}

.author-location {
    font-size: 11px;
    font-weight: 400;
    color: rgba(245, 230, 200, 0.4);
    margin-top: 2px;
}

/* ===================================================================
   NEWSLETTER
   =================================================================== */
.newsletter-section {
    padding: 80px clamp(16px, 5vw, 80px);
}

.newsletter-glass {
    max-width: 900px;
    margin: 0 auto;
    padding: 64px 48px;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.newsletter-glass::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(201, 169, 110, 0.06), transparent 50%);
    pointer-events: none;
}

.newsletter-title {
    font-family: var(--font-headline);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 12px;
    position: relative;
}

.newsletter-title em {
    font-style: italic;
}

.newsletter-desc {
    font-size: 15px;
    font-weight: 300;
    color: rgba(245, 230, 200, 0.65);
    max-width: 500px;
    margin: 0 auto 36px;
    position: relative;
}

.newsletter-form {
    position: relative;
    max-width: 480px;
    margin: 0 auto 16px;
}

.input-group {
    display: flex;
    gap: 12px;
}

.newsletter-input {
    flex: 1;
    padding: 16px 24px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--champagne);
    background: rgba(10, 8, 6, 0.6);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: var(--radius-sm);
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(245, 230, 200, 0.3);
}

.newsletter-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.1);
}

.newsletter-btn {
    white-space: nowrap;
    padding: 16px 28px;
}

.newsletter-btn .material-symbols-outlined {
    font-size: 18px;
}

.newsletter-privacy {
    font-size: 11px;
    color: rgba(245, 230, 200, 0.3);
    position: relative;
}

/* ===================================================================
   FOOTER
   =================================================================== */
.footer-section {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    background: rgba(10, 8, 6, 0.9);
    backdrop-filter: blur(10px);
}

.footer-top {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px clamp(24px, 5vw, 80px);
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .brand-icon { font-size: 20px; }
.footer-logo .brand-text { font-size: 13px; letter-spacing: 3px; }

.footer-tagline {
    font-size: 14px;
    font-weight: 300;
    color: rgba(245, 230, 200, 0.45);
    margin-bottom: 28px;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, 0.2);
    color: var(--gold);
    transition: all 0.3s var(--ease-out-expo);
}

.social-link:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-links-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-heading {
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    font-size: 14px;
    font-weight: 300;
    color: rgba(245, 230, 200, 0.5);
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(201, 169, 110, 0.08);
    padding: 24px clamp(24px, 5vw, 80px);
    text-align: center;
    font-size: 12px;
    color: rgba(245, 230, 200, 0.3);
}

/* ===================================================================
   LOADING SCREEN
   =================================================================== */
#loading-screen {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-content {
    text-align: center;
}

.loader-icon {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
    animation: loader-pulse 1.5s ease-in-out infinite;
}

@keyframes loader-pulse {
    0%, 100% { opacity: 0.5; transform: scale(0.95); text-shadow: 0 0 10px rgba(201, 169, 110, 0.2); }
    50% { opacity: 1; transform: scale(1.05); text-shadow: 0 0 30px rgba(201, 169, 110, 0.6); }
}

.loader-text {
    font-family: var(--font-label);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 8px;
    color: var(--gold);
    margin-bottom: 32px;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(201, 169, 110, 0.15);
    border-radius: 2px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.loader-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    border-radius: 2px;
    animation: loader-fill 2s ease-out forwards;
}

@keyframes loader-fill {
    0% { width: 0%; }
    60% { width: 70%; }
    100% { width: 100%; }
}

.loader-tagline {
    font-family: var(--font-headline);
    font-size: 13px;
    font-weight: 400;
    font-style: italic;
    color: rgba(245, 230, 200, 0.35);
    letter-spacing: 1px;
}

/* ===================================================================
   MOBILE MENU
   =================================================================== */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 9000;
    background: rgba(10, 8, 6, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

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

.mobile-menu-panel {
    text-align: center;
    width: 100%;
    max-width: 400px;
    padding: 0 24px;
}

.mobile-menu-header {
    margin-bottom: 48px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s var(--ease-out-expo) 0.1s;
}

.mobile-menu-overlay.active .mobile-menu-header {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-header .brand-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 12px;
}

.mobile-menu-header .brand-text {
    font-size: 12px;
    letter-spacing: 5px;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 48px;
}

.mobile-nav-link {
    font-family: var(--font-headline);
    font-size: 32px;
    font-weight: 600;
    color: var(--champagne);
    padding: 12px 0;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.5s var(--ease-out-expo), color 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-overlay.active .mobile-nav-link[data-index="1"] { transition-delay: 0.15s; }
.mobile-menu-overlay.active .mobile-nav-link[data-index="2"] { transition-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-nav-link[data-index="3"] { transition-delay: 0.25s; }
.mobile-menu-overlay.active .mobile-nav-link[data-index="4"] { transition-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-nav-link[data-index="5"] { transition-delay: 0.35s; }

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transform: translateX(-50%);
    transition: width 0.4s var(--ease-out-expo);
}

.mobile-nav-link:hover {
    color: var(--gold);
}

.mobile-nav-link:hover::after {
    width: 60px;
}

.mobile-menu-footer {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--ease-out-expo) 0.4s;
}

.mobile-menu-overlay.active .mobile-menu-footer {
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-socials {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
}

.mobile-menu-socials a {
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.mobile-menu-socials a:hover {
    opacity: 1;
}

.mobile-menu-tagline {
    font-family: var(--font-label);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(245, 230, 200, 0.25);
}

/* Hamburger active state (X) */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

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

/* ===================================================================
   CART DRAWER
   =================================================================== */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    z-index: 9500;
    background: rgba(10, 8, 6, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 90vw;
    height: 100vh;
    z-index: 9600;
    background: var(--black-light);
    border-left: 1px solid rgba(201, 169, 110, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out-expo);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.cart-drawer-title {
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 600;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-drawer-title .material-symbols-outlined {
    font-size: 22px;
}

.cart-drawer-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--champagne);
    transition: all 0.3s ease;
}

.cart-drawer-close:hover {
    background: rgba(201, 169, 110, 0.1);
    color: var(--gold);
    transform: rotate(90deg);
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 28px;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dark) transparent;
}

.cart-drawer-body::-webkit-scrollbar {
    width: 4px;
}

.cart-drawer-body::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 2px;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 12px;
}

.cart-empty-icon {
    font-size: 56px !important;
    color: rgba(201, 169, 110, 0.2);
}

.cart-empty-text {
    font-family: var(--font-headline);
    font-size: 18px;
    color: var(--champagne);
}

.cart-empty-subtext {
    font-size: 13px;
    color: rgba(245, 230, 200, 0.4);
}

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

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: rgba(201, 169, 110, 0.04);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: var(--radius-md);
    animation: cartItemIn 0.4s var(--ease-out-expo);
}

@keyframes cartItemIn {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

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

.cart-item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cart-item-name {
    font-family: var(--font-headline);
    font-size: 15px;
    font-weight: 600;
    color: var(--champagne);
    margin-bottom: 4px;
}

.cart-item-origin {
    font-family: var(--font-label);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 230, 200, 0.4);
    margin-bottom: 10px;
}

.cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item-qty button {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(201, 169, 110, 0.25);
    color: var(--gold);
    font-size: 14px;
    transition: all 0.3s ease;
}

.cart-item-qty button:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.cart-item-qty span {
    font-family: var(--font-label);
    font-size: 13px;
    font-weight: 600;
    color: var(--champagne);
    min-width: 20px;
    text-align: center;
}

.cart-item-price {
    font-family: var(--font-label);
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
}

.cart-item-remove {
    position: absolute;
    top: 8px;
    right: 8px;
}

.cart-drawer-footer {
    padding: 24px 28px;
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    background: rgba(10, 8, 6, 0.6);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cart-subtotal span:first-child {
    font-family: var(--font-label);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 230, 200, 0.6);
}

.cart-subtotal-price {
    font-family: var(--font-headline);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
}

.cart-shipping-note {
    font-size: 11px;
    color: rgba(245, 230, 200, 0.35);
    margin-bottom: 20px;
}

.cart-checkout-btn {
    width: 100%;
    justify-content: center;
}

/* ===================================================================
   QUICK VIEW MODAL
   =================================================================== */
.quickview-overlay {
    position: fixed;
    inset: 0;
    z-index: 9700;
    background: rgba(10, 8, 6, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.quickview-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 9800;
    width: 90vw;
    max-width: 900px;
    max-height: 85vh;
    background: var(--black-light);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: var(--radius-xl);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out-expo);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7),
                0 0 60px rgba(201, 169, 110, 0.05);
}

.quickview-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.quickview-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(10, 8, 6, 0.6);
    backdrop-filter: blur(10px);
    color: var(--champagne);
    transition: all 0.3s ease;
}

.quickview-close:hover {
    background: rgba(201, 169, 110, 0.2);
    color: var(--gold);
    transform: rotate(90deg);
}

.quickview-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
}

.quickview-image-col {
    background: var(--black-card);
    overflow: hidden;
}

.quickview-image-wrap {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.quickview-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out-expo);
}

.quickview-image-wrap:hover img {
    transform: scale(1.08);
}

.quickview-info-col {
    padding: 40px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.quickview-origin {
    font-family: var(--font-label);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.quickview-name {
    font-family: var(--font-headline);
    font-size: 28px;
    font-weight: 700;
    color: var(--champagne);
    line-height: 1.2;
    margin-bottom: 12px;
}

.quickview-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-bottom: 16px;
}

.quickview-rating .material-symbols-outlined {
    font-size: 18px;
    color: var(--gold);
    font-variation-settings: 'FILL' 1;
}

.quickview-rating .rating-count {
    font-family: var(--font-label);
    font-size: 12px;
    color: rgba(245, 230, 200, 0.4);
    margin-left: 6px;
}

.quickview-desc {
    font-size: 15px;
    font-weight: 300;
    color: rgba(245, 230, 200, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.quickview-price {
    font-family: var(--font-headline);
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 24px;
}

.quickview-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    padding: 20px;
    background: rgba(201, 169, 110, 0.04);
    border: 1px solid rgba(201, 169, 110, 0.1);
    border-radius: var(--radius-md);
}

.quickview-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 400;
    color: rgba(245, 230, 200, 0.6);
    letter-spacing: 0.5px;
}

.quickview-detail-item .material-symbols-outlined {
    font-size: 18px;
    color: var(--gold);
}

.quickview-qty-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.qty-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.qty-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--gold);
    background: rgba(201, 169, 110, 0.05);
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: rgba(201, 169, 110, 0.15);
}

.qty-value {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-label);
    font-size: 15px;
    font-weight: 600;
    color: var(--champagne);
    border-left: 1px solid rgba(201, 169, 110, 0.15);
    border-right: 1px solid rgba(201, 169, 110, 0.15);
}

.quickview-add-btn {
    flex: 1;
    justify-content: center;
    padding: 14px 24px;
}

/* ===================================================================
   SCROLL ANIMATIONS
   =================================================================== */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s var(--ease-out-expo),
                transform 0.8s var(--ease-out-expo);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children delays */
.products-grid .product-card:nth-child(1) { transition-delay: 0.05s; }
.products-grid .product-card:nth-child(2) { transition-delay: 0.15s; }
.products-grid .product-card:nth-child(3) { transition-delay: 0.25s; }
.products-grid .product-card:nth-child(4) { transition-delay: 0.35s; }

.collections-grid .collection-card:nth-child(1) { transition-delay: 0.05s; }
.collections-grid .collection-card:nth-child(2) { transition-delay: 0.15s; }
.collections-grid .collection-card:nth-child(3) { transition-delay: 0.25s; }

.testimonials-carousel .testimonial-card:nth-child(1) { transition-delay: 0.05s; }
.testimonials-carousel .testimonial-card:nth-child(2) { transition-delay: 0.15s; }
.testimonials-carousel .testimonial-card:nth-child(3) { transition-delay: 0.25s; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 1024px) {
    .story-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .testimonials-carousel {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-carousel .testimonial-card:nth-child(3) {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .hero-title {
        font-size: clamp(34px, 9vw, 56px);
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 16px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

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

    .collection-card {
        height: 320px;
    }

    .testimonials-carousel {
        grid-template-columns: 1fr;
    }

    .testimonials-carousel .testimonial-card:nth-child(3) {
        grid-column: span 1;
        max-width: 100%;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links-group {
        grid-template-columns: repeat(3, 1fr);
    }

    .input-group {
        flex-direction: column;
    }

    .newsletter-glass {
        padding: 40px 24px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-links-group {
        grid-template-columns: 1fr 1fr;
    }

    .section {
        padding: 80px 16px;
    }
}

/* ===================================================================
   VIP LOYALTY MODAL
   =================================================================== */
.vip-overlay {
    position: fixed;
    inset: 0;
    z-index: 9700;
    background: rgba(10, 8, 6, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.vip-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 9800;
    width: 90vw;
    max-width: 480px;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: var(--radius-xl);
    padding: 40px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s var(--ease-out-expo);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7),
                0 0 60px rgba(201, 169, 110, 0.05);
}

.vip-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.vip-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--champagne);
    transition: all 0.3s ease;
}

.vip-close:hover {
    background: rgba(201, 169, 110, 0.15);
    color: var(--gold);
    transform: rotate(90deg);
}

.vip-header {
    text-align: center;
    margin-bottom: 28px;
}

.vip-badge-crown {
    font-size: 40px;
    margin-bottom: 12px;
    filter: drop-shadow(0 0 10px rgba(201, 169, 110, 0.5));
    animation: pulse-gold 3s ease-in-out infinite;
}

.vip-title {
    font-family: var(--font-headline);
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
}

.vip-subtitle {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(245, 230, 200, 0.5);
}

.vip-profile-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(201, 169, 110, 0.04);
    border: 1px solid rgba(201, 169, 110, 0.15);
    border-radius: var(--radius-md);
    margin-bottom: 24px;
}

.vip-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-label);
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 0 15px rgba(201, 169, 110, 0.3);
}

.vip-name {
    font-family: var(--font-headline);
    font-size: 18px;
    font-weight: 600;
    color: var(--champagne);
}

.vip-rank {
    font-family: var(--font-label);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
}

.vip-points-section {
    margin-bottom: 28px;
}

.vip-points-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 12px;
}

.vip-points-number {
    font-family: var(--font-headline);
    font-size: 40px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.vip-points-label {
    font-family: var(--font-label);
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245, 230, 200, 0.5);
    margin-top: 4px;
}

.vip-progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(201, 169, 110, 0.15);
    border-radius: 3px;
    margin-bottom: 8px;
    overflow: hidden;
}

.vip-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
    border-radius: 3px;
    transition: width 1s ease-in-out;
}

.vip-progress-labels {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: rgba(245, 230, 200, 0.4);
}

.vip-section-title {
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.vip-perks-list {
    margin-bottom: 28px;
}

.vip-perk-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.vip-perk-icon {
    font-size: 20px;
    color: var(--gold);
    margin-top: 2px;
}

.vip-perk-text h5 {
    font-family: var(--font-label);
    font-size: 13px;
    font-weight: 600;
    color: var(--champagne);
    margin-bottom: 2px;
}

.vip-perk-text p {
    font-size: 11px;
    color: rgba(245, 230, 200, 0.5);
    line-height: 1.5;
}

.vip-promo-box {
    background: rgba(201, 169, 110, 0.05);
    border: 1px dashed rgba(201, 169, 110, 0.3);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
}

.vip-promo-title {
    display: block;
    font-family: var(--font-label);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.vip-promo-code-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.vip-promo-code {
    font-family: var(--font-label);
    font-size: 15px;
    font-weight: 700;
    color: var(--champagne);
    letter-spacing: 2px;
    background: rgba(10, 8, 6, 0.4);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(201, 169, 110, 0.15);
}

.vip-copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.vip-copy-btn:hover {
    background: var(--gold-light);
    box-shadow: 0 0 10px rgba(201, 169, 110, 0.4);
}

.vip-copy-btn .material-symbols-outlined {
    font-size: 14px;
}

/* ===================================================================
   VIP AUTHENTICATION STYLES (SUPABASE CLOUD)
   =================================================================== */
.auth-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
    padding-bottom: 8px;
    justify-content: center;
}

.auth-tab-btn {
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(245, 230, 200, 0.4);
    background: none;
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.auth-tab-btn:hover {
    color: var(--champagne);
}

.auth-tab-btn.active {
    color: var(--gold);
}

.auth-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -9px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    box-shadow: 0 0 10px rgba(201, 169, 110, 0.4);
}

.auth-form {
    display: none;
    flex-direction: column;
    gap: 20px;
}

.auth-form.active {
    display: flex;
    animation: formFadeIn 0.4s var(--ease-out-expo) forwards;
}

@keyframes formFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group label {
    font-family: var(--font-label);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(245, 230, 200, 0.5);
}

.auth-input {
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--champagne);
    background: rgba(10, 8, 6, 0.5);
    border: 1px solid rgba(201, 169, 110, 0.2);
    border-radius: var(--radius-sm);
    outline: none;
    transition: all 0.3s ease;
}

.auth-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 15px rgba(201, 169, 110, 0.15);
}

.auth-feedback {
    font-family: var(--font-body);
    font-size: 12px;
    text-align: center;
    min-height: 18px;
    transition: all 0.3s ease;
}

.auth-feedback.error {
    color: #ff6b6b;
    animation: shake 0.3s ease;
}

.auth-feedback.success {
    color: var(--gold);
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.auth-submit-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 24px;
}

.vip-logout-btn {
    transition: all 0.3s ease;
}

.vip-logout-btn:hover {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    border-color: rgba(255, 107, 107, 0.3) !important;
}

/* Spinner for Loading State */
.spinner-subtle {
    width: 14px;
    height: 14px;
    border: 2px solid rgba(245, 230, 200, 0.2);
    border-top: 2px solid var(--gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    margin-left: 8px;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

