/* =========================================================
THE AROMAVERSE
HOME.CSS
PART 1
=========================================================*/

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

.hero{
    position:relative;
    min-height:100vh;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 20% 20%,rgba(200,176,139,.12),transparent 35%),
        radial-gradient(circle at 80% 60%,rgba(200,176,139,.08),transparent 45%);
    pointer-events:none;
}

.hero-layout{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:5rem;
    align-items:center;
}

.hero-content{
    max-width:680px;
    position:relative;
    z-index:2;
}

.hero .eyebrow{
    margin-bottom:1.25rem;
}

.display-title{
    margin-bottom:2rem;
}

.hero-description{
    font-size:1.1rem;
    color:var(--text-secondary);
    line-height:1.9;
    max-width:56ch;
}

.hero-actions{
    display:flex;
    gap:1rem;
    margin-top:2.5rem;
    flex-wrap:wrap;
}

.hero-trust{
    display:flex;
    flex-wrap:wrap;
    gap:.75rem;
    margin-top:2rem;
}

.hero-trust span{
    padding:.7rem 1rem;
    border-radius:999px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(200,176,139,.15);
    color:var(--text-secondary);
    font-size:.72rem;
    letter-spacing:.08em;
}

.hero-visual{
    display:flex;
    justify-content:center;
}

.hero-image-wrap{
    position:relative;
    width:min(520px,100%);
}

.hero-image-wrap::before{
    content:"";
    position:absolute;
    inset:15%;
    border-radius:50%;
    background:
        radial-gradient(circle,
        rgba(200,176,139,.22),
        transparent 70%);
    filter:blur(70px);
}

.hero-image{
    position:relative;
    z-index:2;
    width:100%;
}

/* =========================================================
DISCOVER
=========================================================*/

.discover{
    position:relative;
}

.discover-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:1.5rem;
    margin-top:4rem;
}

.discover-large{
    grid-column:span 2;
    min-height:420px;
}

.discover-card{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    min-height:280px;

    background-size:cover;
    background-position:center;

    border:1px solid rgba(200,176,139,.16);

    transition:
        transform .45s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.discover-card:hover{
    transform:translateY(-8px);
    border-color:rgba(200,176,139,.35);

    box-shadow:
        0 30px 80px rgba(0,0,0,.45);
}

.discover-overlay{
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            to top,
            rgba(0,0,0,.92),
            rgba(0,0,0,.15)
        );
}

.discover-content{
    position:absolute;
    left:2rem;
    right:2rem;
    bottom:2rem;
    z-index:2;
}

.discover-tag{
    display:inline-flex;

    margin-bottom:.75rem;

    color:var(--lux-gold);

    font-size:.68rem;

    letter-spacing:.24em;

    text-transform:uppercase;
}

.discover-content h3{
    font-size:clamp(2rem,4vw,3rem);
    margin-bottom:.75rem;
}

.discover-content p{
    max-width:36ch;
    color:rgba(255,255,255,.82);
}

.discover-cta{
    display:inline-block;
    margin-top:1.2rem;

    color:var(--lux-gold);

    letter-spacing:.15em;

    text-transform:uppercase;

    font-size:.72rem;
}

/* Backgrounds */

.designer-card{
    background-image:url("https://images.unsplash.com/photo-1541643600914-78b084683601?auto=format&fit=crop&w=1200&q=80");
}

.arabian-card{
    background-image:url("/assets/images/discover/arabian.webp");
    background-size:cover;
    background-position:center;
}

.decant-card{
    background-image:url("https://images.unsplash.com/photo-1523293182086-7651a899d37f?auto=format&fit=crop&w=1200&q=80");
}

.finder-card{
    background-image:url("https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=1200&q=80");
}

/* =========================================================
TRUST
=========================================================*/

.trust-section{
    position:relative;
}

.catalog-trust-points{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1.5rem;
    margin-top:4rem;
}

.trust-point{
    padding:2rem;

    text-align:center;

    border-radius:24px;

    background:
        linear-gradient(
            180deg,
            rgba(16,16,16,.95),
            rgba(7,7,7,.98)
        );

    border:1px solid rgba(200,176,139,.15);

    transition:.35s;
}

.trust-point:hover{
    transform:translateY(-6px);

    border-color:rgba(200,176,139,.35);
}

.trust-point strong{
    display:block;

    color:var(--lux-gold);

    font-size:2rem;

    margin-bottom:.75rem;

    font-family:var(--font-display);
}

.trust-point span{
    color:var(--text-secondary);

    font-size:.88rem;
}

/* =========================================================
PRODUCT SECTIONS
FEATURED • TRENDING • BEST SELLERS • NEW ARRIVALS
=========================================================*/

.featured-products,
.trending-products,
.best-sellers,
.new-arrivals{
    position:relative;
}

.featured-products .section-header,
.trending-products .section-header,
.best-sellers .section-header,
.new-arrivals .section-header{
    margin-bottom:3rem;
}

.featured-products .eyebrow,
.trending-products .eyebrow,
.best-sellers .eyebrow,
.new-arrivals .eyebrow{
    margin-bottom:.85rem;
}

.featured-products .section-description,
.trending-products .section-description,
.best-sellers .section-description,
.new-arrivals .section-description{
    max-width:60ch;
}

/* =========================================================
SWIPER
=========================================================*/

.featured-swiper,
.trending-swiper,
.best-sellers-swiper,
.new-arrivals-swiper{
    width:100%;
    overflow:hidden;
    padding-bottom:1rem;
}

.featured-swiper .swiper-wrapper,
.trending-swiper .swiper-wrapper,
.best-sellers-swiper .swiper-wrapper,
.new-arrivals-swiper .swiper-wrapper{
    align-items:stretch;
}

.featured-swiper .swiper-slide,
.trending-swiper .swiper-slide,
.best-sellers-swiper .swiper-slide,
.new-arrivals-swiper .swiper-slide{
    height:auto;
}

.featured-swiper .product-card,
.trending-swiper .product-card,
.best-sellers-swiper .product-card,
.new-arrivals-swiper .product-card{
    height:100%;
}

/* =========================================================
SECTION DIVIDER
=========================================================*/

.featured-products::after,
.trending-products::after,
.best-sellers::after{
    content:"";

    position:absolute;

    left:50%;
    bottom:-2rem;

    width:140px;
    height:1px;

    transform:translateX(-50%);

    background:
        linear-gradient(
            to right,
            transparent,
            rgba(200,176,139,.35),
            transparent
        );
}

/* =========================================================
PRODUCT CARD ENHANCEMENTS
=========================================================*/

.product-card{
    transition:
        transform .4s ease,
        filter .4s ease;
}

.product-card:hover{
    transform:translateY(-8px);
}

.product-card-media{

    border-radius:28px;

    background:
        linear-gradient(
            180deg,
            rgba(18,18,18,.96),
            rgba(8,8,8,.99)
        );

    border:
        1px solid rgba(200,176,139,.18);

    overflow:hidden;
}

.product-card-image{

    transition:
        transform .45s ease,
        opacity .35s ease;
}

.product-card:hover .product-card-image{

    transform:scale(1.05);
}

.product-card-overlay{

    opacity:.65;

    transition:.35s;
}

.product-card:hover .product-card-overlay{

    opacity:.9;
}

.product-card-badge{

    background:
        rgba(5,5,5,.72);

    border:
        1px solid rgba(200,176,139,.25);

    backdrop-filter:blur(18px);
}

.product-card-brand{

    color:var(--lux-gold);

    letter-spacing:.18em;

    font-size:.72rem;

    text-transform:uppercase;
}

.product-card-title{

    margin:.4rem 0 .6rem;

    line-height:1.08;
}

.product-card-family{

    color:var(--text-secondary);

    margin-bottom:1rem;

    font-size:.9rem;
}

.product-card-price{

    color:var(--lux-cream);

    font-weight:700;

    font-size:1.2rem;
}

.product-card-label{

    color:var(--text-muted);

    font-size:.68rem;

    letter-spacing:.14em;

    text-transform:uppercase;
}

.product-card-cta{

    color:var(--lux-gold);

    transition:
        transform .35s ease,
        color .35s ease;
}

.product-card:hover .product-card-cta{

    transform:translateX(6px);
}

/* =========================================================
PRODUCT ACTIONS
=========================================================*/

.product-actions{

    display:flex;

    gap:.75rem;

    margin-top:1rem;
}

.product-actions .btn{

    flex:1;

    min-height:46px;

    font-size:.78rem;
}

/* =========================================================
SECTION BACKGROUNDS
=========================================================*/

.featured-products{

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(255,255,255,.01),
            transparent
        );
}

.trending-products{

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(200,176,139,.015),
            transparent
        );
}

.best-sellers{

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(255,255,255,.01),
            transparent
        );
}

.new-arrivals{

    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(200,176,139,.015),
            transparent
        );
}

/* =========================================================
TABLET
=========================================================*/

@media (max-width:991px){

    .featured-products .section-header,
    .trending-products .section-header,
    .best-sellers .section-header,
    .new-arrivals .section-header{

        margin-bottom:2rem;
    }

}

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

@media (max-width:768px){

    .featured-swiper,
    .trending-swiper,
    .best-sellers-swiper,
    .new-arrivals-swiper{

        overflow:hidden;
    }

    .product-actions{

        flex-direction:column;
    }

    .product-actions .btn{

        width:100%;
    }

    .product-card-title{

        font-size:1.35rem;
    }

    .product-card-media{

        border-radius:22px;
    }

}

/* =========================================================
FRAGRANCE FINDER
=========================================================*/

.fragrance-finder-home{
    position:relative;
}

.finder-layout{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:5rem;
    align-items:center;
}

.finder-content{
    max-width:650px;
}

.finder-content .section-title{
    margin:1rem 0 1.5rem;
}

.finder-content .section-description{
    line-height:1.9;
}

.finder-features{
    display:flex;
    flex-wrap:wrap;
    gap:1rem;
    margin:2.5rem 0;
}

.finder-feature{

    padding:.9rem 1.25rem;

    border-radius:999px;

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

    border:
        1px solid rgba(200,176,139,.18);

    color:var(--lux-cream);

    font-size:.72rem;

    letter-spacing:.12em;

    text-transform:uppercase;

    transition:.35s;
}

.finder-feature:hover{

    transform:translateY(-3px);

    border-color:rgba(200,176,139,.4);

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

.finder-preview{

    min-height:520px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:4rem;

    text-align:center;

    position:relative;

    overflow:hidden;
}

.finder-preview::before{

    content:"";

    position:absolute;

    width:420px;
    height:420px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(200,176,139,.18),
            transparent 70%
        );

    filter:blur(70px);
}

.finder-preview-inner{

    position:relative;

    z-index:2;

    max-width:420px;
}

.finder-preview-inner h3{

    margin:1.2rem 0;

    font-size:clamp(2rem,4vw,3rem);

    line-height:1;
}

.finder-preview-inner p{

    color:var(--text-secondary);

    line-height:1.8;
}

/* =========================================================
COMMUNITY
=========================================================*/

.community{
    position:relative;
}

.community-layout{

    display:grid;

    grid-template-columns:.9fr 1.1fr;

    gap:5rem;

    align-items:center;
}

.community-content .section-title{

    margin:1rem 0 1.5rem;
}

.community-links{

    display:grid;

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

    gap:2rem;
}

.community-card{

    display:flex;

    flex-direction:column;

    padding:2rem;

    border-radius:30px;

    min-height:320px;

    transition:
        transform .4s ease,
        border-color .35s ease,
        box-shadow .35s ease;
}

.community-card:hover{

    transform:translateY(-8px);

    border-color:rgba(200,176,139,.35);

    box-shadow:
        0 25px 60px rgba(0,0,0,.35);
}

.community-label{

    display:inline-flex;

    width:max-content;

    margin-bottom:auto;

    padding:.5rem .9rem;

    border-radius:999px;

    background:rgba(200,176,139,.12);

    color:var(--lux-gold);

    font-size:.68rem;

    letter-spacing:.18em;

    text-transform:uppercase;
}

.community-card h3{

    margin:2rem 0 1rem;

    font-size:2.2rem;
}

.community-card p{

    color:var(--text-secondary);

    line-height:1.8;
}

.community-cta{

    margin-top:2rem;

    color:var(--lux-gold);

    letter-spacing:.12em;

    text-transform:uppercase;

    font-size:.75rem;
}

/* =========================================================
PRIVATE LIST
=========================================================*/

.private-list{

    position:relative;
}

.private-list-card{

    padding:5rem;

    text-align:center;
}

.private-list-content{

    max-width:760px;

    margin:auto;
}

.private-list-content .section-title{

    margin:1rem 0 1.5rem;
}

.private-list-content .section-description{

    margin:0 auto 2.5rem;

    line-height:1.9;
}

.private-list-form{

    display:flex;

    gap:1rem;

    align-items:center;

    max-width:720px;

    margin:auto;
}

.private-list-form .input{

    flex:1;

    min-height:60px;
}

.private-list-form .btn{

    min-height:60px;

    white-space:nowrap;
}

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

.section:last-of-type{

    position:relative;

    text-align:center;
}

.section:last-of-type .section-title{

    margin:1rem auto 1.5rem;
}

.section:last-of-type .section-description{

    margin:auto;
}

.section:last-of-type .btn{

    min-width:220px;
}

/* =========================================================
DECORATIVE LINES
=========================================================*/

.fragrance-finder-home::before,
.community::before,
.private-list::before{

    content:"";

    position:absolute;

    top:0;
    left:50%;

    transform:translateX(-50%);

    width:120px;
    height:1px;

    background:
        linear-gradient(
            to right,
            transparent,
            rgba(200,176,139,.4),
            transparent
        );
}

/* =========================================================
HOME.CSS
PART 4
RESPONSIVE + LUXURY FINISH
=========================================================*/

/* =========================================================
SECTION SPACING
=========================================================*/

.hero,
.discover,
.trust-section,
.featured-products,
.trending-products,
.best-sellers,
.new-arrivals,
.fragrance-finder-home,
.community,
.private-list{

    position:relative;
}

.hero::after,
.discover::after,
.trust-section::after,
.featured-products::after,
.trending-products::after,
.best-sellers::after,
.new-arrivals::after{

    content:"";

    position:absolute;

    left:50%;
    bottom:-40px;

    transform:translateX(-50%);

    width:120px;
    height:1px;

    background:
        linear-gradient(
            to right,
            transparent,
            rgba(200,176,139,.25),
            transparent
        );
}

/* =========================================================
SECTION HEADERS
=========================================================*/

.section-header{

    margin-bottom:3rem;
}

.section-header .eyebrow{

    margin-bottom:.85rem;
}

.section-title{

    margin-bottom:1.25rem;
}

.section-description{

    line-height:1.9;
}

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

.hero .btn,
.private-list .btn,
.finder-content .btn{

    min-width:220px;
}

.btn{

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        background .35s ease;
}

.btn:hover{

    box-shadow:
        0 15px 40px rgba(200,176,139,.18);
}

/* =========================================================
IMAGE POLISH
=========================================================*/

.hero-image,
.product-card-image{

    will-change:transform;
}

/* =========================================================
GLASS ENHANCEMENT
=========================================================*/

.glass-card{

    box-shadow:
        0 30px 80px rgba(0,0,0,.45);

    transition:
        transform .4s ease,
        border-color .35s ease;
}

.glass-card:hover{

    border-color:
        rgba(200,176,139,.35);
}

/* =========================================================
TABLET
=========================================================*/

@media (max-width:1200px){

.hero-layout,
.finder-layout,
.community-layout{

grid-template-columns:1fr;

gap:4rem;

}

.hero-content{

max-width:none;

}

.hero-visual{

order:-1;

}

.community-links{

grid-template-columns:1fr 1fr;

}

.catalog-trust-points{

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

}

}

/* =========================================================
TABLET SMALL
=========================================================*/

@media (max-width:991px){

.section{

padding:5rem 0;

}

.hero{

min-height:auto;

padding-top:140px;

padding-bottom:4rem;

}

.display-title{

max-width:100%;

}

.discover-grid{

grid-template-columns:1fr;

}

.discover-large{

grid-column:auto;

min-height:320px;

}

.finder-preview{

min-height:360px;

}

.hero-actions{

flex-direction:column;

align-items:stretch;

}

.hero-actions .btn{

width:100%;

}

.private-list-form{

flex-direction:column;

}

.private-list-form .btn{

width:100%;

}

}

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

@media (max-width:768px){

.hero{

padding-top:120px;

}

.hero-layout{

gap:2.5rem;

}

.hero-description{

font-size:1rem;

}

.hero-trust{

gap:.6rem;

}

.hero-trust span{

font-size:.68rem;

padding:.6rem .9rem;

}

.discover-card{

min-height:220px;

}

.discover-content{

left:1.5rem;
right:1.5rem;
bottom:1.5rem;

}

.discover-content h3{

font-size:1.9rem;

}

.catalog-trust-points{

grid-template-columns:1fr;

}

.trust-point{

padding:1.75rem;

}

.community-links{

grid-template-columns:1fr;

}

.community-card{

min-height:auto;

}

.finder-features{

flex-direction:column;

}

.finder-feature{

width:100%;

text-align:center;

}

.private-list-card{

padding:2rem;

}

.section-header{

margin-bottom:2rem;

}

}

/* =========================================================
SMALL DEVICES
=========================================================*/

@media (max-width:576px){

.section{

padding:4rem 0;

}

.display-title{

font-size:clamp(2.8rem,12vw,4rem);

}

.section-title{

font-size:clamp(2rem,9vw,2.8rem);

}

.hero-image-wrap{

max-width:260px;

margin:auto;

}

.hero-trust{

flex-direction:column;

align-items:flex-start;

}

.finder-preview{

padding:2rem;

min-height:280px;

}

.finder-preview-inner h3{

font-size:2rem;

}

.community-card{

padding:1.5rem;

}

}

/* =========================================================
SWIPER FIXES
=========================================================*/

..swiper{

    width:100%;

    overflow:hidden;

}

.swiper-slide{

    height:auto;

    box-sizing:border-box;

}


/* =========================================================
ANIMATIONS
=========================================================*/

.hero-image{

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

}

@keyframes heroFloat{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}

.discover-card,
.product-card,
.community-card,
.trust-point{

transition:
transform .35s ease,
box-shadow .35s ease,
border-color .35s ease;

}

.discover-card:hover,
.product-card:hover,
.community-card:hover,
.trust-point:hover{

box-shadow:
0 20px 60px rgba(0,0,0,.35);

}
.featured-products .container,
.trending-products .container,
.best-sellers .container,
.new-arrivals .container{

    overflow:hidden;

}

/* =========================================================
STEP 5: Home Page - Mobile Polish
========================================================= */

@media (max-width: 768px) {

    /* Hero */
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 3rem;
    }

    .hero-layout {
        gap: 2rem;
    }

    .display-title {
        font-size: 2.6rem;
        line-height: 1.05;
    }

    .hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-trust {
        gap: 0.55rem;
    }

    .hero-trust span {
        font-size: 0.68rem;
        padding: 0.55rem 0.85rem;
    }

    /* Discover Section */
    .discover-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2.5rem;
    }

    .discover-card {
        min-height: 240px;
    }

    .discover-content {
        left: 1.4rem;
        right: 1.4rem;
        bottom: 1.4rem;
    }

    .discover-content h3 {
        font-size: 1.75rem;
    }

    /* Trust Points */
    .catalog-trust-points {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2.5rem;
    }

    .trust-point {
        padding: 1.6rem 1.4rem;
    }

    .trust-point strong {
        font-size: 1.7rem;
    }

    /* Section spacing */
    .section {
        padding: 3.5rem 0;
    }

    .section-header {
        margin-bottom: 1.8rem;
    }
}

/* =========================================================
STEP 6: Mobile Navigation Menu - Polish
========================================================= */

@media (max-width: 768px) {

    .mobile-toggle {
        padding: 8px 16px;
        font-size: 0.85rem;
        border: 1px solid rgba(200, 176, 139, 0.25);
        border-radius: 999px;
        background: transparent;
        color: #C5A46E;
        cursor: pointer;
    }

    .mobile-menu {
        background: #0A0A0A;
        padding: 2rem 1.5rem;
        border-top: 1px solid rgba(200, 176, 139, 0.15);
    }

    .mobile-nav a {
        display: block;
        padding: 14px 0;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
        color: #EDE5D5;
    }

    .mobile-nav a:last-child {
        border-bottom: none;
    }

    .mobile-close {
        font-size: 0.9rem;
        padding: 10px 20px;
        border: 1px solid rgba(200, 176, 139, 0.3);
        border-radius: 999px;
        color: #C5A46E;
        background: transparent;
        margin-bottom: 1rem;
    }

    .cart-count {
        font-size: 0.75rem;
        padding: 1px 7px;
        min-width: 18px;
        height: 18px;
    }
}

/* =========================================================
FINAL FIX: Remove circle from MENU button completely
========================================================= */

.mobile-toggle,
button.mobile-toggle,
.header .mobile-toggle {
    all: unset !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 8px 18px !important;
    font-size: 0.85rem !important;
    color: #C5A46E !important;
    font-weight: 500 !important;
    border: 1px solid rgba(200, 176, 139, 0.25) !important;
    border-radius: 999px !important;
    background: transparent !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.mobile-toggle:hover {
    background: rgba(200, 176, 139, 0.08) !important;
    border-color: #C5A46E !important;
}
/* =========================================================
END
=========================================================*/