:root{
    --gold:#D4AF37;
    --black:#000;
    --white:#fff;
}

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

body{
    background:#000;
    color:#fff;
    font-family:Arial, Helvetica, sans-serif;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:15px 80px;

    position:fixed;
    top:0;
    left:0;
    right:0;

    z-index:1000;

    backdrop-filter:blur(10px);

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

    border-bottom:1px solid rgba(212,175,55,.15);
}

.nav-order{

    background:#D4AF37;

    color:#000;

    padding:12px 20px;

    border-radius:10px;

    text-decoration:none;

    font-weight:600;
}

.logo{
    color:var(--gold);
    font-size:28px;
    font-weight:bold;
}

.menu{
    display:flex;
    gap:25px;
}

.menu a{

    color:#fff;

    text-decoration:none;

    position:relative;

    transition:.3s;
}

.menu a.active{

    color:#D4AF37;
}

.menu a.active::after{

    content:'';

    position:absolute;

    left:0;

    bottom:-8px;

    width:100%;

    height:2px;

    background:#D4AF37;
}

.menu a:hover{
    color:var(--gold);
}

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    padding-top:120px;
    padding-left:20px;
    padding-right:20px;

    position:relative;

    overflow:hidden;
}

.hero::before{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    border-radius:50%;

    background:
        radial-gradient(
            rgba(212,175,55,.15),
            transparent 70%
        );

    top:-150px;

    left:50%;

    transform:translateX(-50%);
}

.hero h1{

    font-size:clamp(
        42px,
        6vw,
        80px
    );

    line-height:1.15;

    color:#D4AF37;

    margin-bottom:25px;

    max-width:1200px;

    margin-left:auto;
    margin-right:auto;
}

.hero p{

    max-width:900px;

    margin:0 auto;

    color:#ddd;

    line-height:1.8;

    font-size:22px;
}

.hero-logo{
    width:180px;
    margin-bottom:25px;
}

.logo-container{
    display:flex;
    align-items:center;
}

.logo-image{
    height:60px;
    width:auto;
    transition:.3s;
}

.logo-image:hover{
    transform:scale(1.05);
}

.best-seller{
    padding:80px;
}

.section-title{

    text-align:center;

    color:#D4AF37;

    font-size:clamp(
        36px,
        5vw,
        64px
    );

    margin-bottom:20px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.product-card{

    position:relative;

    background:#111;

    border:1px solid rgba(212,175,55,.15);

    border-radius:20px;

    overflow:hidden;

    transition:.4s ease;
}

.product-card:hover{

    transform:
        translateY(-8px)
        scale(1.02);

    border-color:#D4AF37;

    box-shadow:
        0 10px 35px rgba(212,175,55,.15);
}

.product-card::before{

    content:"";

    position:absolute;

    top:-2px;
    left:-100%;

    width:80%;
    height:2px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #D4AF37,
            transparent
        );

    transition:.8s ease;

    z-index:5;
}

.product-card:hover::before{

    left:120%;
}

.product-card::after{

    content:"";

    position:absolute;

    top:-50%;

    left:-120%;

    width:60%;

    height:200%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(212,175,55,.18),
            transparent
        );

    transform:rotate(25deg);

    transition:1s;

    pointer-events:none;
}

.product-card:hover::after{

    left:160%;
}

.product-image{
    height:280px;
    overflow:hidden;
}

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

.product-body{
    padding:20px;
}

.product-body h3{
    color:white;
    margin-bottom:10px;
}

.price{
    color:#D4AF37;
    font-size:22px;
    font-weight:bold;
}

.btn-detail{
    display:inline-block;

    margin-top:15px;

    padding:10px 20px;

    border:1px solid #D4AF37;

    color:#D4AF37;

    text-decoration:none;

    border-radius:8px;
}

.stock-ready{
    display:inline-block;
    margin-top:10px;
    padding:6px 12px;

    background:rgba(212,175,55,.15);
    border:1px solid #D4AF37;

    color:#D4AF37;

    border-radius:20px;
    font-size:12px;
}

.stock-empty{
    display:inline-block;
    margin-top:10px;
    padding:6px 12px;

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

    color:#ff6b6b;

    border-radius:20px;
    font-size:12px;
}

.product-size{

    display:inline-block;

    margin-top:10px;

    padding:6px 14px;

    border-radius:20px;

    background:rgba(212,175,55,.15);

    color:#D4AF37;

    font-size:12px;

    letter-spacing:1px;
}

/* ======================
   WHY AROMA PROJECT
====================== */

.why-us{
    padding:100px 80px;
}

.why-grid{
    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

    margin-top:50px;
}

.why-card{

    background:#111;

    border:1px solid rgba(212,175,55,.15);

    border-radius:20px;

    padding:30px;

    transition:.3s;
}

.why-card:hover{

    transform:translateY(-5px);

    border-color:#D4AF37;
}

.why-card h3{

    color:#D4AF37;

    margin-bottom:15px;

    font-size:24px;
}

.why-card p{

    color:#ccc;

    line-height:1.8;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin-top:40px;
    flex-wrap:wrap;
}

.btn-shop,
.btn-outline{

    display:inline-flex;

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

    min-width:280px;
    height:60px;

    padding:0 30px;

    border-radius:12px;

    text-decoration:none;

    font-size:20px;
    font-weight:600;
}

.btn-shop{
    background:#D4AF37;
    color:#000;
}

.btn-outline{
    border:1px solid #D4AF37;
    color:#D4AF37;
}

.btn-outline:hover{

    background:#D4AF37;

    color:#000;
}

.how-order{
    padding:100px 80px;
}

.order-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:50px;
}

.order-card{
    background:#111;
    border:1px solid rgba(212,175,55,.15);
    border-radius:20px;
    padding:30px;
    text-align:center;
    transition:.3s;
}

.order-card:hover{
    transform:translateY(-5px);
    border-color:#D4AF37;
}

.step-number{
    width:60px;
    height:60px;

    margin:0 auto 20px;

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

    background:#D4AF37;
    color:#000;

    border-radius:50%;

    font-size:24px;
    font-weight:bold;
}

.order-card h3{
    color:#D4AF37;
    margin-bottom:15px;
}

.order-card p{
    color:#ccc;
    line-height:1.8;
}

/* ======================
   HOW TO ORDER
====================== */

.how-order{
    padding:120px 80px;
}

.timeline-order{

    position:relative;

    display:flex;

    justify-content:space-between;

    gap:30px;

    margin-top:80px;
}

.timeline-line{

    position:absolute;

    top:35px;

    left:10%;

    width:80%;

    height:2px;

    background:
        linear-gradient(
            to right,
            rgba(212,175,55,.3),
            #D4AF37,
            rgba(212,175,55,.3)
        );

    z-index:1;
}

.timeline-step{

    position:relative;

    z-index:2;

    flex:1;

    text-align:center;
}

.step-circle{

    width:70px;
    height:70px;

    margin:0 auto 25px;

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

    border-radius:50%;

    background:#111;

    border:2px solid #D4AF37;

    color:#D4AF37;

    font-size:28px;
    font-weight:bold;

    transition:.3s;
}

.timeline-step:hover .step-circle{

    transform:scale(1.1);

    box-shadow:
        0 0 25px rgba(212,175,55,.4);
}

.timeline-step h3{

    color:#D4AF37;

    margin-bottom:10px;
}

.timeline-step p{

    color:#ccc;

    line-height:1.8;
}

.collection-header{

    padding:180px 20px 80px;

    text-align:center;
}

.collection-header h1{

    color:#D4AF37;

    font-size:64px;

    margin-bottom:20px;
}

.collection-header p{

    color:#aaa;

    font-size:18px;
}

.collection-content{

    padding:0 80px 100px;
}

.discover-aroma{

    padding:120px 80px;

    text-align:center;
}

.discover-subtitle{

    color:#aaa;

    margin-top:15px;
}

.discover-result{

    max-width:1000px;

    margin:50px auto;

    padding:50px;

    background:#111;

    border:1px solid rgba(212,175,55,.25);

    border-radius:30px;

    text-align:center;
}

.discover-badge{

    color:#D4AF37;

    margin-bottom:20px;

    letter-spacing:2px;

    text-transform:uppercase;
}

.discover-result h2{

    font-size:48px;

    color:#D4AF37;

    margin-bottom:20px;
}

.discover-products{

    display:flex;

    justify-content:center;

    align-items:stretch;

    gap:20px;

    flex-wrap:wrap;

    margin-top:40px;
}

.discover-variant-card{

    width:220px;

    background:#111;

    border:1px solid rgba(212,175,55,.15);

    border-radius:20px;

    padding:25px;

    text-align:center;

    transition:.3s;
}

.discover-variant-card:hover{

    transform:translateY(-5px);

    border-color:#D4AF37;
}

.discover-size{

    color:#D4AF37;

    font-size:28px;

    font-weight:600;

    margin-bottom:15px;
}

.discover-price{

    color:#fff;

    font-size:24px;

    font-weight:bold;

    margin-bottom:20px;
}

.discover-btn{

    display:inline-block;

    padding:10px 20px;

    border:1px solid #D4AF37;

    color:#D4AF37;

    text-decoration:none;

    border-radius:10px;

    transition:.3s;
}

.discover-btn:hover{

    background:#D4AF37;

    color:#000;
}

.discover-desc{

    color:#aaa;

    max-width:700px;

    margin:0 auto 30px;

    line-height:1.8;
}

.variant-card{

    width:220px;

    padding:25px;

    background:#181818;

    border-radius:20px;

    border:1px solid rgba(212,175,55,.15);

    transition:.3s;
}

.variant-card:hover{

    transform:translateY(-5px);

    border-color:#D4AF37;
}

.variant-size{

    color:#D4AF37;

    font-size:24px;

    margin-bottom:10px;
}

.variant-price{

    color:#fff;

    font-size:26px;

    font-weight:bold;
}

#aromaInput{

    width:100%;
    max-width:1100px;

    height:220px;

    display:block;

    margin:40px auto;

    padding:25px;

    background:#111;

    border:1px solid rgba(212,175,55,.2);

    border-radius:30px;

    color:#fff;

    font-size:20px;

    line-height:1.8;

    resize:none;

    outline:none;

    text-align:left;

    vertical-align:top;
}

#aromaInput::placeholder{

    text-align:left;

    color:#666;
}

#discoverBtn{

    margin-top:25px;

    background:#D4AF37;

    color:black;

    border:none;

    padding:15px 40px;

    border-radius:12px;

    cursor:pointer;

    font-weight:bold;
}

.recommend-card{

    margin-top:40px;

    background:#111;

    border:1px solid rgba(212,175,55,.3);

    border-radius:20px;

    padding:30px;
}

.collection-tools{

    display:flex;

    justify-content:flex-start;

    margin:50px 0 40px;
}

.search-box{

    width:400px;
}

.search-box input{

    width:100%;

    height:60px;

    padding:0 20px;

    background:#111;

    border:1px solid rgba(212,175,55,.2);

    border-radius:15px;

    color:#fff;

    font-size:16px;

    transition:.3s;
}

.search-box input:focus{

    outline:none;

    border-color:#D4AF37;

    box-shadow:
        0 0 15px rgba(212,175,55,.15);
}

.product-detail{

    padding:180px 80px 100px;
}

.detail-grid{

    display:grid;

    grid-template-columns:
        1fr 1fr;

    gap:80px;

    align-items:center;
}

.detail-image{

    background:#111;

    border-radius:30px;

    overflow:hidden;
}

.detail-image img{

    width:100%;

    display:block;
}

.detail-badge{

    color:#D4AF37;

    margin-bottom:15px;

    letter-spacing:2px;

    text-transform:uppercase;
}

.detail-info h1{

    font-size:64px;

    color:#D4AF37;

    margin-bottom:20px;
}

.detail-tagline{

    color:#aaa;

    margin-bottom:25px;
}

.detail-price{

    font-size:40px;

    font-weight:bold;

    margin-bottom:30px;
}

.variant-list{

    display:flex;

    gap:15px;

    margin-bottom:30px;

    flex-wrap:wrap;
}

.variant-btn{

    padding:12px 20px;

    border:1px solid rgba(212,175,55,.3);

    border-radius:12px;

    color:#fff;

    text-decoration:none;
}

.variant-btn.active{

    background:#D4AF37;

    color:#000;
}

.detail-description{

    color:#ccc;

    line-height:1.8;

    margin-bottom:40px;
}

.btn-order{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    width:100%;

    max-width:350px;

    height:60px;

    margin-top:30px;

    background:#25D366;

    color:#fff;

    text-decoration:none;

    border-radius:15px;

    font-size:18px;

    font-weight:600;

    transition:.3s;
}

.btn-order:hover{

    transform:translateY(-3px);

    box-shadow:
        0 10px 25px rgba(
            37,
            211,
            102,
            .25
        );
}

.character-tags{

    display:flex;

    flex-wrap:wrap;

    gap:10px;

    margin:25px 0;
}

.character-tags span{

    background:
        rgba(
            212,
            175,
            55,
            .12
        );

    border:
        1px solid
        rgba(
            212,
            175,
            55,
            .35
        );

    color:#D4AF37;

    padding:10px 18px;

    border-radius:30px;

    font-size:14px;

    letter-spacing:.5px;

    transition:.3s;
}

.character-tags span:hover{

    transform:
        translateY(-2px);

    border-color:#D4AF37;

    box-shadow:
        0 0 15px
        rgba(
            212,
            175,
            55,
            .15
        );
}

/* ======================
   SIZE SECTION
====================== */

.size-section{

    margin:40px 0;
}

.size-title{

    color:#D4AF37;

    margin-bottom:20px;

    font-size:20px;

    letter-spacing:1px;
}

.size-grid{

    display:flex;

    gap:15px;

    flex-wrap:wrap;
}

.size-card{

    min-width:140px;

    padding:20px;

    text-decoration:none;

    border-radius:20px;

    background:#111;

    border:1px solid rgba(212,175,55,.15);

    transition:.3s;

    text-align:center;
}

.size-card:hover{

    transform:translateY(-5px);

    border-color:#D4AF37;
}

.size-card.active{

    background:
        linear-gradient(
            135deg,
            rgba(212,175,55,.15),
            rgba(212,175,55,.05)
        );

    border-color:#D4AF37;

    box-shadow:
        0 0 20px rgba(212,175,55,.15);
}

.size-name{

    color:#D4AF37;

    font-size:24px;

    font-weight:600;

    margin-bottom:10px;
}

.size-price{

    color:#fff;

    font-size:16px;
}

.composition-box{

    margin-top:30px;

    background:#111;

    border:1px solid rgba(212,175,55,.15);

    border-radius:20px;

    padding:25px;
}

.composition-box h3{

    color:#D4AF37;

    margin-bottom:15px;
}

.composition-item{

    display:flex;

    justify-content:space-between;

    margin-bottom:10px;

    color:#ddd;
}

/* ======================
   PERFECT FOR
====================== */

.perfect-for-box{

    margin-top:30px;

    background:#111;

    border:1px solid rgba(212,175,55,.15);

    border-radius:20px;

    padding:25px;
}

.perfect-for-box h3{

    color:#D4AF37;

    margin-bottom:20px;
}

.perfect-grid{

    display:grid;

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

    gap:15px;
}

.perfect-item{

    padding:12px 15px;

    border-radius:12px;

    background:
        rgba(
            212,
            175,
            55,
            .08
        );

    color:#ddd;
}

.longevity-box{

    margin-top:30px;

    background:#111;

    border:1px solid rgba(212,175,55,.15);

    border-radius:20px;

    padding:25px;
}

.longevity-box h3{

    color:#D4AF37;

    margin-bottom:15px;
}

.longevity-value{

    font-size:24px;

    color:#fff;
}

.order-benefits{

    margin-top:30px;

    margin-bottom:25px;
}

.benefit-item{

    display:flex;

    align-items:center;

    gap:10px;

    color:#d8d8d8;

    margin-bottom:12px;

    font-size:15px;
}

/* ======================
   RELATED FRAGRANCE
====================== */

.related-section{

    padding:100px 80px;
}

.related-title{

    text-align:center;

    color:#D4AF37;

    font-size:42px;

    margin-bottom:50px;
}

/* ======================
   ABOUT PAGE
====================== */

.about-hero{

    padding:180px 80px 100px;

    text-align:center;
}

.about-container{

    max-width:1000px;

    margin:auto;
}

.about-badge{

    color:#D4AF37;

    letter-spacing:2px;

    margin-bottom:20px;
}

.about-hero h1{

    color:#D4AF37;

    font-size:72px;

    margin-bottom:25px;
}

.about-hero p{

    color:#ccc;

    line-height:2;
}

.about-story,
.about-philosophy{

    padding:100px 80px;
}

.about-story p,
.about-philosophy p{

    color:#ccc;

    line-height:2;

    margin-top:20px;
}

.about-composition{

    padding:100px 80px;
}

.composition-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

    margin-top:50px;
}

.composition-card{

    background:#111;

    border:1px solid rgba(212,175,55,.15);

    border-radius:20px;

    padding:30px;
}

.composition-card h3{

    color:#D4AF37;

    margin-bottom:15px;
}

.composition-card p{

    color:#ccc;

    line-height:1.8;

    margin-bottom:15px;
}

.composition-card strong{

    color:#fff;
}

.about-philosophy blockquote{

    color:#D4AF37;

    font-size:32px;

    text-align:center;

    margin:40px 0;
}

.about-cta{

    padding:120px 20px;

    text-align:center;
}

/* ======================
   CONTACT PAGE
====================== */

.contact-hero{

    padding:180px 80px 100px;

    text-align:center;
}

.contact-container{

    max-width:900px;

    margin:auto;
}

.contact-badge{

    color:#D4AF37;

    margin-bottom:20px;

    letter-spacing:2px;
}

.contact-hero h1{

    color:#D4AF37;

    font-size:64px;

    margin-bottom:25px;
}

.contact-hero p{

    color:#ccc;

    line-height:2;
}

.contact-content{

    padding:100px 80px;
}

.contact-grid{

    display:grid;

    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));

    gap:25px;
}

.contact-card{

    background:#111;

    border:1px solid rgba(212,175,55,.15);

    border-radius:20px;

    padding:30px;

    text-align:center;
}

.contact-card h3{

    color:#D4AF37;

    margin-bottom:15px;
}

.contact-card p{

    color:#ccc;

    line-height:1.8;
}

.contact-btn{

    display:inline-block;

    margin-top:20px;

    padding:12px 24px;

    border-radius:10px;

    background:#D4AF37;

    color:#000;

    text-decoration:none;

    font-weight:600;
}

/* ======================
   FAQ SECTION
====================== */

.faq-section{

    padding:100px 80px;
}

.faq-container{

    max-width:900px;

    margin:50px auto 0;
}

.faq-item{

    margin-bottom:15px;

    border:1px solid rgba(212,175,55,.15);

    border-radius:15px;

    overflow:hidden;

    background:#111;
}

.faq-question{

    width:100%;

    padding:20px 25px;

    background:none;

    border:none;

    color:#fff;

    text-align:left;

    cursor:pointer;

    font-size:16px;
}

.faq-answer{

    display:none;

    padding:0 25px 20px;

    color:#ccc;

    line-height:1.8;
}

/* ======================
   PROMO BANNER
====================== */

.promo-banner{

    padding:80px;

    margin:40px 80px;

    border-radius:30px;

    background:
        linear-gradient(
            135deg,
            rgba(212,175,55,.15),
            rgba(212,175,55,.05)
        );

    border:1px solid rgba(212,175,55,.2);

    text-align:center;
}

.promo-badge{

    color:#D4AF37;

    letter-spacing:2px;

    margin-bottom:15px;
}

.promo-banner h2{

    font-size:42px;

    color:#fff;

    margin-bottom:20px;
}

.promo-banner p{

    color:#ccc;

    max-width:700px;

    margin:auto auto 30px;

    line-height:1.8;
}

/* ======================
   BUNDLE PACKAGE
====================== */

.bundle-section{

    padding:100px 80px;

    text-align:center;
}

.bundle-subtitle{

    color:#ccc;

    margin-top:15px;

    margin-bottom:50px;
}

.bundle-grid{

    display:grid;

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

    gap:25px;
}

.bundle-card{

    position:relative;

    background:#111;

    border:1px solid rgba(212,175,55,.15);

    border-radius:25px;

    padding:40px 30px;

    transition:.3s;
}

.bundle-card:hover{

    transform:translateY(-8px);

    border-color:#D4AF37;
}

.bundle-badge{

    color:#D4AF37;

    font-size:12px;

    letter-spacing:2px;

    margin-bottom:20px;
}

.bundle-card h3{

    color:#fff;

    margin-bottom:20px;
}

.bundle-card ul{

    list-style:none;

    padding:0;

    margin:0 0 30px;
}

.bundle-card ul li{

    color:#ccc;

    margin-bottom:12px;
}

.bundle-price{

    color:#D4AF37;

    font-size:32px;

    font-weight:bold;

    margin-bottom:25px;
}

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

.footer{

    margin-top:100px;

    background:#0b0b0b;

    border-top:
        1px solid rgba(
            212,
            175,
            55,
            .15
        );

    padding:80px;
}

.footer-grid{

    display:grid;

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

    gap:50px;
}

.footer-logo{

    width:120px;

    margin-bottom:20px;
}

.footer h3{

    color:#D4AF37;

    margin-bottom:20px;
}

.footer a{

    display:block;

    color:#ccc;

    text-decoration:none;

    margin-bottom:12px;
}

.footer a:hover{

    color:#D4AF37;
}

.footer-bottom{

    margin-top:50px;

    padding-top:30px;

    border-top:
        1px solid rgba(
            212,
            175,
            55,
            .1
        );

    text-align:center;

    color:#777;
}

@media(min-width:769px) and (max-width:1024px){

    .navbar{

        padding:15px 40px;
    }

    .hero{

        padding:120px 40px;
    }

    .best-seller,
    .why-us,
    .collection-content{

        padding:80px 40px;
    }

    .product-grid{

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

    .discover-products{

        justify-content:center;
    }

}

@media(max-width:768px){

    /* NAVBAR */

    .navbar{

        padding:15px 20px;

        flex-direction:column;

        gap:15px;
    }

    .menu{

        gap:15px;

        flex-wrap:wrap;

        justify-content:center;
    }

    /* HERO */

    .hero{

        min-height:auto;

        padding:120px 20px 80px;
    }

    .hero-logo{

        width:120px;
    }

    .hero h1{

        font-size:42px;

        line-height:1.2;
    }

    .hero p{

        font-size:16px;

        line-height:1.7;
    }

    /* BUTTONS */

    .hero-buttons{

        flex-direction:column;

        width:100%;
    }

    .btn-shop,
    .btn-outline{

        width:100%;

        max-width:350px;

        min-width:auto;
    }

    /* SECTIONS */

    .best-seller,
    .why-us,
    .collection-content{

        padding:60px 20px;
    }

    .section-title{

        font-size:42px;
    }

    /* PRODUCT GRID */

    .product-grid{

        grid-template-columns:1fr;
    }

    .product-card{

        max-width:400px;

        margin:auto;
    }

    .product-image{

        height:260px;
    }

    /* DISCOVER AROMA */

    .discover-aroma{

        padding:40px 0;
    }

    #aromaInput{

        width:100%;

        height:180px;

        font-size:16px;

        padding:20px;
    }

    #discoverBtn{

        width:100%;

        max-width:350px;
    }

    /* DISCOVER RESULT */

    .discover-result{

        padding:30px 20px;
    }

    .discover-result h2{

        font-size:42px;
    }

    .discover-products{

        flex-direction:column;

        align-items:center;
    }

    .discover-variant-card{

        width:100%;

        max-width:320px;
    }

    /* WHY US */

    .why-grid{

        grid-template-columns:1fr;
    }

    .product-detail{

        padding:120px 20px 60px;
    }

    .detail-grid{

        grid-template-columns:1fr;

        gap:40px;
    }

    .detail-image{

        order:1;
    }

    .detail-info{

        order:2;
    }

    .detail-info h1{

        font-size:38px;

        line-height:1.2;
    }

    .detail-price{

        font-size:30px;
    }
    
    .character-tags{

        justify-content:center;
    }
    
    .size-grid{

        display:grid;

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

        gap:15px;
    }

    .size-card{

        width:100%;

        min-width:auto;
    }
    
    .composition-item{

        flex-direction:column;

        align-items:flex-start;

        gap:5px;
    }
    
    .perfect-grid{

        grid-template-columns:1fr;
    }
    
    .order-benefits{

        text-align:left;
    }
    
    .btn-order{

        width:100%;

        max-width:none;
    }
    
    .related-section{

        padding:60px 20px;
    }

    .related-title{

        font-size:30px;
    }
    
    .detail-image img{

        width:100%;
    
        height:auto;
    
        display:block;
    }
    
    .how-order{

        padding:60px 20px;
    }

    .order-steps{

        display:flex;

        flex-direction:column;

        gap:25px;

        position:relative;
    }

    .order-steps{

        grid-template-columns:1fr;
    }
    
    .order-steps::before{

        width:2px;

        height:100%;

        left:24px;

        top:0;

        transform:none;
    }
    
    .step-number{

        width:40px;

        height:40px;

        font-size:16px;
    }
    
    .about-hero{

        padding:120px 20px 60px;
    }

    .about-hero h1{

        font-size:42px;
    }

    .about-story,
    .about-philosophy,
    .about-composition{

        padding:60px 20px;
    }

    .about-philosophy blockquote{

        font-size:24px;
    }
    
    .contact-hero{

        padding:120px 20px 60px;
    }

    .contact-content{

        padding:60px 20px;
    }

    .contact-hero h1{

        font-size:42px;
    }
    
    .faq-section{

        padding:60px 20px;
    }
    
    .promo-banner{

        margin:20px;

        padding:40px 20px;
    }

    .promo-banner h2{

        font-size:28px;
    }
    
    .bundle-section{

        padding:60px 20px;
    }

    .bundle-grid{

        grid-template-columns:1fr;
    }

    /* FOOTER */

    .footer{

        padding:60px 20px;
    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:40px;
    }

}