/* =====================================================
   AMRISHY — LUXURY PERFUME WEBSITE
   STYLE.CSS
===================================================== */


/* =====================================================
   VARIABLES
===================================================== */

:root {

    --black: #080706;
    --black-2: #0e0c0a;
    --black-3: #15110d;

    --gold: #d6ad63;
    --gold-light: #f0d59b;
    --gold-dark: #9d7334;

    --cream: #f5efe4;
    --cream-dark: #c9c0b2;

    --wine: #571d2b;
    --wine-light: #7b3042;

    --white: #ffffff;

    --text: #f5efe4;
    --text-muted: #aaa096;

    --border: rgba(214, 173, 99, 0.22);

    --glass: rgba(255,255,255,0.045);

    --shadow:
        0 30px 80px rgba(0,0,0,0.5);

    --gold-shadow:
        0 15px 50px rgba(214,173,99,0.16);

    --transition:
        cubic-bezier(.22,1,.36,1);

}


/* =====================================================
   RESET
===================================================== */

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

html {
    scroll-behavior: smooth;
}

body {

    background:
        radial-gradient(
            circle at 80% 10%,
            rgba(87,29,43,0.15),
            transparent 28%
        ),
        var(--black);

    color: var(--text);

    font-family:
        "Montserrat",
        sans-serif;

    overflow-x: hidden;

}

body.modal-open,
body.drawer-open,
body.menu-open {
    overflow: hidden;
}

button,
input {
    font: inherit;
}

button {
    border: none;
    cursor: pointer;
}

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


/* =====================================================
   SELECTION
===================================================== */

::selection {
    background: var(--gold);
    color: var(--black);
}


/* =====================================================
   SCROLLBAR
===================================================== */

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(
        var(--gold-dark),
        var(--gold-light)
    );
}


/* =====================================================
   LOADER
===================================================== */

.loader {

    position: fixed;

    inset: 0;

    z-index: 9999;

    background: var(--black);

    display: flex;

    align-items: center;
    justify-content: center;

    transition:
        opacity .8s ease,
        visibility .8s ease;

}

.loader.hidden {

    opacity: 0;
    visibility: hidden;

}

.loader-content {

    text-align: center;

}

.loader-logo {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 54px;

    letter-spacing: 14px;

    color: var(--gold-light);

    margin-left: 14px;

}

.loader-line {

    width: 180px;

    height: 1px;

    background: rgba(214,173,99,.2);

    margin: 25px auto;

    overflow: hidden;

}

.loader-line span {

    display: block;

    width: 0;

    height: 100%;

    background: var(--gold);

    animation:
        loaderLine 1.7s
        cubic-bezier(.77,0,.18,1)
        forwards;

}

.loader-content p {

    font-size: 8px;

    letter-spacing: 5px;

    color: var(--text-muted);

}

@keyframes loaderLine {

    to {
        width: 100%;
    }

}


/* =====================================================
   CURSOR
===================================================== */

.cursor,
.cursor-follower {

    position: fixed;

    pointer-events: none;

    z-index: 10000;

    border-radius: 50%;

    transform:
        translate(-50%, -50%);

}

.cursor {

    width: 5px;
    height: 5px;

    background: var(--gold-light);

}

.cursor-follower {

    width: 32px;
    height: 32px;

    border: 1px solid
        rgba(214,173,99,.45);

    transition:
        width .25s,
        height .25s,
        background .25s;

}

.cursor.active .cursor-follower {
    width: 60px;
    height: 60px;
}

@media (max-width: 900px) {

    .cursor,
    .cursor-follower {
        display: none;
    }

}


/* =====================================================
   BACKGROUND
===================================================== */

.background-effects {

    position: fixed;

    inset: 0;

    z-index: -3;

    pointer-events: none;

    overflow: hidden;

}

.gold-orb {

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    filter: blur(100px);

    opacity: .07;

}

.orb-1 {

    background: var(--gold);

    top: -200px;
    right: -100px;

}

.orb-2 {

    background: var(--wine-light);

    bottom: -200px;
    left: -150px;

}

.orb-3 {

    background: var(--gold);

    top: 45%;
    left: 40%;

    opacity: .035;

}


/* =====================================================
   PARTICLES
===================================================== */

.particles {

    position: fixed;

    inset: 0;

    pointer-events: none;

    z-index: -1;

}

.particle {

    position: absolute;

    width: 2px;
    height: 2px;

    border-radius: 50%;

    background: var(--gold-light);

    opacity: .35;

    animation:
        particleFloat
        linear infinite;

}

@keyframes particleFloat {

    0% {
        transform:
            translateY(100vh)
            scale(.4);

        opacity: 0;
    }

    15% {
        opacity: .5;
    }

    80% {
        opacity: .3;
    }

    100% {
        transform:
            translateY(-20vh)
            scale(1.2);

        opacity: 0;
    }

}


/* =====================================================
   NAVBAR
===================================================== */

.navbar {

    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    z-index: 1000;

    height: 90px;

    padding:
        0 6vw;

    display: flex;

    align-items: center;
    justify-content: space-between;

    transition:
        background .4s ease,
        backdrop-filter .4s ease,
        border .4s ease;

}

.navbar.scrolled {

    background:
        rgba(8,7,6,.78);

    backdrop-filter:
        blur(20px);

    border-bottom:
        1px solid rgba(214,173,99,.1);

}

.logo {

    display: flex;

    flex-direction: column;

    line-height: .8;

}

.logo span {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 30px;

    font-weight: 600;

    letter-spacing: 8px;

    color: var(--gold-light);

}

.logo small {

    margin-top: 9px;

    font-size: 6px;

    letter-spacing: 4px;

    color: var(--text-muted);

}

.nav-links {

    display: flex;

    gap: 42px;

}

.nav-links a {

    position: relative;

    font-size: 11px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    color: var(--cream-dark);

    transition:
        color .3s ease;

}

.nav-links a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;

    height: 1px;

    background: var(--gold);

    transition:
        width .35s var(--transition);

}

.nav-links a:hover {

    color: var(--gold-light);

}

.nav-links a:hover::after {

    width: 100%;

}

.nav-actions {

    display: flex;

    align-items: center;

    gap: 15px;

}

.nav-icon {

    position: relative;

    width: 42px;
    height: 42px;

    border-radius: 50%;

    color: var(--cream);

    background:
        rgba(255,255,255,.025);

    border:
        1px solid rgba(255,255,255,.08);

    transition:
        all .35s var(--transition);

}

.nav-icon:hover {

    color: var(--gold-light);

    border-color:
        rgba(214,173,99,.4);

    transform:
        translateY(-3px);

}

.counter {

    position: absolute;

    top: -3px;
    right: -3px;

    width: 16px;
    height: 16px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--gold);

    color: var(--black);

    font-size: 8px;

    font-weight: 700;

}

.mobile-menu-btn {

    display: none;

    width: 42px;
    height: 42px;

    background: transparent;

    flex-direction: column;

    justify-content: center;

    gap: 5px;

}

.mobile-menu-btn span {

    width: 25px;

    height: 1px;

    background: var(--gold-light);

    transition: .3s;

}


/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu {

    position: fixed;

    inset: 0;

    z-index: 2000;

    background:
        radial-gradient(
            circle at center,
            rgba(87,29,43,.18),
            transparent 45%
        ),
        var(--black);

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    transform:
        translateX(100%);

    transition:
        transform .65s var(--transition);

}

.mobile-menu.open {

    transform:
        translateX(0);

}

.mobile-close {

    position: absolute;

    top: 28px;
    right: 28px;

    width: 45px;
    height: 45px;

    border-radius: 50%;

    color: var(--gold-light);

    background:
        rgba(255,255,255,.04);

}

.mobile-menu-logo {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 48px;

    letter-spacing: 10px;

    color: var(--gold-light);

    text-align: center;

}

.mobile-menu-logo span {

    display: block;

    margin-top: 10px;

    font-family:
        "Montserrat",
        sans-serif;

    font-size: 7px;

    letter-spacing: 4px;

    color: var(--text-muted);

}

.mobile-menu nav {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 30px;

    margin-top: 70px;

}

.mobile-menu nav a {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 35px;

    color: var(--cream);

}


/* =====================================================
   SEARCH PANEL
===================================================== */

.search-panel {

    position: fixed;

    inset: 0;

    z-index: 3000;

    background:
        rgba(8,7,6,.97);

    display: flex;

    align-items: flex-start;
    justify-content: center;

    padding-top: 15vh;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .4s ease,
        visibility .4s ease;

}

.search-panel.open {

    opacity: 1;

    visibility: visible;

}

.panel-close {

    position: absolute;

    top: 35px;
    right: 45px;

    width: 50px;
    height: 50px;

    border-radius: 50%;

    color: var(--gold-light);

    background:
        rgba(255,255,255,.04);

}

.search-inner {

    width: min(750px, 85%);

}

.search-inner > span {

    font-size: 9px;

    letter-spacing: 4px;

    color: var(--gold);

}

.search-input-wrapper {

    position: relative;

    margin-top: 20px;

}

.search-input-wrapper input {

    width: 100%;

    padding:
        20px 60px 20px 0;

    border: none;

    border-bottom:
        1px solid
        rgba(214,173,99,.35);

    outline: none;

    background: transparent;

    color: var(--cream);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 35px;

}

.search-input-wrapper i {

    position: absolute;

    right: 0;
    top: 50%;

    transform:
        translateY(-50%);

    color: var(--gold);

}

.search-results {

    margin-top: 30px;

}

.search-result {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 18px 0;

    border-bottom:
        1px solid
        rgba(255,255,255,.07);

    cursor: pointer;

}

.search-result:hover {

    color: var(--gold-light);

}

.search-result span {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 25px;

}

.search-result small {

    color: var(--text-muted);

}


/* =====================================================
   HERO
===================================================== */

.hero {

    position: relative;

    min-height: 100vh;

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    align-items: center;

    padding:
        130px 8vw
        80px;

    overflow: hidden;

}

.hero-grid {

    position: absolute;

    inset: 0;

    opacity: .14;

    background-image:

        linear-gradient(
            rgba(214,173,99,.06) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(214,173,99,.06) 1px,
            transparent 1px
        );

    background-size:
        100px 100px;

    mask-image:
        radial-gradient(
            ellipse at center,
            black,
            transparent 75%
        );

}

.hero-content {

    position: relative;

    z-index: 2;

    max-width: 650px;

}

.eyebrow {

    display: flex;

    align-items: center;

    gap: 15px;

    font-size: 8px;

    letter-spacing: 4px;

    color: var(--gold);

    margin-bottom: 25px;

}

.eyebrow span {

    width: 35px;

    height: 1px;

    background: var(--gold);

}

.hero h1 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(70px, 8vw, 125px);

    line-height: .78;

    font-weight: 500;

    letter-spacing: -4px;

    margin-bottom: 35px;

}

.hero h1 em {

    display: block;

    color: var(--gold-light);

    font-weight: 400;

    font-style: italic;

}

.hero-description {

    max-width: 500px;

    color: var(--text-muted);

    font-size: 13px;

    line-height: 1.9;

    margin-bottom: 40px;

}

.hero-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

}


/* =====================================================
   BUTTONS
===================================================== */

.btn {

    position: relative;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 20px;

    min-height: 56px;

    padding:
        0 27px;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    overflow: hidden;

    transition:
        transform .4s var(--transition),
        box-shadow .4s ease;

}

.btn::before {

    content: "";

    position: absolute;

    inset: 0;

    transform:
        translateX(-105%);

    transition:
        transform .55s var(--transition);

}

.btn:hover::before {

    transform:
        translateX(0);

}

.btn span,
.btn i {

    position: relative;

    z-index: 2;

}

.btn-gold {

    color: var(--black);

    background:
        linear-gradient(
            110deg,
            var(--gold-dark),
            var(--gold-light),
            var(--gold)
        );

    box-shadow:
        0 15px 45px
        rgba(214,173,99,.15);

}

.btn-gold::before {

    background:
        linear-gradient(
            110deg,
            var(--gold-light),
            white,
            var(--gold-light)
        );

}

.btn:hover {

    transform:
        translateY(-5px);

}

.btn-outline {

    color: var(--cream);

    border:
        1px solid
        rgba(214,173,99,.35);

    background:
        rgba(255,255,255,.015);

}

.btn-outline::before {

    background:
        rgba(214,173,99,.1);

}


/* =====================================================
   HERO PERFUME
===================================================== */

.hero-perfume {

    position: relative;

    min-height: 620px;

    display: flex;

    align-items: center;
    justify-content: center;

}

.hero-glow {

    position: absolute;

    width: 450px;
    height: 450px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(214,173,99,.24),
            rgba(87,29,43,.1) 40%,
            transparent 70%
        );

    filter: blur(20px);

    animation:
        heroGlow 5s ease-in-out infinite;

}

@keyframes heroGlow {

    0%,100% {
        transform: scale(.9);
        opacity: .6;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }

}

.perfume-bottle {

    position: relative;

}

.hero-bottle {

    width: 260px;

    animation:
        bottleFloat 6s ease-in-out infinite;

    filter:
        drop-shadow(
            0 35px 35px
            rgba(0,0,0,.65)
        );

}

@keyframes bottleFloat {

    0%,100% {
        transform:
            translateY(0)
            rotate(-2deg);
    }

    50% {
        transform:
            translateY(-25px)
            rotate(2deg);
    }

}

.bottle-cap {

    width: 125px;
    height: 75px;

    margin: auto;

    background:
        linear-gradient(
            90deg,
            #17120d,
            #6d512b,
            #17120d
        );

    border:
        1px solid
        rgba(214,173,99,.4);

    box-shadow:
        inset 0 0 20px rgba(0,0,0,.7);

}

.cap-top {

    height: 12px;

    background:
        linear-gradient(
            90deg,
            #76552b,
            #e5c783,
            #76552b
        );

}

.bottle-neck {

    width: 82px;
    height: 35px;

    margin: auto;

    background:
        linear-gradient(
            90deg,
            #1b1510,
            #8c6938,
            #1b1510
        );

    border-left:
        1px solid
        rgba(214,173,99,.35);

    border-right:
        1px solid
        rgba(214,173,99,.35);

}

.bottle-body {

    position: relative;

    width: 260px;
    height: 370px;

    border-radius:
        22px 22px 30px 30px;

    background:
        linear-gradient(
            110deg,
            #100c0a,
            #302019 40%,
            #080706 75%
        );

    border:
        1px solid
        rgba(214,173,99,.55);

    box-shadow:
        inset 15px 0 35px rgba(255,255,255,.025),
        inset -20px 0 40px rgba(0,0,0,.7);

    overflow: hidden;

}

.bottle-reflection {

    position: absolute;

    top: -10%;

    left: 18%;

    width: 25%;

    height: 120%;

    transform:
        rotate(15deg);

    background:
        linear-gradient(
            transparent,
            rgba(255,255,255,.08),
            transparent
        );

}

.bottle-label {

    position: absolute;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    width: 170px;

    padding: 30px 15px;

    text-align: center;

    border:
        1px solid
        rgba(214,173,99,.45);

    background:
        rgba(5,4,3,.5);

}

.bottle-label small {

    display: block;

    font-size: 7px;

    letter-spacing: 4px;

    color: var(--gold);

}

.bottle-label strong {

    display: block;

    margin: 10px 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 35px;

    letter-spacing: 5px;

}

.bottle-label span {

    display: block;

    font-size: 6px;

    letter-spacing: 2px;

    color: var(--text-muted);

}

.floating-card {

    position: absolute;

    z-index: 4;

    padding: 15px 18px;

    background:
        rgba(12,10,8,.7);

    backdrop-filter:
        blur(15px);

    border:
        1px solid
        rgba(214,173,99,.25);

    box-shadow:
        var(--shadow);

}

.floating-card span {

    display: block;

    font-size: 7px;

    letter-spacing: 2px;

    color: var(--text-muted);

}

.floating-card strong {

    display: block;

    margin-top: 5px;

    color: var(--gold-light);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 25px;

}

.card-top {

    top: 17%;

    right: 4%;

    animation:
        floatingCard 5s ease-in-out infinite;

}

.card-bottom {

    bottom: 15%;

    left: 7%;

    animation:
        floatingCard 5s
        1.5s
        ease-in-out
        infinite;

}

@keyframes floatingCard {

    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

}

.hero-scroll {

    position: absolute;

    bottom: 35px;

    left: 8vw;

    display: flex;

    align-items: center;

    gap: 15px;

    color: var(--text-muted);

    font-size: 7px;

    letter-spacing: 3px;

}

.scroll-line {

    width: 70px;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            var(--gold),
            transparent
        );

}


/* =====================================================
   MARQUEE
===================================================== */

.marquee-section {

    border-top:
        1px solid
        rgba(214,173,99,.12);

    border-bottom:
        1px solid
        rgba(214,173,99,.12);

    overflow: hidden;

    padding: 23px 0;

    background:
        rgba(214,173,99,.025);

}

.marquee {

    overflow: hidden;

}

.marquee-content {

    display: flex;

    align-items: center;

    gap: 35px;

    width: max-content;

    animation:
        marquee 25s linear infinite;

}

.marquee-content span {

    font-size: 9px;

    letter-spacing: 4px;

    color: var(--gold-light);

}

.marquee-content i {

    font-size: 6px;

    color: var(--gold);

}

@keyframes marquee {

    to {
        transform:
            translateX(-50%);
    }

}


/* =====================================================
   SECTIONS
===================================================== */

.section {

    position: relative;

    padding:
        130px 8vw;

}

.section-header {

    display: grid;

    grid-template-columns:
        1.3fr .7fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 65px;

}

.section-kicker {

    display: inline-block;

    margin-bottom: 18px;

    color: var(--gold);

    font-size: 8px;

    letter-spacing: 4px;

}

.section-header h2,
.notes-header h2 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(50px, 6vw, 85px);

    line-height: .9;

    font-weight: 500;

}

.section-header h2 em,
.notes-header h2 em {

    color: var(--gold-light);

    font-weight: 400;

}

.section-header > p {

    color: var(--text-muted);

    font-size: 12px;

    line-height: 1.9;

    max-width: 400px;

}


/* =====================================================
   FILTERS
===================================================== */

.collection-controls {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    margin-bottom: 35px;

}

.filter-tabs {

    display: flex;

    gap: 8px;

    flex-wrap: wrap;

}

.filter-btn {

    position: relative;

    padding:
        13px 22px;

    color: var(--text-muted);

    background:
        transparent;

    border:
        1px solid
        rgba(255,255,255,.08);

    font-size: 8px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition:
        all .35s var(--transition);

}

.filter-btn:hover,
.filter-btn.active {

    color: var(--black);

    background: var(--gold-light);

    border-color:
        var(--gold-light);

    transform:
        translateY(-3px);

}

.collection-count {

    font-size: 7px;

    letter-spacing: 3px;

    color: var(--text-muted);

}

.collection-count span {

    color: var(--gold-light);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 25px;

    margin-right: 5px;

}


/* =====================================================
   PRODUCT GRID
===================================================== */

.products-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;

}

.product-card {

    position: relative;

    overflow: hidden;

    min-height: 570px;

    background:
        linear-gradient(
            145deg,
            #12100d,
            #0b0908
        );

    border:
        1px solid
        rgba(255,255,255,.07);

    cursor: pointer;

    transition:
        transform .6s var(--transition),
        border .4s ease;

    opacity: 0;

    transform:
        translateY(35px);

}

.product-card.visible {

    opacity: 1;

    transform:
        translateY(0);

}

.product-card:hover {

    transform:
        translateY(-12px);

    border-color:
        rgba(214,173,99,.3);

}

.product-card-image {

    position: relative;

    height: 370px;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(214,173,99,.13),
            transparent 55%
        );

}

.product-card-image::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 60%,
            #0b0908 100%
        );

}

.product-bottle {

    position: relative;

    width: 125px;

    z-index: 2;

    transition:
        transform .7s var(--transition);

    filter:
        drop-shadow(
            0 30px 25px
            rgba(0,0,0,.7)
        );

}

.product-card:hover .product-bottle {

    transform:
        translateY(-15px)
        rotate(3deg)
        scale(1.04);

}

.product-cap {

    width: 65px;
    height: 45px;

    margin: auto;

    background:
        linear-gradient(
            90deg,
            #17120d,
            #8c6938,
            #17120d
        );

    border:
        1px solid
        rgba(214,173,99,.4);

}

.product-neck {

    width: 45px;
    height: 20px;

    margin: auto;

    background:
        linear-gradient(
            90deg,
            #211a13,
            #b28a4a,
            #211a13
        );

}

.product-body {

    position: relative;

    height: 205px;

    border-radius:
        12px 12px 18px 18px;

    background:
        linear-gradient(
            110deg,
            #17120f,
            #463122 45%,
            #0a0807 80%
        );

    border:
        1px solid
        rgba(214,173,99,.45);

    overflow: hidden;

}

.product-body::before {

    content: "";

    position: absolute;

    top: 0;
    left: 15%;

    width: 17%;
    height: 100%;

    transform:
        skewX(-8deg);

    background:
        rgba(255,255,255,.06);

}

.product-label {

    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    width: 82px;

    padding: 15px 7px;

    text-align: center;

    background:
        rgba(7,6,5,.6);

    border:
        1px solid
        rgba(214,173,99,.4);

}

.product-label small {

    display: block;

    color: var(--gold);

    font-size: 5px;

    letter-spacing: 2px;

}

.product-label strong {

    display: block;

    margin: 5px 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 19px;

    letter-spacing: 2px;

}

.product-info {

    position: relative;

    padding: 0 27px 27px;

    z-index: 3;

}

.product-category {

    color: var(--gold);

    font-size: 7px;

    letter-spacing: 3px;

}

.product-name {

    margin-top: 9px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 31px;

    font-weight: 500;

}

.product-tagline {

    margin-top: 4px;

    color: var(--text-muted);

    font-size: 10px;

}

.product-bottom {

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 20px;

}

.product-price {

    color: var(--gold-light);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 22px;

}

.product-open {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--gold-light);

    background:
        rgba(214,173,99,.08);

    border:
        1px solid
        rgba(214,173,99,.2);

    transition:
        all .4s var(--transition);

}

.product-card:hover .product-open {

    color: var(--black);

    background: var(--gold-light);

    transform:
        rotate(-45deg);

}

.product-heart {

    position: absolute;

    top: 20px;
    right: 20px;

    z-index: 10;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    color: var(--cream);

    background:
        rgba(0,0,0,.35);

    backdrop-filter:
        blur(8px);

    border:
        1px solid
        rgba(255,255,255,.1);

    transition:
        all .3s ease;

}

.product-heart:hover,
.product-heart.active {

    color: #d87b8d;

    border-color:
        rgba(216,123,141,.4);

}

.product-badge {

    position: absolute;

    top: 20px;
    left: 20px;

    z-index: 5;

    padding:
        8px 11px;

    color: var(--black);

    background: var(--gold-light);

    font-size: 6px;

    font-weight: 700;

    letter-spacing: 2px;

}


/* =====================================================
   EXPERIENCE
===================================================== */

.experience {

    min-height: 750px;

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 100px;

    align-items: center;

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(87,29,43,.16),
            transparent 40%
        );

}

.experience-image {

    position: relative;

    height: 600px;

    display: flex;

    align-items: center;
    justify-content: center;

}

.experience-bottle {

    position: relative;

    width: 210px;

    z-index: 3;

    filter:
        drop-shadow(
            0 30px 30px
            rgba(0,0,0,.7)
        );

    animation:
        bottleFloat 7s ease-in-out infinite;

}

.exp-cap {

    width: 100px;
    height: 60px;

    margin: auto;

    background:
        linear-gradient(
            90deg,
            #19130e,
            #bd934d,
            #19130e
        );

}

.exp-neck {

    width: 65px;
    height: 30px;

    margin: auto;

    background:
        linear-gradient(
            90deg,
            #1a130d,
            #a67d3f,
            #1a130d
        );

}

.exp-body {

    position: relative;

    width: 210px;
    height: 320px;

    border-radius:
        25px 25px 35px 35px;

    background:
        linear-gradient(
            110deg,
            #1b0c10,
            #642536 45%,
            #14080c
        );

    border:
        1px solid
        rgba(214,173,99,.6);

    overflow: hidden;

}

.exp-body::before {

    content: "";

    position: absolute;

    width: 30px;
    height: 130%;

    left: 25%;

    top: -10%;

    transform:
        rotate(12deg);

    background:
        rgba(255,255,255,.06);

}

.exp-label {

    position: absolute;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%, -50%);

    width: 145px;

    padding: 25px 10px;

    text-align: center;

    background:
        rgba(8,7,6,.5);

    border:
        1px solid
        rgba(214,173,99,.45);

}

.exp-label small {

    display: block;

    color: var(--gold);

    font-size: 6px;

    letter-spacing: 3px;

}

.exp-label strong {

    display: block;

    margin: 8px 0;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 28px;

    letter-spacing: 4px;

}

.exp-label span {

    font-size: 5px;

    letter-spacing: 2px;

    color: var(--text-muted);

}

.experience-ring {

    position: absolute;

    border:
        1px solid
        rgba(214,173,99,.15);

    border-radius: 50%;

    transform:
        rotateX(70deg);

}

.ring-one {

    width: 500px;
    height: 500px;

    animation:
        ringRotate 18s linear infinite;

}

.ring-two {

    width: 370px;
    height: 370px;

    animation:
        ringRotate 13s linear reverse infinite;

}

@keyframes ringRotate {

    to {
        transform:
            rotateX(70deg)
            rotateZ(360deg);
    }

}

.experience-content {

    max-width: 600px;

}

.experience-content h2 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(55px, 6vw, 85px);

    line-height: .9;

    font-weight: 500;

    margin-bottom: 35px;

}

.experience-content h2 em {

    color: var(--gold-light);

    font-weight: 400;

}

.experience-content p {

    color: var(--text-muted);

    font-size: 12px;

    line-height: 2;

    margin-bottom: 18px;

}

.experience-stats {

    display: flex;

    gap: 55px;

    margin:
        45px 0;

    padding:
        25px 0;

    border-top:
        1px solid
        rgba(214,173,99,.15);

    border-bottom:
        1px solid
        rgba(214,173,99,.15);

}

.experience-stats strong {

    display: block;

    color: var(--gold-light);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 35px;

}

.experience-stats span {

    font-size: 7px;

    letter-spacing: 2px;

    color: var(--text-muted);

}

.text-link {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    color: var(--gold-light);

    font-size: 9px;

    letter-spacing: 2px;

    text-transform: uppercase;

}

.text-link i {

    transition:
        transform .3s ease;

}

.text-link:hover i {

    transform:
        translateX(8px);

}


/* =====================================================
   NOTES
===================================================== */

.notes-section {

    background:
        rgba(255,255,255,.015);

}

.notes-header {

    text-align: center;

    margin-bottom: 70px;

}

.notes-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 20px;

}

.note-card {

    position: relative;

    padding: 45px 35px;

    min-height: 280px;

    border:
        1px solid
        rgba(214,173,99,.12);

    background:
        rgba(255,255,255,.015);

    transition:
        transform .5s var(--transition),
        border .4s ease,
        background .4s ease;

}

.note-card:hover {

    transform:
        translateY(-10px);

    border-color:
        rgba(214,173,99,.35);

    background:
        rgba(214,173,99,.035);

}

.note-card > span {

    position: absolute;

    top: 25px;
    right: 25px;

    color:
        rgba(214,173,99,.25);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 30px;

}

.note-icon {

    width: 50px;
    height: 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--gold-light);

    border:
        1px solid
        rgba(214,173,99,.25);

    margin-bottom: 30px;

}

.note-card h3 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 31px;

    font-weight: 500;

    margin-bottom: 12px;

}

.note-card p {

    color: var(--text-muted);

    font-size: 11px;

    line-height: 1.8;

}


/* =====================================================
   CTA
===================================================== */

.cta-section {

    position: relative;

    min-height: 600px;

    display: flex;

    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 100px 8vw;

    overflow: hidden;

    background:
        radial-gradient(
            ellipse at center,
            rgba(87,29,43,.35),
            transparent 65%
        );

}

.cta-decoration {

    position: absolute;

    width: 600px;
    height: 600px;

    border-radius: 50%;

    border:
        1px solid
        rgba(214,173,99,.08);

    box-shadow:
        0 0 0 80px
        rgba(214,173,99,.015),
        0 0 0 160px
        rgba(214,173,99,.01);

}

.cta-content {

    position: relative;

    z-index: 2;

}

.cta-content h2 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size:
        clamp(60px, 8vw, 110px);

    line-height: .85;

    font-weight: 500;

    max-width: 900px;

    margin-bottom: 30px;

}

.cta-content h2 em {

    display: block;

    color: var(--gold-light);

    font-weight: 400;

}

.cta-content p {

    max-width: 500px;

    margin:
        0 auto 35px;

    color: var(--text-muted);

    font-size: 12px;

    line-height: 1.8;

}


/* =====================================================
   FOOTER
===================================================== */

footer {

    padding:
        80px 8vw 30px;

    border-top:
        1px solid
        rgba(214,173,99,.12);

}

.footer-main {

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap: 60px;

    padding-bottom: 70px;

}

.footer-brand p {

    max-width: 280px;

    margin:
        25px 0;

    color: var(--text-muted);

    font-size: 11px;

    line-height: 1.8;

}

.socials {

    display: flex;

    gap: 10px;

}

.socials a {

    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border:
        1px solid
        rgba(255,255,255,.08);

    color: var(--cream);

    transition:
        all .3s ease;

}

.socials a:hover {

    color: var(--black);

    background: var(--gold-light);

    transform:
        translateY(-4px);

}

.footer-column {

    display: flex;

    flex-direction: column;

    gap: 15px;

}

.footer-column h4 {

    margin-bottom: 10px;

    color: var(--gold);

    font-size: 8px;

    letter-spacing: 3px;

}

.footer-column a,
.footer-column span {

    color: var(--text-muted);

    font-size: 10px;

    transition:
        color .3s ease;

}

.footer-column a:hover {

    color: var(--gold-light);

}

.footer-bottom {

    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding-top: 25px;

    border-top:
        1px solid
        rgba(255,255,255,.06);

    color:
        rgba(255,255,255,.35);

    font-size: 8px;

    letter-spacing: 1px;

}


/* =====================================================
   PRODUCT MODAL
===================================================== */

.product-modal {

    position: fixed;

    inset: 0;

    z-index: 5000;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 30px;

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .4s ease,
        visibility .4s ease;

}

.product-modal.open {

    opacity: 1;

    visibility: visible;

}

.modal-overlay {

    position: absolute;

    inset: 0;

    background:
        rgba(0,0,0,.85);

    backdrop-filter:
        blur(15px);

}

.modal-container {

    position: relative;

    z-index: 2;

    width:
        min(1050px, 100%);

    max-height: 90vh;

    overflow-y: auto;

    display: grid;

    grid-template-columns:
        .85fr 1.15fr;

    background:
        linear-gradient(
            135deg,
            #17120e,
            #0b0908
        );

    border:
        1px solid
        rgba(214,173,99,.25);

    box-shadow:
        0 40px 100px
        rgba(0,0,0,.7);

    transform:
        translateY(30px)
        scale(.97);

    transition:
        transform .6s var(--transition);

}

.product-modal.open .modal-container {

    transform:
        translateY(0)
        scale(1);

}

.modal-close {

    position: absolute;

    z-index: 10;

    top: 20px;
    right: 20px;

    width: 45px;
    height: 45px;

    border-radius: 50%;

    color: var(--gold-light);

    background:
        rgba(0,0,0,.35);

    border:
        1px solid
        rgba(214,173,99,.2);

}

.modal-product-image {

    min-height: 650px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at center,
            rgba(214,173,99,.15),
            transparent 60%
        );

}

.modal-bottle {

    width: 190px;

    filter:
        drop-shadow(
            0 40px 40px
            rgba(0,0,0,.7)
        );

    animation:
        modalBottle 5s ease-in-out infinite;

}

@keyframes modalBottle {

    0%,100% {
        transform:
            translateY(0)
            rotate(-1deg);
    }

    50% {
        transform:
            translateY(-18px)
            rotate(1deg);
    }

}

.modal-cap {

    width: 95px;
    height: 55px;

    margin: auto;

    background:
        linear-gradient(
            90deg,
            #16110d,
            #bd934d,
            #16110d
        );

}

.modal-neck {

    width: 60px;
    height: 25px;

    margin: auto;

    background:
        linear-gradient(
            90deg,
            #1b140d,
            #a77b3e,
            #1b140d
        );

}

.modal-body {

    position: relative;

    width: 190px;
    height: 310px;

    border-radius:
        20px 20px 30px 30px;

    background:
        linear-gradient(
            110deg,
            #18120f,
            #503b28 45%,
            #080706
        );

    border:
        1px solid
        rgba(214,173,99,.55);

}

.modal-label {

    position: absolute;

    top: 50%;
    left: 50%;

    transform:
        translate(-50%,-50%);

    width: 135px;

    padding: 25px 10px;

    text-align: center;

    border:
        1px solid
        rgba(214,173,99,.45);

    background:
        rgba(8,7,6,.55);

}

.modal-label small {

    display: block;

    color: var(--gold);

    font-size: 6px;

    letter-spacing: 3px;

}

.modal-label strong {

    display: block;

    margin-top: 10px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 28px;

    letter-spacing: 4px;

}

.modal-product-info {

    padding:
        65px 55px;

}

.modal-category {

    color: var(--gold);

    font-size: 7px;

    letter-spacing: 4px;

}

.modal-product-info h2 {

    margin-top: 10px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 65px;

    line-height: .9;

    font-weight: 500;

}

.modal-tagline {

    margin-top: 12px;

    color: var(--text-muted);

    font-size: 11px;

    font-style: italic;

}

.modal-price {

    display: flex;

    align-items: baseline;

    gap: 15px;

    margin:
        28px 0 20px;

}

.modal-price strong {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 34px;

    color: var(--gold-light);

}

.modal-price span {

    font-size: 8px;

    color: var(--text-muted);

}

.modal-description {

    color: var(--text-muted);

    font-size: 11px;

    line-height: 1.8;

}

.modal-notes {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 8px;

    margin:
        30px 0;

}

.modal-note {

    padding: 15px;

    border:
        1px solid
        rgba(255,255,255,.07);

    background:
        rgba(255,255,255,.02);

}

.modal-note span {

    display: block;

    margin-bottom: 8px;

    font-size: 6px;

    letter-spacing: 2px;

    color: var(--gold);

}

.modal-note strong {

    color: var(--cream);

    font-size: 9px;

    font-weight: 500;

}

.option-label {

    display: block;

    margin-bottom: 10px;

    color: var(--text-muted);

    font-size: 7px;

    letter-spacing: 2px;

}

.size-options {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 7px;

}

.size-btn {

    padding: 12px 8px;

    display: flex;

    flex-direction: column;

    gap: 5px;

    color: var(--text-muted);

    background:
        rgba(255,255,255,.025);

    border:
        1px solid
        rgba(255,255,255,.08);

    transition:
        all .3s ease;

}

.size-btn span {

    font-size: 7px;

}

.size-btn strong {

    font-size: 8px;

    color: var(--cream);

}

.size-btn:hover,
.size-btn.active {

    border-color: var(--gold);

    background:
        rgba(214,173,99,.08);

    color: var(--gold-light);

}

.size-btn.active strong {

    color: var(--gold-light);

}

.quantity-section {

    margin-top: 20px;

}

.quantity {

    display: flex;

    align-items: center;

    width: fit-content;

    border:
        1px solid
        rgba(255,255,255,.08);

}

.quantity button {

    width: 38px;
    height: 38px;

    color: var(--cream);

    background:
        transparent;

}

.quantity span {

    width: 40px;

    text-align: center;

    font-size: 10px;

}

.modal-actions {

    display: grid;

    grid-template-columns: 1fr 55px;

    gap: 8px;

    margin-top: 25px;

}

.modal-add {

    min-height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    color: var(--black);

    background:
        linear-gradient(
            110deg,
            var(--gold-dark),
            var(--gold-light)
        );

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    transition:
        transform .3s ease;

}

.modal-add:hover {

    transform:
        translateY(-3px);

}

.modal-favorite {

    color: var(--cream);

    background:
        rgba(255,255,255,.04);

    border:
        1px solid
        rgba(255,255,255,.08);

}

.modal-favorite.active {

    color: #d87b8d;

}

.whatsapp-order {

    width: 100%;

    min-height: 50px;

    margin-top: 8px;

    color: #d8f5e0;

    background:
        rgba(37,211,102,.08);

    border:
        1px solid
        rgba(37,211,102,.2);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 1.2px;

    text-transform: uppercase;

    transition:
        all .3s ease;

}

.whatsapp-order:hover {

    background:
        rgba(37,211,102,.16);

    transform:
        translateY(-2px);

}


/* =====================================================
   DRAWER
===================================================== */

.drawer-overlay {

    position: fixed;

    inset: 0;

    z-index: 5500;

    background:
        rgba(0,0,0,.65);

    backdrop-filter:
        blur(5px);

    opacity: 0;

    visibility: hidden;

    transition:
        opacity .4s ease,
        visibility .4s ease;

}

.drawer-overlay.open {

    opacity: 1;

    visibility: visible;

}

.bag-drawer {

    position: fixed;

    top: 0;
    right: 0;
    bottom: 0;

    z-index: 5600;

    width:
        min(450px, 100%);

    display: flex;

    flex-direction: column;

    background:
        #0e0c0a;

    border-left:
        1px solid
        rgba(214,173,99,.2);

    transform:
        translateX(100%);

    transition:
        transform .6s var(--transition);

}

.bag-drawer.open {

    transform:
        translateX(0);

}

.drawer-header {

    display: flex;

    align-items: center;
    justify-content: space-between;

    padding:
        30px;

    border-bottom:
        1px solid
        rgba(255,255,255,.06);

}

.drawer-header span {

    color: var(--gold);

    font-size: 7px;

    letter-spacing: 3px;

}

.drawer-header h3 {

    margin-top: 5px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 32px;

    font-weight: 500;

}

.drawer-header button {

    width: 42px;
    height: 42px;

    border-radius: 50%;

    color: var(--cream);

    background:
        rgba(255,255,255,.04);

}

.bag-items {

    flex: 1;

    overflow-y: auto;

    padding: 20px 30px;

}

.empty-bag {

    min-height: 70%;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

}

.empty-bag > i {

    margin-bottom: 20px;

    font-size: 35px;

    color: var(--gold);

}

.empty-bag h4 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 27px;

    font-weight: 500;

}

.empty-bag p {

    max-width: 260px;

    margin:
        10px auto 25px;

    color: var(--text-muted);

    font-size: 10px;

    line-height: 1.8;

}

.bag-item {

    display: grid;

    grid-template-columns: 75px 1fr auto;

    align-items: center;

    gap: 15px;

    padding:
        15px 0;

    border-bottom:
        1px solid
        rgba(255,255,255,.06);

}

.bag-mini-bottle {

    height: 75px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(214,173,99,.04);

}

.mini-body {

    width: 32px;
    height: 55px;

    border-radius:
        5px 5px 9px 9px;

    background:
        linear-gradient(
            110deg,
            #19130f,
            #6b4b2a,
            #0a0807
        );

    border:
        1px solid
        rgba(214,173,99,.4);

}

.bag-item-info h4 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 21px;

    font-weight: 500;

}

.bag-item-info span {

    display: block;

    margin-top: 5px;

    color: var(--text-muted);

    font-size: 8px;

}

.bag-item-price {

    color: var(--gold-light);

    font-size: 10px;

}

.bag-item-remove {

    margin-top: 8px;

    color: var(--text-muted);

    background: transparent;

    font-size: 8px;

}

.drawer-footer {

    padding:
        25px 30px 30px;

    border-top:
        1px solid
        rgba(255,255,255,.07);

}

.drawer-total {

    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-bottom: 20px;

}

.drawer-total span {

    color: var(--text-muted);

    font-size: 9px;

}

.drawer-total strong {

    color: var(--gold-light);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 30px;

}

.drawer-whatsapp {

    width: 100%;

    min-height: 55px;

    color: #d8f5e0;

    background:
        rgba(37,211,102,.1);

    border:
        1px solid
        rgba(37,211,102,.25);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


/* =====================================================
   TOAST
===================================================== */

.toast {

    position: fixed;

    z-index: 7000;

    right: 25px;
    bottom: 25px;

    display: flex;

    align-items: center;

    gap: 13px;

    min-width: 280px;

    padding: 15px;

    background:
        rgba(20,17,14,.95);

    border:
        1px solid
        rgba(214,173,99,.25);

    backdrop-filter:
        blur(15px);

    box-shadow:
        var(--shadow);

    transform:
        translateY(130%);

    transition:
        transform .6s var(--transition);

}

.toast.show {

    transform:
        translateY(0);

}

.toast-icon {

    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--black);

    background: var(--gold-light);

}

.toast strong {

    display: block;

    font-size: 9px;

}

.toast span {

    display: block;

    margin-top: 4px;

    color: var(--text-muted);

    font-size: 8px;

}


/* =====================================================
   REVEAL
===================================================== */

.reveal {

    opacity: 0;

    transform:
        translateY(40px);

    transition:
        opacity .9s var(--transition),
        transform .9s var(--transition);

}

.reveal.revealed {

    opacity: 1;

    transform:
        translateY(0);

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .navbar {
        padding: 0 5vw;
    }

    .hero {
        padding:
            120px 5vw 70px;
    }

    .section {
        padding:
            100px 5vw;
    }

    .products-grid {
        grid-template-columns:
            repeat(2,1fr);
    }

    .footer-main {
        grid-template-columns:
            1.5fr 1fr 1fr;
    }

    .footer-brand {
        grid-column:
            span 3;
    }

}


@media (max-width: 850px) {

    .nav-links {
        display: none;
    }

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

    .hero {

        grid-template-columns:
            1fr;

        min-height:
            auto;

        padding-top: 150px;

    }

    .hero-content {
        text-align: center;
        margin: auto;
    }

    .eyebrow {
        justify-content: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-perfume {

        min-height: 580px;

        margin-top: 10px;

    }

    .hero-scroll {
        display: none;
    }

    .section-header {

        grid-template-columns:
            1fr;

        gap: 25px;

    }

    .experience {

        grid-template-columns:
            1fr;

        gap: 50px;

    }

    .experience-image {
        height: 500px;
    }

    .experience-content {
        max-width: none;
    }

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

    .modal-container {

        grid-template-columns:
            1fr;

        max-height: 92vh;

    }

    .modal-product-image {

        min-height: 400px;

    }

    .modal-product-info {

        padding:
            40px 30px 50px;

    }

}


@media (max-width: 600px) {

    .navbar {
        height: 75px;
    }

    .logo span {
        font-size: 24px;
        letter-spacing: 6px;
    }

    .logo small {
        font-size: 5px;
    }

    .nav-icon {
        width: 37px;
        height: 37px;
    }

    .nav-actions {
        gap: 7px;
    }

    .hero {
        padding:
            125px 20px 50px;
    }

    .hero h1 {

        font-size:
            clamp(65px, 19vw, 100px);

        letter-spacing:
            -3px;

    }

    .hero-description {
        font-size: 11px;
    }

    .hero-bottle {
        width: 200px;
    }

    .bottle-body {
        width: 200px;
        height: 290px;
    }

    .bottle-cap {
        width: 95px;
        height: 58px;
    }

    .bottle-neck {
        width: 65px;
    }

    .floating-card {
        transform:
            scale(.8);
    }

    .card-top {
        right: -5%;
    }

    .card-bottom {
        left: -5%;
    }

    .section {
        padding:
            80px 20px;
    }

    .section-header h2,
    .notes-header h2 {
        font-size: 58px;
    }

    .collection-controls {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .product-card {
        min-height: 540px;
    }

    .product-card-image {
        height: 350px;
    }

    .experience {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .experience-image {
        height: 430px;
    }

    .experience-bottle {
        width: 160px;
    }

    .exp-body {
        width: 160px;
        height: 250px;
    }

    .exp-cap {
        width: 75px;
        height: 45px;
    }

    .exp-neck {
        width: 50px;
        height: 25px;
    }

    .exp-label {
        width: 115px;
    }

    .experience-ring.ring-one {
        width: 330px;
        height: 330px;
    }

    .experience-ring.ring-two {
        width: 250px;
        height: 250px;
    }

    .experience-content h2 {
        font-size: 58px;
    }

    .experience-stats {
        gap: 25px;
    }

    .cta-content h2 {
        font-size: 65px;
    }

    .footer-main {
        grid-template-columns:
            1fr 1fr;
        gap: 45px 25px;
    }

    .footer-brand {
        grid-column:
            span 2;
    }

    .footer-bottom {
        flex-direction:
            column;
    }

    .modal-container {
        width: 100%;
    }

    .modal-product-image {
        min-height: 330px;
    }

    .modal-bottle {
        width: 145px;
    }

    .modal-body {
        width: 145px;
        height: 230px;
    }

    .modal-cap {
        width: 75px;
        height: 45px;
    }

    .modal-neck {
        width: 50px;
    }

    .modal-product-info h2 {
        font-size: 50px;
    }

    .modal-notes {
        grid-template-columns:
            1fr;
    }

    .size-options {
        grid-template-columns:
            1fr 1fr 1fr;
    }

    .toast {
        left: 15px;
        right: 15px;
        bottom: 15px;
        min-width: 0;
    }

    .product-image-wrap {
        height: 280px;
        border-radius: 16px;
    }

    .product-real-image {
        padding: 18px;
    }

    .product-card:hover .product-real-image {
        transform: none;
    }

}

@media (max-width: 400px) {

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .size-options {
        grid-template-columns:
            1fr;
    }

     .product-image-wrap {
        height: 240px;
    }

    .product-real-image {
        padding: 14px;
    }
   
}
/* =====================================================
   VRAIES IMAGES DES PARFUMS
===================================================== */

.product-image-wrap {
    position: relative;
    width: 100%;
    height: 360px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    isolation: isolate;

    border-radius: 20px;
}

/* Image du parfum */
.product-real-image {
    position: relative;
    z-index: 2;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 25px;

    user-select: none;
    -webkit-user-drag: none;

    transition:
        transform 0.55s cubic-bezier(.22,1,.36,1),
        filter 0.55s ease;
}

/* Animation au survol */
.product-card:hover .product-real-image {
    transform: scale(1.07) translateY(-6px);
    filter: brightness(1.08) contrast(1.03);
}

/* Halo derrière le parfum */
.product-image-glow {
    position: absolute;

    width: 180px;
    height: 180px;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);

    background: radial-gradient(
        circle,
        rgba(214,173,99,.22) 0%,
        rgba(214,173,99,.08) 35%,
        transparent 72%
    );

    filter: blur(25px);

    z-index: 1;

    pointer-events: none;
}
/* =====================================================
   PROTECTION CONTRE LES DÉBORDEMENTS
===================================================== */

.product-card {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.product-card .product-image-wrap {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* L'image ne peut jamais sortir de sa carte */
.product-real-image {
    max-width: 100%;
    max-height: 100%;
}

/* Le panier reste toujours au-dessus */
#bagDrawer {
    position: fixed;
    z-index: 10000;
}

#drawerOverlay {
    position: fixed;
    z-index: 9999;
}

/* Le modal reste au-dessus du contenu */
#productModal {
    z-index: 11000;
}

/* Le menu mobile reste au-dessus */
#mobileMenu {
    z-index: 12000;
}

/* Recherche */
#searchPanel {
    z-index: 11500;
}
  IMAGES RÉELLES DES PARFUMS — CORRECTION PC + MOBILE
===================================================== */

.product-image-wrap {
    position: relative !important;
    width: 100% !important;
    height: 360px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;
    isolation: isolate !important;
}

.product-real-image {
    position: relative !important;
    display: block !important;

    width: auto !important;
    height: auto !important;

    max-width: 85% !important;
    max-height: 320px !important;

    object-fit: contain !important;

    margin: auto !important;
    padding: 0 !important;

    z-index: 5 !important;

    opacity: 1 !important;
    visibility: visible !important;

    transition:
        transform .5s cubic-bezier(.22,1,.36,1),
        filter .5s ease !important;
}

.product-card:hover .product-real-image {
    transform: scale(1.06) translateY(-5px) !important;
}

.product-image-glow {
    position: absolute !important;

    width: 180px !important;
    height: 180px !important;

    left: 50% !important;
    top: 50% !important;

    transform: translate(-50%, -50%) !important;

    border-radius: 50% !important;

    background: radial-gradient(
        circle,
        rgba(214,173,99,.22) 0%,
        rgba(214,173,99,.08) 40%,
        transparent 75%
    ) !important;

    filter: blur(25px) !important;

    z-index: 1 !important;

    pointer-events: none !important;
}
/* =====================================================
   IMAGES DU PANIER — PC
===================================================== */

.bag-item-image {
    width: 72px !important;
    height: 72px !important;
/* =====================================================
   IMAGES DES PRODUITS DANS LE PANIER
===================================================== */

#bagItems .bag-item {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    gap: 12px;
    align-items: center;
}

/* Conteneur image panier */
#bagItems .bag-item-image {
    width: 58px !important;
    height: 68px !important;

    min-width: 58px !important;
    max-width: 58px !important;

    min-height: 68px !important;
    max-height: 68px !important;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    border-radius: 10px;
}

/* Vraie image du parfum */
#bagItems .bag-item-image img {
    width: 100% !important;
    height: 100% !important;

    max-width: 100% !important;
    max-height: 100% !important;

    object-fit: contain !important;

    padding: 5px !important;

    display: block;
}

/* Empêche une image de prendre la taille de son fichier */
#bagItems img {
    flex-shrink: 0 !important;
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    #bagItems .bag-item {
        grid-template-columns: 48px 1fr auto;
        gap: 9px;
    }

    #bagItems .bag-item-image {
        width: 48px !important;
        height: 58px !important;

        min-width: 48px !important;
        max-width: 48px !important;

        min-height: 58px !important;
        max-height: 58px !important;

        border-radius: 8px;
    }

    #bagItems .bag-item-image img {
        width: 100% !important;
        height: 100% !important;
        padding: 4px !important;
        object-fit: contain !important;
    }
}

/* Très petits téléphones */
@media (max-width: 400px) {

    #bagItems .bag-item-image {
        width: 44px !important;
        height: 52px !important;

        min-width: 44px !important;
        max-width: 44px !important;

        min-height: 52px !important;
        max-height: 52px !important;
    }
}
    min-width: 72px !important;
    max-width: 72px !important;

    min-height: 72px !important;
    max-height: 72px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;

    border-radius: 12px !important;
}

.bag-item-image img {
    width: 100% !important;
    height: 100% !important;

    max-width: 100% !important;
    max-height: 100% !important;

    object-fit: contain !important;

    display: block !important;
}
/* =====================================================
   PANIER — PETITES IMAGES PRODUITS
===================================================== */

.bag-mini-bottle {
    width: 58px !important;
    height: 68px !important;

    min-width: 58px !important;
    max-width: 58px !important;

    min-height: 68px !important;
    max-height: 68px !important;

    flex: 0 0 58px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;

    position: relative !important;
    border-radius: 10px;

    background: rgba(255,255,255,.04);
}

/* IMAGE DU PARFUM DANS LE PANIER */
.bag-mini-bottle img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    max-width: 100% !important;
    max-height: 100% !important;

    object-fit: contain !important;

    padding: 5px !important;

    margin: 0 !important;

    transform: none !important;

    position: static !important;
}


/* =====================================================
   PC
===================================================== */

@media (min-width: 601px) {

    .bag-mini-bottle {
        width: 50px !important;
        height: 60px !important;

        min-width: 58px !important;
        max-width: 58px !important;
    }

    .bag-mini-bottle img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        padding: 5px !important;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .bag-mini-bottle {
        width: 42px !important;
        height: 52px !important;

        min-width: 48px !important;
        max-width: 48px !important;

        min-height: 58px !important;
        max-height: 58px !important;

        flex-basis: 48px !important;

        border-radius: 8px;
    }

    .bag-mini-bottle img {
        width: 100% !important;
        height: 100% !important;

        object-fit: contain !important;

        padding: 4px !important;
    }

}


/* =====================================================
   TRÈS PETITS TÉLÉPHONES
===================================================== */

@media (max-width: 400px) {

    .bag-mini-bottle {
        width: 44px !important;
        height: 52px !important;

        min-width: 44px !important;
        max-width: 44px !important;

        min-height: 52px !important;
        max-height: 52px !important;

        flex-basis: 44px !important;
    }

    .bag-mini-bottle img {
        padding: 3px !important;
    }

}
/* =====================================================
   MOBILE — 2 PARFUMS PAR LIGNE
   IMAGE GRANDE ET REMPLIE
===================================================== */

@media (max-width: 600px) {

    /* 2 produits par ligne */
    #productsGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
        width: 100% !important;
    }

    /* Carte parfum */
    .product-card {
        width: 100% !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }

    /* Zone image */
    .product-card-image {
        width: 100% !important;
        height: 250px !important;
        min-height: 250px !important;
        max-height: 250px !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Wrapper de l'image */
    .product-image-wrapper {
        width: 100% !important;
        height: 100% !important;
        min-height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
    }

    /* IMAGE DU PARFUM — GRANDE */
    .product-real-image {
        width: 100% !important;
        height: 100% !important;

        max-width: 100% !important;
        max-height: 100% !important;

        object-fit: cover !important;
        object-position: center !important;

        display: block !important;
        margin: 0 !important;
        padding: 0 !important;

        transform: none !important;
    }
}


/* =====================================================
   TRÈS PETITS TÉLÉPHONES
===================================================== */

@media (max-width: 400px) {

    #productsGrid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 9px !important;
    }

    .product-card-image {
        height: 220px !important;
        min-height: 220px !important;
        max-height: 220px !important;
    }

    .product-real-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
}
/* =====================================================
   ÉLIXIR — VRAI FLACON ARGENTÉ
===================================================== */

.real-perfume-bottle {
    position: relative;

    width: 360px;
    height: 560px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 5;

    animation:
        realBottleFloat 5.5s
        ease-in-out
        infinite;

    filter:
        drop-shadow(
            0 35px 35px
            rgba(0,0,0,.70)
        );
}


/* IMAGE RÉELLE DU FLACON */

.real-bottle-image {

    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    user-select: none;
    pointer-events: none;

    -webkit-user-drag: none;

    transform-origin: center center;

    animation:
        realBottleBreath 5.5s
        ease-in-out
        infinite;
}


/* LUMIÈRE DERRIÈRE LE FLACON */

.real-perfume-bottle::before {

    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,.20) 0%,
            rgba(214,173,99,.15) 30%,
            rgba(214,173,99,.06) 50%,
            transparent 72%
        );

    filter: blur(25px);

    z-index: -2;

    animation:
        bottleAura 4.5s
        ease-in-out
        infinite;
}


/* REFLET DE LUMIÈRE */

.bottle-light {

    position: absolute;

    width: 55px;
    height: 430px;

    left: 50%;

    top: 50%;

    transform:
        translate(-50%, -50%)
        rotate(14deg);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.18),
            rgba(255,255,255,.45),
            rgba(255,255,255,.12),
            transparent
        );

    filter: blur(10px);

    opacity: .35;

    z-index: 2;

    pointer-events: none;

    animation:
        bottleReflection 4s
        ease-in-out
        infinite;
}


/* =====================================================
   ANIMATION PRINCIPALE
===================================================== */

@keyframes realBottleFloat {

    0% {
        transform:
            translateY(0)
            rotate(-2deg)
            scale(1);
    }

    25% {
        transform:
            translateY(-10px)
            rotate(-1deg)
            scale(1.015);
    }

    50% {
        transform:
            translateY(-24px)
            rotate(2deg)
            scale(1.025);
    }

    75% {
        transform:
            translateY(-10px)
            rotate(1deg)
            scale(1.015);
    }

    100% {
        transform:
            translateY(0)
            rotate(-2deg)
            scale(1);
    }

}


/* PETIT MOUVEMENT DU FLACON */

@keyframes realBottleBreath {

    0%,100% {
        transform:
            scale(1)
            rotate(0deg);
    }

    50% {
        transform:
            scale(1.018)
            rotate(.5deg);
    }

}


/* HALO */

@keyframes bottleAura {

    0%,100% {
        opacity: .45;
        transform:
            translate(-50%, -50%)
            scale(.90);
    }

    50% {
        opacity: .85;
        transform:
            translate(-50%, -50%)
            scale(1.08);
    }

}


/* REFLET QUI PASSE */

@keyframes bottleReflection {

    0% {
        opacity: 0;
        transform:
            translate(-160%, -50%)
            rotate(14deg);
    }

    25% {
        opacity: .15;
    }

    50% {
        opacity: .50;
    }

    75% {
        opacity: .15;
    }

    100% {
        opacity: 0;
        transform:
            translate(160%, -50%)
            rotate(14deg);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 900px) {

    .real-perfume-bottle {

        width: 280px;
        height: 480px;

    }

}


@media (max-width: 600px) {

    .real-perfume-bottle {

        width: 280px;
        height: 480px;

        margin-top: 10px;

    }

    .real-perfume-bottle::before {

        width: 280px;
        height: 480px;

    }

    .bottle-light {

        width: 34px;
        height: 480px;

    }

}


@media (max-width: 400px) {

    .real-perfume-bottle {

        width: 280px;
        height: 480px;

    }

}
