@import url('https://fonts.cdnfonts.com/css/canela-text-trial');
@import url('https://fonts.cdnfonts.com/css/neue-haas-grotesk-display-pro');

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

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:"Canela Text Trial", serif;
    background:#000;
    color:#fff;
    overflow-x:hidden;
    overflow-y:auto;
}




.site-background {
    position: fixed;
    inset: 0;

    background: url("https://res.cloudinary.com/dzjksvbi/image/upload/hero-bg.jpg") center center no-repeat;
    background-size: cover;

    z-index: -10;

    will-change: transform;
    transform: translateY(0);
}
/* ==========================================
   HEADER
========================================== */

header{
    position:fixed;
    top:0;
    left:0;

    width:100%;
    height:90px;

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

    z-index:9999;

    transition:transform .4s ease;

    transform:translateY(0);
}

header.hide{
    transform:translateY(-120%);
}

.navbar{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:120px;
}

.navbar a{
    position:relative;

    text-decoration:none;
    color:#F5F5F5;

    font-size:10px;
    font-weight:300;
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;

    transition:opacity .35s;
}

.navbar a:hover{
    opacity:.65;
}

.navbar a::after{

    content:"";

    position:absolute;

    left:50%;
    bottom:-8px;

    width:0;
    height:1px;

    background:#fff;

    transform:translateX(-50%);

    transition:.35s;

}

.navbar a:hover::after{

    width:100%;

}



@keyframes fadeUp{

    from{
        opacity:0;
        margin-top:35px;
    }

    to{
        opacity:1;
        margin-top:0;
    }

}

.navbar a{

    opacity:0;
    animation:fadeUp .8s forwards;

}

.navbar a:nth-child(1){
    animation-delay:.1s;
}

.navbar a:nth-child(2){
    animation-delay:.2s;
}

.navbar a:nth-child(3){
    animation-delay:.3s;
}

.navbar a:nth-child(4){
    animation-delay:.4s;
}

.hero-number{

    opacity:0;
    animation:fadeUp 1s .45s forwards;

}

.logo{

    opacity:0;
    animation:fadeUp 1s .7s forwards;

}

.tagline{

    opacity:0;
    animation:fadeUp 1s .95s forwards;

}

.explore-btn{

    opacity:0;
    animation:fadeUp 1s 1.2s forwards;

}


/* ==========================================
   SCROLLED HEADER
========================================== */

header{

    transition:
        background .35s,
        backdrop-filter .35s,
        padding .35s;

}



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

@keyframes float{

    0%{
        transform:translate(-50%,-50%) translateY(0px);
    }

    50%{
        transform:translate(-50%,-50%) translateY(-8px);
    }

    100%{
        transform:translate(-50%,-50%) translateY(0px);
    }

}

.hero-number{

    animation:
        fadeUp 1s .45s forwards,
        float 8s ease-in-out infinite 1.4s;

}





@keyframes buttonGlow{

    0%,100%{

        box-shadow:0 0 0 rgba(255,255,255,0);

    }

    50%{

        box-shadow:0 0 20px rgba(255,255,255,.18);

    }

}

.explore-btn{

    animation:
        fadeUp 1s 1.2s forwards,
        buttonGlow 6s ease-in-out infinite 2s;

}

.navbar:hover a{

    opacity:.35;

}

.navbar a:hover{

    opacity:1 !important;

}

.logo div{

    transition:
        letter-spacing .5s,
        transform .5s;

}

.logo:hover div{

    letter-spacing:8px;

    transform:translateY(-2px);

}

body{

    animation:intro 2.5s;

}

@keyframes intro{

    from{

        opacity:0;

        filter:blur(10px);

    }

    to{

        opacity:1;

        filter:blur(0);

    }

}

.hero-content{

    animation:breathe 12s ease-in-out infinite;

}

@keyframes breathe{

    0%,100%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.006);

    }

}

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

.perfume-section{
    position:relative;
    height:100vh;
    min-height:100vh;
    overflow:hidden;
}
.perfume-section:first-of-type{
    margin-top:0;
}







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

.perfume-bg{

    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 1;

}


/* ==========================================================
   TITLE
========================================================== */

.perfume-title{

    position: absolute;

    top: 120px;
    left: 50%;

    transform: translateX(-50%);

    font-family: "Canela Text Trial", serif;

    font-size: 10rem;

    font-weight: 400;

    letter-spacing: -4px;

    line-height: .9;

    color: #F8F8F8;

    z-index: 2;

    white-space: nowrap;

}


/* ==========================================================
   BOTTLE
========================================================== */

.perfume-bottle{

    position: absolute;

    left: 50%;
    top: 70%;

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

    width: 600px;

    height: auto;

    z-index: 5;

}


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

.perfume-notes{

    position: absolute;

    left: 33%;

    top: 67%;

    transform: translateY(-50%);

    z-index: 6;

}

.perfume-notes p{

    margin: 0 0 2px;

    font-family: "Canela Text Trial", serif;

    font-size: 2rem;

    font-weight: 300;

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

}

.candle{
    position:absolute;
    width:70px;
    height:auto;
    object-fit:contain;
    z-index:3;
    pointer-events:none;
    filter:
        drop-shadow(0 0 8px rgba(255,190,120,.25))
        drop-shadow(0 0 20px rgba(255,170,90,.18));
    transform-origin:bottom center;
}

.candle-left{
    left:39%;
    bottom:8%;
}

.candle-right{
    right:39%;
    bottom:8%;
}

.perfume-bottle{
    z-index:5;
}

.candle{
    z-index:4;
}
.candle::after{
    content:"";
    position:absolute;
    top:-8px;
    left:50%;
    width:28px;
    height:28px;
    transform:translateX(-50%);
    border-radius:50%;
    background:rgba(255,185,80,.22);
    filter:blur(18px);
}
/* ==========================================================
   RATINGS
========================================================== */

.perfume-ratings{

    position: absolute;

    right: 37%;

    top: 67%;

    transform: translateY(-50%);

    text-align: right;

    z-index: 6;

}

.perfume-ratings p{

    margin: 0 0 2px;

    font-family: "Canela Text Trial", serif;

    font-size: 2rem;

    font-weight: 300;

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

}


/* ==========================================================
   BUTTON
========================================================== */

.shop-btn{

    position: absolute;

    left: 50%;

    top:90%;

    transform: translateX(-50%);

    width: 210px;

    height: 58px;

    display: flex;

    justify-content: center;

    align-items: center;

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

    border-radius: 999px;

    color: #fff;

    text-decoration: none;

    font-family: "Canela Text Trial", serif;

    font-size: 1rem;

    letter-spacing: .08em;

    background: transparent;

    z-index: 10;

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

        position:relative;

    overflow:hidden;
    opacity:1 !important;
    visibility:visible !important;
        
}

.shop-btn::before{

    content:"";

    position:absolute;

    top:0;
    left:-120%;

    width:60%;
    height:100%;

    background:
        linear-gradient(
            110deg,
            transparent,
            rgba(255,255,255,.35),
            transparent
        );

    transform:skewX(-20deg);

}

.shop-btn:hover::before{

    animation:buttonShine .9s ease;

}

@keyframes buttonShine{

    to{

        left:180%;

    }

}
.shop-btn:hover{

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

    border-color:rgba(255,255,255,.75);

    transform:translateX(-50%) translateY(-4px) scale(1.02);

    box-shadow:0 12px 28px rgba(255,255,255,.12);

}
@keyframes shopButtonGlow{

    0%,100%{

        box-shadow:
        0 0 0 rgba(255,255,255,0);

    }

    50%{

        box-shadow:
        0 0 14px rgba(255,255,255,.08);

    }

}

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

.footer{

    position:relative;

    width:100%;

    padding:70px 60px 45px;

    z-index:5;

}

.footer-divider{

    width:100%;
    height:1px;

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

    margin-bottom:35px;

}

.footer-content{

    display:flex;

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

    gap:20px;

}

.footer-left,
.footer-center,
.footer-right{

    font-family:'IBM Plex Mono', monospace;

    font-size:.75rem;

    letter-spacing:.18em;

    text-transform:uppercase;

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

    transition:.35s;

}

.footer-content div:hover{

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

}

/* ==========================================================
   MOBILE — FINAL CLEAN COMPOSITION
   ========================================================== */

@media screen and (max-width: 768px) {

    html,
    body {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow-x: hidden !important;
        -webkit-text-size-adjust: 100%;
    }

    body {
        overflow-y: auto !important;
    }

    /* Background */
    .site-background {
        position: fixed !important;
        inset: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background-position: center center !important;
        background-size: cover !important;
        transform: none !important;
    }

    /* Header */
    header {
        position: absolute !important;
        top: 12px !important;
        left: 0 !important;
        width: 100% !important;
        height: auto !important;
        padding: 0 12px !important;
        transform: none !important;
        z-index: 9999 !important;
    }

    .navbar {
        width: min(340px, 92vw) !important;
        margin: 0 auto !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        column-gap: 18px !important;
        row-gap: 8px !important;
        justify-items: center !important;
        align-items: center !important;
    }

    .navbar a {
        font-size: 9px !important;
        line-height: 1.1 !important;
        white-space: nowrap !important;
    }

    /* One full-screen composition */
    .perfume-section {
        position: relative !important;
        width: 100% !important;
        height: 100svh !important;
        min-height: 700px !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: hidden !important;
        isolation: isolate !important;
    }

    /* Title */
    .perfume-title {
        position: absolute !important;
        top: 12svh !important;
        left: 50% !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: translateX(-50%) !important;
        opacity: 1 !important;
        visibility: visible !important;
        text-align: center !important;
        font-size: clamp(3rem, 14vw, 4.25rem) !important;
        line-height: .9 !important;
        letter-spacing: -2px !important;
        white-space: nowrap !important;
        z-index: 20 !important;
    }

    /* Bottle */
    .perfume-bottle {
        position: absolute !important;
        top: 40% !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;

        width: clamp(155px, 43vw, 185px) !important;
        max-width: none !important;
        height: auto !important;

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

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

        opacity: 1 !important;
        visibility: visible !important;
        filter: none !important;
        animation: none !important;

        z-index: 10 !important;
    }

    /* Candles sit directly beside bottle */
    .candle {
        position: absolute !important;

        top: 40% !important;
        bottom: auto !important;

        width: clamp(28px, 7.5vw, 34px) !important;
        max-width: none !important;
        height: auto !important;

        margin: 0 !important;

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

        transform: translateY(-50%) !important;

        z-index: 8 !important;
    }

    .candle-left {
        left: calc(50% - 125px) !important;
        right: auto !important;
    }

    .candle-right {
        left: auto !important;
        right: calc(50% - 125px) !important;
    }

    /* Notes directly below bottle */
    .perfume-notes {
        position: absolute !important;

        top: 56% !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;

        width: 100% !important;

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

        transform: translateX(-50%) !important;

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

        text-align: center !important;

        z-index: 15 !important;
    }

    .perfume-notes p {
        margin: 0 !important;
        padding: 0 !important;

        font-size: clamp(1rem, 4.6vw, 1.15rem) !important;
        line-height: 1.45 !important;

        white-space: nowrap !important;
    }

    /* Ratings below notes */
    .perfume-ratings {
        position: absolute !important;

        top: 66% !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;

        width: 100% !important;

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

        transform: translateX(-50%) !important;

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

        text-align: center !important;

        z-index: 15 !important;
    }

    .perfume-ratings p {
        margin: 0 !important;
        padding: 0 !important;

        font-size: clamp(1rem, 4.4vw, 1.15rem) !important;
        line-height: 1.55 !important;

        white-space: nowrap !important;
    }

    /* Shop button */
    .shop-btn {
        position: absolute !important;

        top: auto !important;
        left: 50% !important;
        right: auto !important;
        bottom: 6% !important;

        width: 165px !important;
        height: 48px !important;

        margin: 0 !important;

        transform: translateX(-50%) !important;

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

        z-index: 30 !important;
    }

    /* Footer */
    .footer {
        padding: 40px 20px 30px !important;
    }

    .footer-content {
        flex-direction: column !important;
        gap: 14px !important;
        text-align: center !important;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        font-size: .62rem !important;
        letter-spacing: .1em !important;
    }
}

/* Small phones */
@media screen and (max-width: 380px) {

    .perfume-title {
        top: 12.5svh !important;
        font-size: clamp(2.7rem, 13.5vw, 3.6rem) !important;
    }

    .perfume-bottle {
        width: clamp(150px, 43vw, 170px) !important;
        top: 40% !important;
    }

    .candle {
        width: 28px !important;
    }

    .candle-left {
        left: calc(50% - 112px) !important;
    }

    .candle-right {
        right: calc(50% - 112px) !important;
    }

    .perfume-notes {
        top: 56% !important;
    }

    .perfume-ratings {
        top: 66% !important;
    }

    .shop-btn {
        bottom: 5% !important;
        width: 160px !important;
        height: 46px !important;
    }
}
/* ==========================================================
   O5 BUNDLES + RITUAL OBJECTS — 2026-09 UPDATE
========================================================== */
.product-actions{
    position:absolute;
    left:50%;
    bottom:7%;
    z-index:35;
    display:flex;
    gap:12px;
    transform:translateX(-50%);
    align-items:center;
    justify-content:center;
}

.product-actions .shop-btn{
    position:relative;
    inset:auto;
    transform:none;
    width:176px;
    height:52px;
    margin:0;
}

.product-actions .shop-btn-secondary{
    background:rgba(255,255,255,.045);
    border-color:rgba(255,255,255,.28);
    color:#fff;
}

.editorial-section{
    position:relative;
    min-height:100svh;
    padding:12vh clamp(34px,8vw,150px);
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8vw;
    align-items:center;
    overflow:hidden;
    border-top:1px solid rgba(255,255,255,.08);
    background:rgba(0,0,0,.16);
    backdrop-filter:blur(2px);
}

.editorial-copy{max-width:620px;position:relative;z-index:4;}
.editorial-kicker{
    margin-bottom:22px;
    font-family:'Neue Haas Grotesk Display Pro',sans-serif;
    font-size:.58rem;
    letter-spacing:.24em;
    text-transform:uppercase;
    color:rgba(255,255,255,.42);
}
.editorial-copy h2{
    margin:0 0 30px;
    font-family:'Canela Text Trial',serif;
    font-size:clamp(4.3rem,8vw,9rem);
    line-height:.82;
    letter-spacing:-.055em;
    font-weight:400;
}
.editorial-description{
    max-width:520px;
    margin-bottom:26px;
    font-size:clamp(1.08rem,1.5vw,1.45rem);
    line-height:1.6;
    color:rgba(255,255,255,.62);
}
.editorial-price{
    margin-bottom:32px;
    font-family:'Neue Haas Grotesk Display Pro',sans-serif;
    font-size:.92rem;
    letter-spacing:.12em;
}
.editorial-cta{
    display:inline-flex;
    align-items:center;
    gap:24px;
    min-height:54px;
    padding:0 22px;
    border:1px solid rgba(255,255,255,.36);
    color:#fff;
    text-decoration:none;
    font-family:'Neue Haas Grotesk Display Pro',sans-serif;
    font-size:.66rem;
    letter-spacing:.18em;
    transition:background .3s,color .3s,border-color .3s;
}
.editorial-cta:hover{background:#fff;color:#090909;border-color:#fff;}

.collection-visual,
.ritual-object-visual{
    position:relative;
    min-height:66vh;
    display:grid;
    place-items:center;
}
.collection-visual::before,
.ritual-object-glow{
    content:"";
    position:absolute;
    width:min(420px,55vw);
    aspect-ratio:1;
    border-radius:50%;
    background:rgba(255,202,155,.07);
    filter:blur(70px);
}
.collection-bottle{
    position:absolute;
    width:min(430px,31vw);
    max-height:73vh;
    object-fit:contain;
    filter:drop-shadow(0 34px 45px rgba(0,0,0,.45));
}
.collection-bottle-left{transform:translateX(-31%) scale(.9) rotate(-3deg);z-index:1;opacity:.82;}
.collection-bottle-center{z-index:3;transform:translateY(-2%);}
.collection-bottle-right{transform:translateX(31%) scale(.9) rotate(3deg);z-index:2;opacity:.82;}

.ritual-object-image{
    position:relative;
    z-index:2;
    max-width:100%;
    object-fit:contain;
    filter:drop-shadow(0 35px 45px rgba(0,0,0,.5));
}
.candle-standalone-image{width:min(220px,20vw);}
.matchbox-standalone-image{width:min(520px,39vw);}

.matchbox-object{background:rgba(0,0,0,.26);}

@media(max-width:768px){
    .product-actions{
        left:50%!important;
        bottom:4.5%!important;
        width:min(92vw,390px)!important;
        gap:8px!important;
        transform:translateX(-50%)!important;
    }
    .product-actions .shop-btn{
        position:relative!important;
        inset:auto!important;
        width:calc(50% - 4px)!important;
        height:46px!important;
        transform:none!important;
        font-size:.55rem!important;
        white-space:nowrap!important;
    }
    .editorial-section{
        min-height:auto;
        grid-template-columns:1fr;
        gap:28px;
        padding:105px 22px 90px;
    }
    .collection-visual,.ritual-object-visual{min-height:48vh;order:-1;}
    .matchbox-object .ritual-object-visual{order:-1;}
    .editorial-copy h2{font-size:clamp(3.8rem,18vw,6rem);}
    .collection-bottle{width:min(300px,58vw);max-height:44vh;}
    .collection-bottle-left{transform:translateX(-24%) scale(.82) rotate(-3deg);}
    .collection-bottle-right{transform:translateX(24%) scale(.82) rotate(3deg);}
    .candle-standalone-image{width:min(155px,38vw);}
    .matchbox-standalone-image{width:min(430px,86vw);}
}


/* ==========================================================
   O5 STUDIO V5 — CLIENT BUNDLE LAYOUT
   - Main perfume sections keep one SHOP NOW button.
   - Individual bundles live in their own dedicated section.
   - Side candles are intentionally just larger than the bottle.
========================================================== */

/* Main perfume candles — enlarged beside the perfume bottle */
@media screen and (min-width: 769px) {
    .perfume-section .candle {
        /* Moderated from the previous oversized treatment. */
        width: clamp(105px, 8.5vw, 135px);
        height: auto;
        bottom: 5%;
    }

    .perfume-section .candle-left {
        left: 29%;
    }

    .perfume-section .candle-right {
        right: 29%;
    }
}

/* One centered action only on the fragrance sections */
.product-actions-single {
    gap: 0;
}

.product-actions-single .shop-btn {
    width: 210px;
    height: 58px;
}

.product-actions-single .shop-btn:hover {
    transform: translateY(-4px) scale(1.02);
}

/* Dedicated bundle showcase */
.bundle-showcase {
    position: relative;
    padding: 13vh clamp(28px, 6vw, 105px) 14vh;
    border-top: 1px solid rgba(255,255,255,.08);
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: rgba(0,0,0,.22);
    overflow: hidden;
}

.bundle-showcase-heading {
    max-width: 860px;
    margin: 0 auto 72px;
    text-align: center;
}

.bundle-showcase-heading h2 {
    margin: 0 0 24px;
    font-family: 'Canela Text Trial', serif;
    font-size: clamp(4.4rem, 9vw, 9.5rem);
    line-height: .84;
    letter-spacing: -.055em;
    font-weight: 400;
}

.bundle-showcase-heading > p:last-child {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255,255,255,.58);
    font-size: clamp(1rem, 1.35vw, 1.25rem);
    line-height: 1.65;
}

.bundle-grid {
    width: min(1500px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 2vw, 30px);
}

.bundle-card {
    position: relative;
    min-width: 0;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.025);
    overflow: hidden;
    transition: transform .45s ease, border-color .45s ease, background .45s ease;
}

.bundle-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,.28);
    background: rgba(255,255,255,.045);
}

.bundle-card-visual {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    display: grid;
    place-items: center;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.bundle-card-glow {
    position: absolute;
    width: 70%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255,203,158,.08);
    filter: blur(60px);
}

.bundle-card-bottle,
.bundle-card-candle,
.bundle-card-matchbox {
    position: absolute;
    object-fit: contain;
    filter: drop-shadow(0 26px 34px rgba(0,0,0,.48));
}

.bundle-card-bottle {
    z-index: 3;
    width: min(255px, 60%);
    max-height: 340px;
    transform: translateX(-9%);
}

.bundle-card-candle {
    z-index: 2;
    width: min(105px, 27%);
    max-height: 365px;
    right: 7%;
    bottom: 8%;
}

.bundle-card-matchbox {
    z-index: 4;
    width: min(170px, 42%);
    left: 8%;
    bottom: 7%;
    transform: rotate(-3deg);
}

.bundle-card-copy {
    padding: 28px 28px 32px;
}

.bundle-number {
    display: block;
    margin-bottom: 16px;
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    font-size: .55rem;
    letter-spacing: .22em;
    color: rgba(255,255,255,.4);
}

.bundle-card-copy h3 {
    margin: 0 0 13px;
    font-family: 'Canela Text Trial', serif;
    font-size: clamp(2rem, 3vw, 3.3rem);
    line-height: .95;
    font-weight: 400;
}

.bundle-card-copy p {
    min-height: 48px;
    margin: 0 0 20px;
    color: rgba(255,255,255,.55);
    font-size: .93rem;
    line-height: 1.55;
}

.bundle-card-copy strong {
    display: block;
    margin-bottom: 25px;
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    font-size: .86rem;
    letter-spacing: .13em;
    font-weight: 400;
}

.bundle-card-cta {
    min-height: 50px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    border: 1px solid rgba(255,255,255,.32);
    color: #fff;
    text-decoration: none;
    font-family: 'Neue Haas Grotesk Display Pro', sans-serif;
    font-size: .58rem;
    letter-spacing: .16em;
    transition: background .3s ease, color .3s ease, border-color .3s ease;
}

.bundle-card-cta:hover {
    background: #fff;
    border-color: #fff;
    color: #080808;
}

@media screen and (max-width: 768px) {
    .perfume-section .candle {
        width: clamp(48px, 13vw, 60px) !important;
        top: 40% !important;
        bottom: auto !important;
    }

    .perfume-section .candle-left {
        left: calc(50% - 132px) !important;
    }

    .perfume-section .candle-right {
        right: calc(50% - 132px) !important;
    }

    .product-actions-single {
        width: auto !important;
    }

    .product-actions-single .shop-btn {
        width: 165px !important;
    }

    .bundle-showcase {
        padding: 105px 18px 100px;
    }

    .bundle-showcase-heading {
        margin-bottom: 45px;
        padding: 0 6px;
    }

    .bundle-showcase-heading h2 {
        font-size: clamp(3.5rem, 17vw, 5.6rem);
    }

    .bundle-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .bundle-card-visual {
        min-height: 390px;
    }

    .bundle-card-bottle {
        width: min(235px, 62%);
        max-height: 315px;
    }

    .bundle-card-candle {
        width: min(100px, 27%);
        max-height: 340px;
    }

    .bundle-card-matchbox {
        width: min(155px, 42%);
    }

    .bundle-card-copy {
        padding: 24px 22px 27px;
    }

    .bundle-card-copy p {
        min-height: 0;
    }
}

@media screen and (max-width: 380px) {
    .perfume-section .candle {
        width: 46px !important;
    }

    .perfume-section .candle-left {
        left: calc(50% - 116px) !important;
    }

    .perfume-section .candle-right {
        right: calc(50% - 116px) !important;
    }
}

/* ==========================================================
   O5 STUDIO V7 — PERFUME ROW BALANCE
   Desktop composition: TEXT · CANDLE · PERFUME · CANDLE · TEXT
========================================================== */
@media screen and (min-width: 769px) {
    /* Keep the perfume as the visual centrepiece. */
    .perfume-section .perfume-notes {
        left: 21% !important;
        top: 67% !important;
    }

    .perfume-section .perfume-ratings {
        right: 21% !important;
        top: 67% !important;
    }

    /* Slimmer candles, positioned between the text and perfume. */
    .perfume-section .candle {
        width: clamp(62px, 4.5vw, 76px) !important;
        top: 54% !important;
        bottom: auto !important;
        height: auto !important;
    }

    .perfume-section .candle-left {
        left: 36.5% !important;
        right: auto !important;
    }

    .perfume-section .candle-right {
        right: 36.5% !important;
        left: auto !important;
    }
}

/* ==========================================================
   O5 STUDIO V8 — TIGHTER PERFUME COMPOSITION
   TEXT · CANDLE · PERFUME · CANDLE · TEXT
========================================================== */
@media screen and (min-width: 769px) {
    /* Bring the bottle upward so the cap sits just beneath / against the title. */
    .perfume-section .perfume-bottle {
        top: 64% !important;
    }

    /* Slightly larger than V7, but still secondary to the perfume. */
    .perfume-section .candle {
        width: clamp(76px, 5.25vw, 90px) !important;
        top: 52.5% !important;
    }

    /* Keep candles between copy and bottle. */
    .perfume-section .candle-left {
        left: 37% !important;
    }

    .perfume-section .candle-right {
        right: 37% !important;
    }

    /* Pull the left/right text inward toward the product group. */
    .perfume-section .perfume-notes {
        left: 25.5% !important;
        top: 64% !important;
    }

    .perfume-section .perfume-ratings {
        right: 25.5% !important;
        top: 64% !important;
    }
}

/* ==========================================================
   O5 STUDIO V9 — VERTICAL ALIGNMENT POLISH
   Raise the perfume into the title and align candles with it.
========================================================== */
@media screen and (min-width: 769px) {
    /* Lift the perfume so the wooden cap visually meets ECHO / ILLUSION / NUANCE. */
    .perfume-section .perfume-bottle {
        top: 61.5% !important;
    }

    /* Stop the candles hanging lower than the perfume bottle. */
    .perfume-section .candle {
        top: auto !important;
        bottom: 10.5% !important;
    }

    /* Keep the copy vertically centred with the tighter product grouping. */
    .perfume-section .perfume-notes,
    .perfume-section .perfume-ratings {
        top: 62% !important;
    }
}

/* ==========================================================
   O5 STUDIO V10 — CLOSER COPY + SLIGHTLY SMALLER PERFUME
========================================================== */
@media screen and (min-width: 769px) {
    /* Slightly reduce the perfume without losing the contact with the title. */
    .perfume-section .perfume-bottle {
        width: 565px !important;
        top: 60.5% !important;
    }

    /* Bring both text columns closer to the candles / perfume group. */
    .perfume-section .perfume-notes {
        left: 28.5% !important;
    }

    .perfume-section .perfume-ratings {
        right: 28.5% !important;
    }
}

/* ==========================================================
   O5 STUDIO V11 — MATCHBOX SECTION / FOOTER CONTINUITY
   Continue the final section's dark treatment through footer.
========================================================== */
.matchbox-object + .footer {
    background: rgba(0, 0, 0, .26);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}


/* ==========================================================
   O5 STUDIO V12 — CANDLE SET OF THREE
   Commercial candle visuals now show all 3 candles.
   The perfume hero keeps its decorative two-candle composition.
========================================================== */

/* Dedicated bundle cards: three slim candles on the right side. */
.bundle-card-candle.bundle-card-candle-left,
.bundle-card-candle.bundle-card-candle-center,
.bundle-card-candle.bundle-card-candle-right {
    width: min(62px, 15%);
    max-height: 330px;
    bottom: 8%;
    z-index: 2;
}

.bundle-card-candle.bundle-card-candle-left {
    right: 17%;
}

.bundle-card-candle.bundle-card-candle-center {
    right: 9.5%;
}

.bundle-card-candle.bundle-card-candle-right {
    right: 2%;
}

/* Standalone candle section: one set = three candles. */
.candle-set-display {
    position: relative;
    width: min(430px, 34vw);
    height: min(68vh, 650px);
    margin: 0 auto;
}

.candle-set-display .candle-standalone-image {
    position: absolute;
    bottom: 3%;
    width: min(155px, 12vw);
    max-height: 62vh;
}

.candle-set-display .candle-set-left {
    left: 28%;
    transform: translateX(-50%) translateY(5%) scale(.93) rotate(-1.5deg);
    z-index: 2;
}

.candle-set-display .candle-set-center {
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
}

.candle-set-display .candle-set-right {
    left: 72%;
    transform: translateX(-50%) translateY(5%) scale(.93) rotate(1.5deg);
    z-index: 3;
}

@media(max-width:768px) {
    .bundle-card-candle.bundle-card-candle-left,
    .bundle-card-candle.bundle-card-candle-center,
    .bundle-card-candle.bundle-card-candle-right {
        width: min(54px, 14%);
        max-height: 300px;
    }

    .bundle-card-candle.bundle-card-candle-left { right: 17%; }
    .bundle-card-candle.bundle-card-candle-center { right: 9%; }
    .bundle-card-candle.bundle-card-candle-right { right: 1%; }

    .candle-set-display {
        width: min(330px, 84vw);
        height: 46vh;
        min-height: 340px;
    }

    .candle-set-display .candle-standalone-image {
        width: min(120px, 28vw);
        max-height: 42vh;
    }

    .candle-set-display .candle-set-left { left: 27%; }
    .candle-set-display .candle-set-right { left: 73%; }
}


/* ==========================================================
   O5 STUDIO V18 — THREE-BOTTLE HERO STACK
   Same-size bottles tucked behind one another.
   Center bottle stays straight; side bottles tilt outward.
========================================================== */

/* The stack occupies the exact hero position formerly used by the center bottle. */
.perfume-section .perfume-bottle-stack {
    position: absolute;
    left: 50%;
    top: 60.5%;
    width: 565px;
    height: min(76vh, 690px);
    transform: translate(-50%, -50%);
    z-index: 5;
    pointer-events: none;
    isolation: isolate;
}

/* All three bottles are EXACTLY the same size. */
.perfume-section .perfume-bottle-stack .perfume-bottle,
.perfume-section .perfume-bottle-stack .hero-side-bottle {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    object-fit: contain;
    margin: 0 !important;
    opacity: 1;
    visibility: visible !important;
    filter: drop-shadow(0 28px 38px rgba(0,0,0,.42));
    transform-origin: 50% 82%;
}

/* Center bottle is on top. */
.perfume-section .perfume-bottle-stack .perfume-bottle {
    transform: translate(-50%, -50%) !important;
    z-index: 5 !important;
}

/* Left bottle: tucked underneath the center, not placed far beside it. */
.perfume-section .perfume-bottle-stack .hero-side-bottle-left {
    transform: translate(calc(-50% - 92px), -50%) rotate(-13deg) !important;
    z-index: 2 !important;
}

/* Right bottle: tucked underneath the center, mirroring the left. */
.perfume-section .perfume-bottle-stack .hero-side-bottle-right {
    transform: translate(calc(-50% + 92px), -50%) rotate(13deg) !important;
    z-index: 3 !important;
}

/* Old decorative hero candles are no longer used. */
.perfume-section > .candle {
    display: none !important;
}

/* Responsive/mobile: same idea, same-size bottles, smaller overlap offset. */
@media screen and (max-width: 768px) {
    .perfume-section .perfume-bottle-stack {
        top: 40% !important;
        width: clamp(155px, 43vw, 185px) !important;
        height: 330px !important;
        transform: translate(-50%, -50%) !important;
        z-index: 10 !important;
    }

    .perfume-section .perfume-bottle-stack .perfume-bottle,
    .perfume-section .perfume-bottle-stack .hero-side-bottle {
        width: 100% !important;
        top: 50% !important;
        left: 50% !important;
        animation: none !important;
    }

    .perfume-section .perfume-bottle-stack .hero-side-bottle-left {
        transform: translate(calc(-50% - 31px), -50%) rotate(-11deg) !important;
    }

    .perfume-section .perfume-bottle-stack .hero-side-bottle-right {
        transform: translate(calc(-50% + 31px), -50%) rotate(11deg) !important;
    }
}

@media screen and (max-width: 380px) {
    .perfume-section .perfume-bottle-stack {
        width: clamp(150px, 43vw, 170px) !important;
    }

    .perfume-section .perfume-bottle-stack .hero-side-bottle-left {
        transform: translate(calc(-50% - 27px), -50%) rotate(-10deg) !important;
    }

    .perfume-section .perfume-bottle-stack .hero-side-bottle-right {
        transform: translate(calc(-50% + 27px), -50%) rotate(10deg) !important;
    }
}


/* ==========================================================
   O5 STUDIO V20 — TEA BAG RITUAL OBJECT
========================================================== */
.tea-object {
    background: rgba(0,0,0,.26);
}

.tea-standalone-image {
    width: min(420px, 34vw);
    max-height: 68vh;
}

.tea-standalone-image[src=""] {
    visibility: hidden;
}

.tea-object + .footer {
    background: rgba(0,0,0,.26);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

@media(max-width:768px) {
    .tea-standalone-image {
        width: min(320px, 78vw);
        max-height: 46vh;
    }
}
