/* ========================================
   NOIR ESSENCE™ — Luxury Perfume House
   Premium CSS with 3D, Gold & Rose Tones
   ======================================== */

/* ─── DESIGN TOKENS ─── */
:root {
    --bg-primary: #0a0a0a;
    /* Solid Premium Black */
    --bg-secondary: #121212;
    /* Deep Charcoal */
    --bg-accent-deep: #0f0f0f;
    --bg-card: #1a1a1a;
    --bg-glass: rgba(255, 255, 255, 0.03);
    --bg-glass-hover: rgba(255, 255, 255, 0.08);

    --gold: #d2c8b8;
    /* Muted Champagne Pearl */
    --gold-light: #e6dfd5;
    --gold-dark: #b8ac99;
    --rose: #eee2e4;
    /* Ultra-faded Pearl Rose */
    --rose-light: #f5edef;
    --rose-dark: #d6c4c8;

    --text-primary: #7a7a7a;
    /* Pearl Grey */
    --text-secondary: #9a9a9a;
    --text-muted: #cdcdcd;

    --border-subtle: rgba(210, 200, 184, 0.1);
    --border-gold: rgba(210, 200, 184, 0.15);
    --border-glow: rgba(210, 200, 184, 0.05);

    --gradient-gold: linear-gradient(135deg, #d2c8b8, #e6dfd5, #d2c8b8);
    --gradient-rose: linear-gradient(135deg, #eee2e4, #f5edef);
    --gradient-luxury: linear-gradient(135deg, #d2c8b8 0%, #eee2e4 50%, #e6dfd5 100%);
    --gradient-dark: radial-gradient(circle at center, #0a0a0a 0%, #050505 100%);

    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Cormorant Garamond', 'Garamond', serif;
    --font-accent: 'Outfit', sans-serif;

    --ease-luxury: cubic-bezier(0.25, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    --shadow-gold: 0 10px 40px rgba(166, 139, 90, 0.06);
    --shadow-rose: 0 10px 40px rgba(207, 154, 173, 0.06);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.01);
    --shadow-elevated: 0 15px 40px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] {
    --bg-primary: #f8f6f0;
    --bg-secondary: #ffffff;
    --bg-accent-deep: #f0eee8;
    --bg-card: #ffffff;
    --bg-glass: rgba(0, 0, 0, 0.03);
    --bg-glass-hover: rgba(0, 0, 0, 0.06);

    --text-primary: #333333;
    --text-secondary: #555555;
    --text-muted: #888888;
    
    --gold: #aa9166;
    --gold-light: #cca774;
    --gold-dark: #8a7040;
    
    --border-subtle: rgba(170, 145, 102, 0.15);
    --border-gold: rgba(170, 145, 102, 0.25);
    --border-glow: rgba(170, 145, 102, 0.1);

    --gradient-gold: linear-gradient(135deg, #cca774, #aa9166, #cca774);
    --gradient-luxury: linear-gradient(135deg, #aa9166 0%, #d6c4c8 50%, #cca774 100%);
    --gradient-dark: radial-gradient(circle at center, #f8f6f0 0%, #f0eee8 100%);
}

[data-theme="light"] .hero-video-overlay {
    background: radial-gradient(circle at center, transparent 0%, rgba(248, 246, 240, 0.6) 100%),
        linear-gradient(to bottom, rgba(248, 246, 240, 0.3) 0%, transparent 50%, rgba(248, 246, 240, 0.8) 100%);
}

[data-theme="light"] .hero-title, [data-theme="light"] .section-title, [data-theme="light"] .cta-title {
    color: #1a1a1a;
    text-shadow: 0 5px 25px rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .hero-description {
    color: rgba(0, 0, 0, 0.8) !important;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .hero-stat-label {
    color: rgba(0, 0, 0, 0.6) !important;
}

[data-theme="light"] .navbar.scrolled {
    background: rgba(248, 246, 240, 0.95);
}

[data-theme="light"] .btn-primary {
    color: #ffffff;
}

[data-theme="light"] .story-text {
    color: var(--text-secondary);
}

[data-theme="light"] .hero-image-container {
    filter: drop-shadow(0 20px 40px rgba(170, 145, 102, 0.2));
}

[data-theme="light"] .card-img {
    filter: drop-shadow(0 0 15px rgba(0,0,0,0.1));
}

[data-theme="light"] .collection-card {
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

/* Noise overlay removed for pure clean look */

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dark) var(--bg-primary);
    background: var(--bg-primary);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 3px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 18px;
    -webkit-font-smoothing: antialiased;
    transition: background 1.5s ease;
}

::selection {
    background: var(--gold);
    color: #fff;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s var(--ease-smooth);
}

a:hover {
    color: var(--gold-light);
}

img {
    max-width: 100%;
    display: block;
}

/* ─── UTILITY ─── */
.gold-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rose-text {
    background: var(--gradient-rose);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.luxury-text {
    background: var(--gradient-luxury);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}



/* ─── CURSOR GLOW REMOVED ─── */
.cursor-glow {
    display: none;
}

/* ─── PARTICLES REMOVED ─── */
.particles {
    display: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 10s infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-10vh) rotate(360deg);
        opacity: 0;
    }
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.5s var(--ease-luxury);
    backdrop-filter: blur(0px);
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-subtle);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ─── PREMIUM LOGO ─── */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.4s var(--ease-luxury);
}

.nav-logo:hover {
    transform: translateY(-1px);
}

.logo-wrapper {
    width: 52px;
    height: 52px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(178, 147, 91, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.5s var(--ease-luxury);
}

.nav-logo:hover .logo-wrapper {
    background: radial-gradient(circle, rgba(201, 169, 110, 0.2) 0%, transparent 70%);
    box-shadow: 0 0 20px rgba(201, 169, 110, 0.2);
}

.logo-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.nav-brand {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-brand sup {
    font-size: 0.5em;
    color: var(--gold);
    vertical-align: super;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-secondary);
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gradient-gold);
    transition: all 0.4s var(--ease-luxury);
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-nav-cta {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 30px;
    border: 1px solid var(--border-gold);
    color: var(--gold);
    text-decoration: none;
    border-radius: 50px;
    /* Ultra Soft */
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-luxury);
}

.btn-nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-nav-cta:hover {
    color: var(--bg-primary);
    border-color: var(--gold-light);
}

.btn-nav-cta:hover::before {
    opacity: 1;
}

.btn-nav-cta span {
    position: relative;
    z-index: 1;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 24px;
    height: 1.5px;
    background: var(--gold);
    transition: all 0.3s var(--ease-luxury);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(6.5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-6.5px);
}


/* ─── HERO SECTION ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
    background: #000;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-video-bg .bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 1s ease-in-out;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(10, 10, 10, 0.4) 100%),
        linear-gradient(to bottom, rgba(10, 10, 10, 0.3) 0%, transparent 50%, rgba(10, 10, 10, 0.6) 100%);
    z-index: 2;
    pointer-events: none;
}


.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero text */
.hero-content {
    padding-right: 40px;
}

.hero-tag {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-tag::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gradient-gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 400;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -1px;
    text-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
    color: #fff;
}

.hero-title .line {
    display: block;
}

.hero-title .italic {
    font-style: italic;
    font-weight: 400;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9) !important;
    max-width: 480px;
    margin-bottom: 40px;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 60px;
}

.btn-primary {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 18px 50px;
    background: var(--gradient-gold);
    color: #000;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease-luxury);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(210, 200, 184, 0.15);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(210, 200, 184, 0.25);
    color: #000;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px 45px;
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--border-gold);
    border-radius: 50px;
    /* Ultra Soft */
    cursor: pointer;
    transition: all 0.4s var(--ease-luxury);
}

.btn-secondary:hover {
    background: rgba(201, 169, 110, 0.08);
    border-color: var(--gold-light);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.hero-stat {
    position: relative;
}

.hero-stat::after {
    content: '';
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--border-subtle);
}

.hero-stat:last-child::after {
    display: none;
}

.hero-stat-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-stat-label {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-top: 4px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

/* ─── 3D PERFUME BOTTLE ─── */
/* Hero Visual Flat */
.hero-visual {
    position: relative;
}

/* High Fidelity Image Hero */
.hero-image-container {
    position: relative;
    z-index: 10;
    width: 320px;
    height: 480px;
    display: none;
    opacity: 0;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.08));
    transition: all 0.8s var(--ease-luxury);
}

.hero-product-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    animation: heroImgFloat 6s ease-in-out infinite;
}

@keyframes heroImgFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}



.bottle-scene {
    position: relative;
    width: 420px;
    height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottle-3d {
    position: relative;
    transition: transform 0.1s linear;
    animation: bottleFloat 6s ease-in-out infinite;
}

@keyframes bottleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-15px);
    }

    50% {
        transform: translateY(-8px);
    }

    75% {
        transform: translateY(-18px);
    }
}

/* Perfume Bottle 3D CSS Art */
.perfume-bottle {
    position: relative;
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.8s var(--ease-luxury);
}

/* HERO SHAPES */
.perfume-bottle.shape-slender .bottle-body {
    width: 110px;
    height: 280px;
    border-radius: 50px 50px 10px 10px;
}

.perfume-bottle.shape-slender .bottle-cap {
    width: 36px;
    height: 55px;
}

.perfume-bottle.shape-square .bottle-body {
    width: 180px;
    height: 180px;
    border-radius: 4px;
}

.perfume-bottle.shape-square .bottle-cap {
    width: 65px;
    height: 40px;
}

.perfume-bottle.shape-round .bottle-body {
    width: 200px;
    height: 200px;
    border-radius: 50%;
}

.perfume-bottle.shape-round .bottle-cap {
    width: 45px;
    height: 55px;
    border-radius: 50% 50% 2px 2px;
}

/* Cap - ORNATE GOLD */
.bottle-cap {
    width: 55px;
    height: 60px;
    background: var(--cap-gradient,
            repeating-linear-gradient(90deg,
                #8a7040 0px,
                #c9a96e 2px,
                #e8d5a8 4px,
                #c9a96e 6px,
                #8a7040 8px));
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px 4px 1px 1px;
    position: relative;
    z-index: 3;
    box-shadow:
        inset 1px 1px 3px rgba(255, 255, 255, 0.6),
        inset -1px -1px 3px rgba(166, 139, 90, 0.1),
        0 10px 30px rgba(166, 139, 90, 0.1);
    transition: transform 0.8s var(--ease-luxury);
}

.bottle-cap.opening {
    transform: translateY(-80px) rotate(10deg) scale(1.05);
    box-shadow: 0 40px 80px rgba(166, 139, 90, 0.1);
    animation: capShimmer 2s infinite alternate ease-in-out;
}

@keyframes capShimmer {
    0% {
        filter: brightness(1);
    }

    100% {
        filter: brightness(1.3) contrast(1.1);
    }
}



.bottle-cap::before {
    content: '';
    position: absolute;
    top: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    border-radius: 2px;
}

.bottle-cap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 8px;
    background: linear-gradient(180deg, #c9a96e, #a88a50);
    border-radius: 2px;
}

/* Neck - ENGRAVED GOLD */
.bottle-neck {
    width: 40px;
    height: 42px;
    background: linear-gradient(180deg, #c9a96e 0%, #8a7040 100%);
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-top: none;
    position: relative;
    z-index: 2;
    box-shadow:
        inset 2px 0 5px rgba(255, 255, 255, 0.3),
        inset -2px 0 5px rgba(166, 139, 90, 0.1);
}

.bottle-neck::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.1) 0px, rgba(0, 0, 0, 0.1) 1px, transparent 1px, transparent 4px),
        repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.1) 0px, rgba(0, 0, 0, 0.1) 1px, transparent 1px, transparent 4px);
    opacity: 0.5;
}

.bottle-neck::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15), transparent);
}



/* PNG Image Bottle Styling */
.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

.hero-product-img {
    max-width: 320px;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.1));
    animation: imageFloat 6s ease-in-out infinite;
}

@keyframes imageFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}


/* Body - BEST PHOTO-REALISTIC GLASS */
.bottle-body {
    width: 160px;
    height: 240px;
    background: linear-gradient(135deg,
            rgba(20, 15, 30, 0.98) 0%,
            rgba(40, 25, 50, 0.95) 30%,
            rgba(15, 12, 25, 0.98) 70%,
            rgba(25, 18, 40, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    backdrop-filter: blur(35px);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.2),
        inset 0 0 0 10px rgba(255, 255, 255, 0.03),
        /* Thick glass edge */
        inset -25px 0 60px rgba(166, 139, 90, 0.15),
        inset 25px 0 60px rgba(255, 255, 255, 0.05),
        0 50px 100px rgba(166, 139, 90, 0.1),
        0 0 80px rgba(201, 169, 110, 0.05);
}

/* Glass Specular Highlights */
.bottle-body::after {
    content: '';
    position: absolute;
    top: 5%;
    left: 12%;
    width: 30%;
    height: 90%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.2) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            transparent 100%);
    border-radius: 4px;
    z-index: 6;
    pointer-events: none;
    filter: blur(1px);
}

.bottle-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg,
            transparent 35%,
            rgba(255, 255, 255, 0.1) 48%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.1) 52%,
            transparent 65%);
    z-index: 5;
    pointer-events: none;
    animation: bottleShine 10s infinite linear;
}

@keyframes bottleShine {
    0% {
        transform: translateX(-150%) skewX(-15deg);
    }

    100% {
        transform: translateX(250%) skewX(-15deg);
    }
}

/* Liquid inside */
.bottle-liquid {
    position: absolute;
    bottom: 0;
    left: 8px;
    right: 8px;
    height: 75%;
    background: linear-gradient(180deg,
            rgba(201, 169, 110, 0.08) 0%,
            rgba(201, 169, 110, 0.15) 50%,
            rgba(212, 120, 156, 0.12) 100%);
    border-radius: 0 0 8px 8px;
    animation: liquidWave 4s ease-in-out infinite;
}

@keyframes liquidWave {

    0%,
    100% {
        height: 75%;
    }

    50% {
        height: 73%;
    }
}

.bottle-liquid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            transparent,
            rgba(201, 169, 110, 0.3),
            rgba(212, 120, 156, 0.2),
            transparent);
    animation: liquidSurface 3s ease-in-out infinite;
}

@keyframes liquidSurface {

    0%,
    100% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }
}

/* Label - ROYAL GOLD ETCHED */
.bottle-label {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 70%;
    padding: 20px 5px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 0.5px solid rgba(201, 169, 110, 0.1);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 40px rgba(166, 139, 90, 0.05);
}

.bottle-label::before {
    content: '♛';
    display: block;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 6px;
    filter: drop-shadow(0 0 10px rgba(201, 169, 110, 0.5));
}

.label-brand {
    font-family: var(--font-display);
    font-size: 0.5rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    opacity: 0.8;
}

.label-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 4px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(201, 169, 110, 0.4));
}

.label-line {
    width: 40px;
    height: 1px;
    background: var(--gradient-gold);
    margin: 8px auto;
}

.label-type {
    font-family: var(--font-accent);
    font-size: 0.55rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.label-vol {
    font-family: var(--font-accent);
    font-size: 0.5rem;
    letter-spacing: 3px;
    color: var(--gold-dark);
    margin-top: 6px;
}

/* Shine effects */
.bottle-shine {
    position: absolute;
    top: 0;
    left: 15%;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent 10%, rgba(255, 255, 255, 0.08) 50%, transparent 90%);
    z-index: 3;
}

.bottle-shine-2 {
    position: absolute;
    top: 0;
    right: 20%;
    width: 1px;
    height: 60%;
    background: linear-gradient(180deg, transparent, rgba(201, 169, 110, 0.1), transparent);
    z-index: 3;
}

/* Shadow */
.bottle-shadow {
    width: 120px;
    height: 20px;
    background: radial-gradient(ellipse, rgba(201, 169, 110, 0.15) 0%, transparent 70%);
    margin: 15px auto 0;
    animation: shadowPulse 6s ease-in-out infinite;
}

@keyframes shadowPulse {

    0%,
    100% {
        transform: scaleX(1);
        opacity: 0.8;
    }

    25% {
        transform: scaleX(0.9);
        opacity: 0.6;
    }

    75% {
        transform: scaleX(0.85);
        opacity: 0.5;
    }
}

/* ─── BOTTLE MOTION REMOVED ─── */
.bottle-floats,
.bottle-orbit,
.bottle-glow {
    display: none;
}


/* ─── BRANDS / MARQUEE ─── */
.brands-section {
    padding: 70px 0;
    border-top: 1px solid rgba(210, 200, 184, 0.1);
    border-bottom: 1px solid rgba(210, 200, 184, 0.1);
    overflow: hidden;
    position: relative;
    z-index: 2;
    background: #080808;
    display: flex;
    align-items: center;
}

/* Atmospheric Glow */
.brands-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(166, 139, 90, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(201, 169, 110, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Sweeping Light Beam */
.brands-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(210, 200, 184, 0.02) 45%,
            rgba(210, 200, 184, 0.08) 50%,
            rgba(210, 200, 184, 0.02) 55%,
            transparent 100%);
    animation: sweepingLight 12s infinite linear;
    pointer-events: none;
}

@keyframes sweepingLight {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(200%);
    }
}

.brands-marquee {
    display: flex;
    gap: 80px;
    animation: marquee 35s linear infinite;
    width: max-content;
    will-change: transform;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.brand-item {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    letter-spacing: 4px;
    font-weight: 500;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: color 0.4s;
}

.brand-item:hover {
    color: var(--gold-light);
}

.brand-item .diamond {
    display: none;
}

.marquee-bottle {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.6));
    transition: all 0.6s var(--ease-luxury);
    opacity: 0.85;
    user-select: none;
    pointer-events: none;
    margin: 0 -10px;
    animation: bottleGentlePulse 4s ease-in-out infinite;
}

@keyframes bottleGentlePulse {

    0%,
    100% {
        transform: scale(1) translateY(0);
        filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.6));
    }

    50% {
        transform: scale(1.05) translateY(-3px);
        filter: drop-shadow(0 8px 20px rgba(166, 139, 90, 0.2));
    }
}

.brands-marquee:hover .marquee-bottle {
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ─── SECTION COMMON ─── */
.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-tag {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gradient-gold);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 400;
    /* Softened weight */
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 16px auto 0;
    line-height: 1.8;
}

/* ─── COLLECTIONS SECTION ─── */
.collections {
    padding: 120px 0;
    position: relative;
    z-index: 2;
    background: var(--bg-primary);
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.collections-footer {
    text-align: center;
    margin-top: 40px;
}

.collection-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    /* Softened corners */
    overflow: hidden;
    position: relative;
    transition: all 0.5s var(--ease-luxury);
    /* Group styling enabled */
    perspective: 800px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.collection-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.collection-card:nth-child(2) {
    transform: translateY(-20px);
}

.collection-card:nth-child(2):hover {
    transform: translateY(-28px);
}

.card-visual {
    height: 340px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.card-glow {
    display: none;
}

/* Mini 3D Bottles - BEST STANDARD */
.mini-perfume {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.6s var(--ease-luxury);
    animation: miniFloat 5s ease-in-out infinite;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
}

.collection-card:hover .mini-perfume {
    transform: scale(1.08) translateY(-15px) rotateY(10deg);
}

@keyframes miniFloat {

    0%,
    100% {
        transform: translateY(0) rotateY(0deg);
    }

    50% {
        transform: translateY(-12px) rotateY(5deg);
    }
}

/* Collection Card Image Styling */
.card-image-wrap {
    width: 220px;
    height: 280px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 5;
    transition: transform 0.6s var(--ease-luxury);
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: miniFloat 5s ease-in-out infinite;
}

.collection-card:hover .card-image-wrap {
    transform: scale(1.1) translateY(-10px);
}

.mini-cap {
    width: 32px;
    height: 35px;
    background: var(--cap-gradient,
            repeating-linear-gradient(90deg,
                #8a7040 0px,
                #c9a96e 1px,
                #e8d5a8 2px,
                #c9a96e 3px,
                #8a7040 4px));
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px 4px 1px 1px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.mini-cap::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 6px;
    background: linear-gradient(180deg, #c9a96e, #8a7040);
    border-radius: 2px;
}

.mini-neck {
    width: 24px;
    height: 18px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: none;
    margin: 0 auto;
    position: relative;
    z-index: 4;
}

.mini-body {
    width: 105px;
    height: 155px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    box-shadow:
        inset 0 0 0 6px rgba(255, 255, 255, 0.02),
        inset -8px 0 20px rgba(166, 139, 90, 0.05);
}

/* MINI GLASS SHINE */
.mini-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg,
            transparent 40%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 60%);
    z-index: 3;
    pointer-events: none;
    animation: miniGlassShine 6s infinite;
}

@keyframes miniGlassShine {
    0% {
        transform: translateX(-150%) skewX(-15deg);
    }

    100% {
        transform: translateX(150%) skewX(-15deg);
    }
}

/* MINI SHAPES */
.mini-perfume.shape-slender .mini-body {
    width: 80px;
    height: 175px;
    border-radius: 40px 40px 8px 8px;
}

.mini-perfume.shape-slender .mini-cap {
    width: 24px;
    height: 40px;
}

.mini-perfume.shape-square .mini-body {
    width: 125px;
    height: 125px;
    border-radius: 3px;
    border-width: 1.5px;
}

.mini-perfume.shape-square .mini-cap {
    width: 45px;
    height: 28px;
}

.mini-perfume.shape-round .mini-body {
    width: 140px;
    height: 140px;
    border-radius: 50%;
}

.mini-perfume.shape-round .mini-cap {
    width: 32px;
    height: 38px;
    border-radius: 50% 50% 2px 2px;
}

.mini-body-inner {
    position: absolute;
    bottom: 0;
    left: 4px;
    right: 4px;
    height: 70%;
    border-radius: 0 0 6px 6px;
}

.mini-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 80%;
}

.mini-label::before {
    content: '♛';
    display: block;
    font-size: 0.8rem;
    color: var(--gold);
    margin-bottom: 2px;
}

.mini-label-brand {
    font-family: var(--font-display);
    font-size: 0.4rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
}

.mini-label-name {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.mini-label-line {
    width: 24px;
    height: 1px;
    background: var(--gold-dark);
    margin: 4px auto;
}

.mini-shadow {
    width: 70px;
    height: 12px;
    background: radial-gradient(ellipse, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
    margin: 10px auto 0;
}



/* Card info */
.card-info {
    padding: 28px 28px 32px;
}

.card-category {
    font-family: var(--font-accent);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.card-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.card-notes {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.card-price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--gold);
}

.card-price .old {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 8px;
    font-weight: 400;
}

.card-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border-gold);
    background: transparent;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-luxury);
    border-radius: 50%;
}

.card-btn:hover {
    background: var(--gold);
    color: var(--bg-primary);
    transform: scale(1.1);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-accent);
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 14px;
    background: rgba(201, 169, 110, 0.15);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    backdrop-filter: blur(10px);
    z-index: 3;
}

/* ─── NOTES / INGREDIENTS ─── */
.notes-section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
    background: var(--bg-secondary);
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.note-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    /* Softened corners */
    padding: 40px;
    text-align: center;
    transition: all 0.4s var(--ease-luxury);
    position: relative;
    overflow: hidden;
}

.note-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.note-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-8px);
    box-shadow: var(--shadow-gold);
}

.note-card:hover::before {
    opacity: 1;
}

.note-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}



.note-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--gold-light);
}

.note-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ─── STORY / ABOUT ─── */
.story-section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-frame {
    width: 360px;
    height: 440px;
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.03), rgba(212, 120, 156, 0.02));
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-frame::before {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
}

.story-inner-art {
    text-align: center;
}

.story-art-diamond {
    width: 80px;
    height: 80px;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.story-art-diamond::before {
    content: 'N';
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--gold);
    transform: rotate(-45deg);
}

.story-art-text {
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold-dark);
}

.story-art-year {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: var(--text-muted);
    margin-top: 8px;
}

.story-float-1,
.story-float-2 {
    position: absolute;
    border: 1px solid var(--border-subtle);
    border-radius: 4px;
}

.story-float-1 {
    width: 120px;
    height: 120px;
    top: 20px;
    right: 20px;
    animation: storyFloat 6s ease-in-out infinite;
}

.story-float-2 {
    width: 80px;
    height: 80px;
    bottom: 40px;
    left: 40px;
    animation: storyFloat 8s ease-in-out 2s infinite;
}

@keyframes storyFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(3deg);
    }
}

.story-content {
    padding-left: 20px;
}

.story-tag {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.story-tag::before {
    content: '';
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.story-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 24px;
}

.story-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 16px;
}

.story-features {
    margin-top: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.story-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
}

.story-feature-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.story-feature-text {
    font-family: var(--font-accent);
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
    padding: 120px 0;
    position: relative;
    z-index: 2;
    background: transparent;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 36px;
    transition: all 0.5s var(--ease-luxury);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--gold-dark);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(201, 169, 110, 0.08);
}

.testimonial-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-role {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ─── CTA SECTION ─── */
.cta-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    background: var(--bg-secondary);
}

.cta-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-box {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 32px;
    /* Softened corners */
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(201, 169, 110, 0.04), transparent 50%);
    animation: ctaShine 10s linear infinite;
}

@keyframes ctaShine {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 400;
    margin-bottom: 16px;
    position: relative;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    position: relative;
}

.cta-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.cta-input {
    flex: 1;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.cta-input::placeholder {
    color: var(--text-muted);
}

.cta-input:focus {
    border-color: var(--gold);
}



.cta-submit {
    padding: 16px 32px;
    background: var(--gradient-gold);
    color: #fff;
    border: none;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s var(--ease-luxury);
}

.cta-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(166, 139, 90, 0.1);
}


/* ─── FOOTER ─── */
.footer {
    border-top: 1px solid var(--border-subtle);
    padding: 100px 0 40px;
    position: relative;
    z-index: 2;
    background: var(--bg-primary);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s;
}

.social-link:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.footer-links h4 {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* ─── TOAST ─── */
.toast {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-gold);
    padding: 16px 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold-dark);
    font-family: var(--font-accent);
    font-size: 0.85rem;
    z-index: 9999;
    transform: translateY(120px);
    opacity: 0;
    transition: all 0.4s var(--ease-luxury);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* ─── SCROLL ANIMATIONS (AOS) ─── */
[data-aos] {
    opacity: 0;
    transition: all 0.8s var(--ease-luxury);
}

[data-aos="fade-up"] {
    transform: translateY(40px);
}

[data-aos="fade-down"] {
    transform: translateY(-40px);
}

[data-aos="fade-left"] {
    transform: translateX(40px);
}

[data-aos="fade-right"] {
    transform: translateX(-40px);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: none;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-description {
        margin: 0 auto 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-tag {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .bottle-scene {
        width: 340px;
        height: 440px;
    }

    .bottle-orbit-1 {
        width: 280px;
        height: 280px;
    }

    .bottle-orbit-2 {
        width: 360px;
        height: 360px;
    }

    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .collection-card:nth-child(2) {
        transform: none;
    }

    .notes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .story-visual {
        height: 400px;
    }

    .story-content {
        padding-left: 0;
        text-align: center;
    }

    .story-tag {
        justify-content: center;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 16px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px;
        gap: 24px;
        transition: right 0.5s var(--ease-luxury);
        border-left: 1px solid var(--border-subtle);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .btn-nav-cta {
        display: none;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .section-container {
        padding: 0 20px;
    }

    .hero-container {
        padding: 0 20px;
    }

    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .bottle-scene {
        width: 280px;
        height: 380px;
    }

    .perfume-bottle {
        transform: scale(0.85);
    }

    .bottle-orbit-1 {
        width: 240px;
        height: 240px;
    }

    .bottle-orbit-2 {
        width: 300px;
        height: 300px;
    }

    .collections-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .notes-grid {
        grid-template-columns: 1fr 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .story-features {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .cta-box {
        padding: 40px 24px;
    }

    .cta-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .bottle-scene {
        width: 240px;
        height: 340px;
    }

    .perfume-bottle {
        transform: scale(0.75);
    }

    .notes-grid {
        grid-template-columns: 1fr;
    }

    .hero-stat-value {
        font-size: 1.6rem;
    }
}

/* ─── CHECKOUT & PAYMENT OVERLAY ─── */
.checkout-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.3, 1);
}

.checkout-overlay.active {
    opacity: 1;
    visibility: visible;
}

.checkout-card {
    background: #111;
    border: 1px solid rgba(210, 200, 184, 0.15);
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    text-align: center;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.3, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    position: relative;
}

.checkout-overlay.active .checkout-card {
    transform: translateY(0);
}

.checkout-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.checkout-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d2c8b8;
    margin-bottom: 12px;
}

.checkout-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    color: #9a9a9a;
    font-size: 0.8rem;
    gap: 8px;
    z-index: 2;
}

.progress-step.active {
    color: var(--gold);
}

.progress-step span {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(210, 200, 184, 0.3);
    font-weight: bold;
}

.progress-step.active span {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
}

.progress-line {
    flex: 1;
    height: 2px;
    background: rgba(210, 200, 184, 0.2);
    margin: 0 10px;
    transform: translateY(-10px);
}


.checkout-desc {
    font-family: 'Outfit', sans-serif;
    color: #9a9a9a;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.payment-btn {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(210, 200, 184, 0.1);
    color: #fff;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.payment-btn:hover {
    background: rgba(210, 200, 184, 0.1);
    border-color: #d2c8b8;
}

.payment-btn.primary {
    background: #d2c8b8;
    color: #000;
    font-weight: 700;
}

.checkout-view {
    display: none;
    animation: fadeInView 0.5s ease;
}

.checkout-view.active {
    display: block;
}

@keyframes fadeInView {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.qr-placeholder {
    width: 140px;
    height: 140px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(210, 200, 184, 0.3);
    border-radius: 16px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.card-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.card-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(210, 200, 184, 0.1);
    border-radius: 10px;
    color: #fff;
    font-family: var(--font-accent);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s;
}

.card-input:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.link-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-accent);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 15px;
    cursor: pointer;
    transition: color 0.3s;
}

.link-btn:hover {
    color: var(--gold);
}

.processing-loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(210, 200, 184, 0.2);
    border-top-color: #d2c8b8;
    border-radius: 50%;
    margin: 30px auto;
    animation: spinPay 1s linear infinite;
}

@keyframes spinPay {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.close-checkout {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
    z-index: 10;
}

.close-checkout:hover {
    opacity: 1;
}

/* ─── CART DRAWER ─── */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 420px;
    height: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(30px);
    z-index: 2000;
    transition: right 0.6s var(--ease-luxury);
    border-left: 1px solid rgba(210, 200, 184, 0.15);
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
}

.cart-drawer.active {
    right: 0;
}

.cart-header {
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--gold);
}

.close-drawer {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.close-drawer:hover {
    opacity: 1;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
}

.cart-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.cart-item-img {
    width: 80px;
    height: 100px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-img span {
    font-size: 2rem;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 5px;
}

.cart-item-price {
    font-family: var(--font-accent);
    color: var(--gold);
    font-size: 0.9rem;
}

.cart-footer {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.cart-total-label {
    font-family: var(--font-accent);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.cart-total-value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: #fff;
}

.cart-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 480px) {
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
}

/* ─── NAV CART ICON ─── */
.nav-cart-btn {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    position: relative;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.nav-cart-btn:hover {
    color: var(--gold);
}

.cart-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--gold);
    color: #000;
    font-size: 0.65rem;
    font-weight: 800;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cart-badge.active {
    opacity: 1;
    transform: scale(1);
}