/* ===================================== */
/* GLOBAL */
/* ===================================== */

body{
    background:#f6f8fb;
    font-family:'Inter',sans-serif;
    color:#111827;
    overflow-x:hidden;
}

.section-padding{
    padding:90px 0;
}

.section-title{
    font-size:2.5rem;
    font-weight:900;
    line-height:1.1;
    margin-bottom:18px;
}

.section-subtitle{
    color:#6b7280;
    max-width:760px;
    line-height:1.8;
    font-size:1.05rem;
}

.glass-card{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.1);
}

.modern-btn{
    border-radius:999px;
    padding:14px 28px;
    font-weight:700;
}

/* ===================================== */
/* HERO V2 FINAL FIX */
/* ===================================== */

.hero-v2{
    position:relative;
    overflow:hidden;
    background:
        radial-gradient(circle at top right,#2563eb22,transparent 30%),
        radial-gradient(circle at bottom left,#06b6d422,transparent 30%),
        linear-gradient(135deg,#081120,#0f172a);
    color:#fff;
    padding:120px 0 80px;
    min-height:100vh;
    display:flex;
    align-items:center;
}

.hero-v2::before{
    content:'';
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            rgba(255,255,255,.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.025) 1px,
            transparent 1px
        );
    background-size:40px 40px;
    pointer-events:none;
}

.hero-v2 .container{
    position:relative;
    z-index:2;
}

/* ===================================== */
/* GRID */
/* ===================================== */

.hero-grid-v2{
    display:grid;
    grid-template-columns:minmax(0,1fr) 440px;
    gap:70px;
    align-items:center;
}

/* ===================================== */
/* LEFT */
/* ===================================== */

.hero-content{
    max-width:760px;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 22px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(14px);
    margin-bottom:28px;
    font-weight:700;
    font-size:.92rem;
}

.hero-title{
    font-size:clamp(3rem,7vw,5.7rem);
    line-height:.95;
    font-weight:900;
    margin-bottom:28px;
    letter-spacing:-3px;
    max-width:720px;
}

.hero-title span{
    background:linear-gradient(
        90deg,
        #60a5fa,
        #06b6d4
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-subtitle{
    max-width:650px;
    color:#cbd5e1;
    font-size:1.08rem;
    line-height:1.95;
}

/* ===================================== */
/* SEARCH */
/* ===================================== */

.hero-search{
    margin-top:38px;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(16px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    padding:14px;
    display:flex;
    align-items:center;
    gap:14px;
    max-width:760px;
}

.hero-search input{
    flex:1;
    background:none;
    border:none;
    outline:none;
    color:#fff;
    font-size:1rem;
}

.hero-search input::placeholder{
    color:#cbd5e1;
}

.hero-search-btn{
    border:none;
    height:58px;
    min-width:210px;
    border-radius:18px;
    background:linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8
    );
    color:#fff;
    font-weight:800;
    transition:.3s ease;
}

.hero-search-btn:hover{
    transform:translateY(-2px);
}

/* ===================================== */
/* TRENDING */
/* ===================================== */

.hero-trending{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:12px;
    margin-top:28px;
}

.trending-pill{
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    font-size:.88rem;
    color:#dbeafe;
    cursor:pointer;
    transition:.3s ease;
}

.trending-pill:hover{
    background:#2563eb;
    transform:translateY(-2px);
}

/* ===================================== */
/* STATS */
/* ===================================== */

.hero-stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
    margin-top:55px;
    max-width:760px;
}

.hero-stat{
    background:rgba(255,255,255,.06);
    backdrop-filter:blur(14px);
    border:1px solid rgba(255,255,255,.06);
    border-radius:28px;
    padding:24px;
}

.hero-stat-value{
    font-size:2rem;
    font-weight:900;
}

.hero-stat-label{
    margin-top:8px;
    color:#cbd5e1;
    font-size:.92rem;
}

/* ===================================== */
/* RIGHT SIDE */
/* ===================================== */

.hero-products-wrapper{
    position:relative;
    width:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.hero-products-header{
    margin-bottom:18px;
}

.hero-products-title{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:1.2rem;
    font-weight:800;
    color:#fff;
}

/* ===================================== */
/* SWIPER */
/* ===================================== */

.heroProductsSwiper{
    width:100%;
    overflow:hidden;
    border-radius:34px;
}

.heroProductsSwiper .swiper-slide{
    height:auto;
}

.hero-product-card{
    position:relative;
    display:block;
    overflow:hidden;
    border-radius:34px;
    text-decoration:none;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(14px);
}

.hero-product-image-wrapper{
    position:relative;
    height:560px;
    overflow:hidden;
}

.hero-product-image{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .6s ease;
}

.hero-product-card:hover .hero-product-image{
    transform:scale(1.06);
}

.hero-product-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.8),
        rgba(0,0,0,.1)
    );
}

.hero-product-content{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:30px;
    color:#fff;
}

.hero-product-category{
    color:#93c5fd;
    font-weight:700;
    margin-bottom:10px;
    font-size:.9rem;
}

.hero-product-title{
    font-size:1.35rem;
    font-weight:800;
    line-height:1.5;
    margin-bottom:14px;
}

.hero-product-price{
    font-size:2rem;
    font-weight:900;
    color:#4ade80;
}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media(max-width:1400px){

    .hero-grid-v2{
        grid-template-columns:1fr;
        gap:60px;
    }

    .hero-products-wrapper{
        max-width:520px;
        margin:auto;
    }

}

@media(max-width:992px){

    .hero-v2{
        padding:120px 0 70px;
        min-height:auto;
    }

    .hero-title{
        letter-spacing:-2px;
    }

    .hero-search{
        flex-direction:column;
        align-items:stretch;
    }

    .hero-search-btn{
        width:100%;
    }

    .hero-stats{
        grid-template-columns:repeat(2,1fr);
    }

    .hero-product-image-wrapper{
        height:420px;
    }

}

@media(max-width:576px){

    .hero-title{
        font-size:2.8rem;
        line-height:1;
    }

    .hero-stats{
        grid-template-columns:1fr;
    }

    .hero-stat{
        padding:20px;
    }

    .hero-product-image-wrapper{
        height:340px;
    }

}

/* ===================================== */
/* CATEGORY EXPLORER */
/* ===================================== */

.categories-v2{
    position:relative;
}

.category-card-v2{
    position:relative;
    overflow:hidden;
    border-radius:34px;
    padding:34px;
    height:100%;
    background:#fff;
    transition:.35s ease;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
    text-decoration:none;
    color:#111827;
    display:block;
}

.category-card-v2:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(15,23,42,.12);
}

.category-card-v2::before{
    content:'';
    position:absolute;
    inset:0;
    background:
        radial-gradient(
            circle at top right,
            rgba(37,99,235,.08),
            transparent 35%
        );
    pointer-events:none;
}

.category-icon-v2{
    width:82px;
    height:82px;
    border-radius:26px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    margin-bottom:26px;
}

.category-title-v2{
    font-size:1.25rem;
    font-weight:800;
    margin-bottom:10px;
}

.category-desc-v2{
    color:#6b7280;
    line-height:1.8;
    margin-bottom:22px;
}

.category-meta{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.category-count{
    font-weight:700;
    color:#2563eb;
}

.category-arrow{
    width:46px;
    height:46px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eff6ff;
    transition:.3s ease;
}

.category-card-v2:hover .category-arrow{
    transform:translateX(5px);
    background:#2563eb;
    color:#fff;
}

/* MOBILE CATEGORY SLIDER */

.mobile-category-slider{
    display:none;
}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media(max-width:1400px){

    .hero-floating-card{
        display:none;
    }

}

@media(max-width:991px){

    .hero-v2{
        min-height:auto;
        padding:140px 0 90px;
    }

    .hero-title{
        font-size:3rem;
    }

    .hero-search{
        flex-direction:column;
        align-items:stretch;
    }

    .hero-search-btn{
        width:100%;
    }

    .hero-stats{
        grid-template-columns:repeat(2,1fr);
    }

    .section-title{
        font-size:2rem;
    }

    .desktop-categories{
        display:none;
    }

    .mobile-category-slider{
        display:block;
    }

}

@media(max-width:576px){

    .hero-title{
        font-size:2.3rem;
    }

    .hero-stat{
        padding:18px;
    }

    .hero-stat-value{
        font-size:1.5rem;
    }

    .category-card-v2{
        padding:28px;
    }

}

/* ===================================== */
/* SPOTLIGHT V2 */
/* ===================================== */

.spotlight-card{
    background:#fff;
    border-radius:34px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(15,23,42,.06);
    transition:.4s ease;
    height:100%;
}

.spotlight-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 60px rgba(15,23,42,.12);
}

.spotlight-image-wrapper{
    position:relative;
    overflow:hidden;
    height:320px;
}

.spotlight-image{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .5s ease;
}

.spotlight-card:hover .spotlight-image{
    transform:scale(1.08);
}

.spotlight-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.55),
        transparent
    );
}

.spotlight-top-badges{
    position:absolute;
    top:20px;
    left:20px;
    right:20px;
    display:flex;
    justify-content:space-between;
    z-index:2;
}

.spotlight-badge{
    background:#2563eb;
    color:#fff;
    padding:10px 16px;
    border-radius:999px;
    font-size:.85rem;
    font-weight:700;
}

.discount-badge{
    background:#16a34a;
    color:#fff;
    padding:10px 16px;
    border-radius:999px;
    font-size:.85rem;
    font-weight:700;
}

.spotlight-actions{
    position:absolute;
    right:20px;
    bottom:20px;
    display:flex;
    flex-direction:column;
    gap:10px;
    z-index:3;
}

.quick-btn{
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    color:#fff;
    transition:.3s ease;
}

.quick-btn:hover{
    background:#2563eb;
    transform:scale(1.08);
}

.spotlight-content{
    padding:28px;
}

.spotlight-category{
    color:#2563eb;
    font-size:.9rem;
    font-weight:700;
    margin-bottom:12px;
}

.spotlight-title{
    font-size:1.2rem;
    font-weight:800;
    line-height:1.5;
    min-height:64px;
}

.spotlight-price-row{
    display:flex;
    justify-content:space-between;
    align-items:end;
    margin-top:22px;
}

.spotlight-price{
    font-size:1.6rem;
    font-weight:900;
    color:#16a34a;
}

.market-price{
    color:#9ca3af;
    text-decoration:line-through;
    margin-top:4px;
}

.spotlight-views{
    color:#6b7280;
    font-size:.9rem;
    display:flex;
    align-items:center;
    gap:8px;
}

/* ===================================== */
/* PRODUCTS GRID V2 */
/* ===================================== */

.products-grid-v2{
    display:grid;
    grid-template-columns:
        repeat(
            auto-fit,
            minmax(290px,1fr)
        );
    gap:28px;
}

.product-card-v2{
    background:#fff;
    border-radius:34px;
    overflow:hidden;
    transition:.4s ease;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
}

.product-card-v2:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(15,23,42,.12);
}

.product-image-v2-wrapper{
    position:relative;
    overflow:hidden;
    height:300px;
}

.product-image-v2{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .5s ease;
}

.product-card-v2:hover .product-image-v2{
    transform:scale(1.08);
}

.product-card-badges{
    position:absolute;
    top:20px;
    left:20px;
    z-index:3;
}

.featured-pill{
    background:#111827;
    color:#fff;
    padding:10px 16px;
    border-radius:999px;
    font-size:.8rem;
    font-weight:700;
}

.product-hover-actions{
    position:absolute;
    top:20px;
    right:20px;
    display:flex;
    flex-direction:column;
    gap:10px;
    opacity:0;
    transform:translateX(20px);
    transition:.35s ease;
}

.product-card-v2:hover .product-hover-actions{
    opacity:1;
    transform:translateX(0);
}

.hover-btn{
    width:46px;
    height:46px;
    border:none;
    border-radius:50%;
    background:rgba(243, 140, 22, 0.18);
    backdrop-filter:blur(10px);
    color:#fff;
    transition:.3s ease;
}

.hover-btn:hover{
    background:#2563eb;
    transform:scale(1.08);
}

.product-card-content{
    padding:26px;
}

.product-category-v2{
    color:#2563eb;
    font-size:.85rem;
    font-weight:700;
    margin-bottom:12px;
}

.product-title-v2{
    font-size:1.15rem;
    font-weight:800;
    line-height:1.6;
    min-height:64px;
}

.product-meta-v2{
    display:flex;
    justify-content:space-between;
    align-items:center;
    color:#6b7280;
    font-size:.9rem;
    margin-top:18px;
}

.product-price-row-v2{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:24px;
}

.product-price-v2{
    font-size:1.3rem;
    font-weight:900;
    color:#16a34a;
}

/* ===================================== */
/* TRUST + ECOSYSTEM */
/* ===================================== */

.trust-section-v2{
    background:
        radial-gradient(circle at top right,#2563eb33,transparent 30%),
        linear-gradient(135deg,#0f172a,#111827);
    border-radius:42px;
    padding:70px;
    position:relative;
    overflow:hidden;
}

.trust-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 20px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    color:#dbeafe;
}

.trust-text{
    color:#cbd5e1;
    line-height:1.9;
    margin-top:24px;
    max-width:620px;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:40px;
}

.trust-item{
    display:flex;
    align-items:center;
    gap:12px;
    color:#fff;
    font-weight:600;
}

.trust-item i{
    color:#22c55e;
}

.ecosystem-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.ecosystem-card{
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    padding:28px;
    transition:.35s ease;
}

.ecosystem-card:hover{
    transform:translateY(-8px);
}

.ecosystem-icon{
    width:74px;
    height:74px;
    border-radius:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.7rem;
    margin-bottom:24px;
}

.ecosystem-title{
    font-size:1.2rem;
    font-weight:800;
    color:#fff;
    margin-bottom:12px;
}

.ecosystem-text{
    color:#cbd5e1;
    line-height:1.8;
}

@media(max-width:991px){

    .trust-section-v2{
        padding:40px 24px;
    }

    .trust-grid,
    .ecosystem-grid{
        grid-template-columns:1fr;
    }

}

/* ===================================== */
/* PROMO BANNERS */
/* ===================================== */

.promo-grid-v2{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px;
    margin-bottom:100px;
}

.promo-banner{
    position:relative;
    overflow:hidden;
    border-radius:42px;
    padding:60px;
    min-height:420px;
    display:flex;
    align-items:center;
}

.seller-banner{
    background:
        radial-gradient(circle at top right,#60a5fa33,transparent 30%),
        linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
}

.declutter-banner{
    background:
        radial-gradient(circle at top right,#22c55e33,transparent 30%),
        linear-gradient(135deg,#15803d,#166534);
    color:#fff;
}

.promo-content{
    position:relative;
    z-index:2;
    max-width:500px;
}

.promo-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(10px);
    margin-bottom:24px;
    font-weight:700;
}

.promo-title{
    font-size:2.7rem;
    font-weight:900;
    line-height:1.1;
    margin-bottom:24px;
}

.promo-text{
    color:#dbeafe;
    line-height:1.9;
    font-size:1.05rem;
}

.promo-glow{
    position:absolute;
    width:400px;
    height:400px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    right:-120px;
    bottom:-120px;
}

/* ===================================== */
/* BRANDS */
/* ===================================== */

.brands-section-v2{
    position:relative;
    overflow:hidden;
}

.brands-marquee{
    overflow:hidden;
    position:relative;
    width:100%;
}

.brands-track{
    display:flex;
    gap:28px;
    width:max-content;
    animation:scrollBrands 35s linear infinite;
}

.brand-item{
    min-width:220px;
    height:110px;
    background:#fff;
    border-radius:28px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.4rem;
    font-weight:800;
    color:#6b7280;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
    transition:.3s ease;
}

.brand-item:hover{
    transform:translateY(-8px);
    color:#111827;
}

@keyframes scrollBrands{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

@media(max-width:991px){

    .promo-grid-v2{
        grid-template-columns:1fr;
    }

    .promo-banner{
        padding:40px 28px;
    }

    .promo-title{
        font-size:2rem;
    }

}

/* ===================================== */
/* WHY BARTABASE */
/* ===================================== */

.why-grid-v2{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.why-card-v2{
    background:#fff;
    border-radius:34px;
    padding:38px;
    transition:.35s ease;
    box-shadow:0 10px 30px rgba(15,23,42,.05);
}

.why-card-v2:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 50px rgba(15,23,42,.12);
}

.why-icon{
    width:82px;
    height:82px;
    border-radius:26px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:2rem;
    margin-bottom:28px;
}

.why-title{
    font-size:1.2rem;
    font-weight:800;
    margin-bottom:16px;
}

.why-text{
    color:#6b7280;
    line-height:1.9;
}

@media(max-width:1200px){

    .why-grid-v2{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .why-grid-v2{
        grid-template-columns:1fr;
    }

}


/* ===================================== */
/* FINAL CTA */
/* ===================================== */

.final-cta-v2{
    position:relative;
    overflow:hidden;
    border-radius:48px;
    padding:90px 40px;
    background:
        radial-gradient(circle at top right,#60a5fa44,transparent 30%),
        radial-gradient(circle at bottom left,#06b6d444,transparent 30%),
        linear-gradient(135deg,#0f172a,#111827);
    color:#fff;
}

.final-cta-overlay{
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            rgba(255,255,255,.02) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.02) 1px,
            transparent 1px
        );
    background-size:40px 40px;
}

.cta-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 22px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    margin-bottom:30px;
    font-weight:700;
}

.final-cta-title{
    font-size:4rem;
    font-weight:900;
    line-height:1.1;
    margin-bottom:24px;
}

.final-cta-text{
    max-width:760px;
    margin:auto;
    color:#cbd5e1;
    line-height:1.9;
    font-size:1.05rem;
}

@media(max-width:991px){

    .final-cta-v2{
        padding:60px 24px;
        border-radius:34px;
    }

    .final-cta-title{
        font-size:2.5rem;
    }

}

/* ===================================== */
/* ANIMATIONS */
/* ===================================== */

.hidden-element{
    opacity:0;
    transform:translateY(40px);
    transition:
        opacity .7s ease,
        transform .7s ease;
}

.show-element{
    opacity:1;
    transform:translateY(0);
}

html{
    scroll-behavior:smooth;
}

/* ===================================== */
/* HERO V3 */
/* ===================================== */

.hero-v3{
    position:relative;
    overflow:hidden;
    padding:140px 0 90px;
    background:
        radial-gradient(circle at top right,#2563eb22,transparent 30%),
        radial-gradient(circle at bottom left,#06b6d422,transparent 30%),
        linear-gradient(135deg,#081120,#0f172a);
    color:#fff;
    text-align:center;
}

.hero-v3::before{
    content:'';
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            rgba(255,255,255,.03) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.03) 1px,
            transparent 1px
        );
    background-size:40px 40px;
}

/* ===================================== */
/* BADGE */
/* ===================================== */

.hero-badge-v3{
    position:relative;
    z-index:2;
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:14px 24px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(14px);
    font-weight:700;
    margin-bottom:34px;
}

/* ===================================== */
/* TITLE */
/* ===================================== */

.hero-title-v3{
    position:relative;
    z-index:2;
    font-size:clamp(3.2rem,8vw,6.5rem);
    line-height:.95;
    font-weight:900;
    max-width:1100px;
    margin:auto;
    letter-spacing:-4px;
}

.hero-title-v3 span{
    background:linear-gradient(
        90deg,
        #60a5fa,
        #06b6d4
    );
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* ===================================== */
/* SUBTITLE */
/* ===================================== */

.hero-subtitle-v3{
    position:relative;
    z-index:2;
    max-width:900px;
    margin:34px auto 0;
    color:#cbd5e1;
    font-size:1.15rem;
    line-height:2;
}

/* ===================================== */
/* SEARCH */
/* ===================================== */

.hero-search-v3{
    position:relative;
    z-index:2;
    max-width:850px;
    margin:42px auto 0;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    border-radius:30px;
    padding:16px;
    display:flex;
    align-items:center;
    gap:14px;
}

.hero-search-v3 input{
    flex:1;
    border:none;
    background:none;
    outline:none;
    color:#fff;
    font-size:1rem;
}

.hero-search-v3 button{
    border:none;
    height:60px;
    padding:0 28px;
    border-radius:18px;
    background:linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8
    );
    color:#fff;
    font-weight:800;
}

/* ===================================== */
/* TRENDING */
/* ===================================== */

.hero-trending-v3{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:14px;
    margin-top:28px;
}

/* ===================================== */
/* PRODUCTS */
/* ===================================== */

.hero-products-v3{
    position:relative;
    z-index:2;
    margin-top:70px;
}

.hero-product-card-v3{
    display:block;
    overflow:hidden;
    border-radius:34px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    text-decoration:none;
    color:#fff;
}

.hero-product-image-v3{
    height:340px;
    background:#fff;
    overflow:hidden;
}

.hero-product-image-v3 img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:transform .5s ease;
}

.hero-product-card-v3:hover img{
    transform:scale(1.08);
}

.hero-product-content-v3{
    padding:24px;
    text-align:left;
}

.hero-product-category-v3{
    color:#93c5fd;
    font-size:.9rem;
    font-weight:700;
    margin-bottom:10px;
}

.hero-product-title-v3{
    font-size:1.2rem;
    font-weight:800;
    margin-bottom:14px;
}

.hero-product-price-v3{
    font-size:1.9rem;
    font-weight:900;
    color:#4ade80;
}

/* ===================================== */
/* STATS */
/* ===================================== */

.hero-stats-v3{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin-top:60px;
}

.hero-stat-v3{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    border-radius:28px;
    padding:24px;
}

.hero-stat-value-v3{
    font-size:2rem;
    font-weight:900;
}

.hero-stat-label-v3{
    margin-top:10px;
    color:#cbd5e1;
}

/* ===================================== */
/* MOBILE */
/* ===================================== */

@media(max-width:992px){

    .hero-search-v3{
        flex-direction:column;
    }

    .hero-search-v3 button{
        width:100%;
    }

    .hero-stats-v3{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:576px){

    .hero-title-v3{
        letter-spacing:-2px;
    }

    .hero-stats-v3{
        grid-template-columns:1fr;
    }

}

/* ===================================== */
/* HERO GRID */
/* ===================================== */

.hero-bottom-grid-v4{
    position:relative;
    z-index:2;
    margin-top:80px;
    display:grid;
    grid-template-columns:40% 60%;
    gap:34px;
    align-items:stretch;
}

/* ===================================== */
/* INSIGHTS PANEL */
/* ===================================== */

.hero-insights-v5{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    border-radius:36px;
    padding:34px;
    height:100%;
}

.hero-insights-header{
    margin-bottom:30px;
}

.hero-insights-title{
    font-size:1.5rem;
    font-weight:900;
    color:#fff;
}

.hero-insights-subtitle{
    color:#94a3b8;
    margin-top:8px;
}

.hero-insights-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.insight-item-v5{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.05);
    border-radius:24px;
    padding:24px;
    transition:.35s ease;
}

.insight-item-v5:hover{
    transform:translateY(-4px);
    background:rgba(255,255,255,.06);
}

.insight-value-v5{
    font-size:1.9rem;
    font-weight:900;
    line-height:1;
    color:#fff;
}

.insight-label-v5{
    margin-top:10px;
    color:#cbd5e1;
    font-size:.92rem;
}

/* ===================================== */
/* FEATURED */
/* ===================================== */

.hero-products-v4{
    min-width:0;
}

.hero-product-card-v4{
    overflow:hidden;
    border-radius:38px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    text-decoration:none;
    display:block;
    transition:.4s ease;
}

.hero-product-card-v4:hover{
    transform:translateY(-6px);
}

.hero-product-image-v4{
    height:540px;
    background:#fff;
    overflow:hidden;
}

.hero-product-image-v4 img{
    width:100%;
    height:100%;
    object-fit:contain;
    transition:transform .7s ease;
}

.hero-product-card-v4:hover img{
    transform:scale(1.05);
}

.hero-product-content-v4{
    padding:32px;
}

.hero-product-title-v4{
    font-size:1.8rem;
    font-weight:900;
    margin-bottom:18px;
    color:#fff;
}

.hero-product-price-v4{
    font-size:2.4rem;
    font-weight:900;
    color:#4ade80;
}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media(max-width:1200px){

    .hero-bottom-grid-v4{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .hero-insights-grid{
        grid-template-columns:1fr 1fr;
    }

    .hero-product-image-v4{
        height:380px;
    }

}

@media(max-width:576px){

    .hero-insights-grid{
        grid-template-columns:1fr;
    }

}

.market-price-row{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
}

.market-price-row span{
    color:#9ca3af;
    font-size:1.2rem;
}

/* ===================================== */
/* MOBILE CATEGORY SLIDER                */
/* ===================================== */

.mobile-category-slider {
    display: none;
}

.mobileCategorySwiper .swiper-slide {
    width: auto;
}

.mobile-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #111827;
    padding: 6px 4px;
}

.mobile-cat-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform .25s ease, box-shadow .25s ease;
}

.mobile-cat-item:hover .mobile-cat-icon {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(15,23,42,.12);
}

.mobile-cat-name {
    font-size: .8rem;
    font-weight: 700;
    text-align: center;
    color: #374151;
    white-space: nowrap;
}

/* Show mobile slider, hide desktop grid on small screens */

@media (max-width: 991px) {

    .desktop-categories {
        display: none;
    }

    .mobile-category-slider {
        display: block;
    }

}

/* ===================================== */
/* HERO FEATURED SWIPER FIX              */
/* ===================================== */

.hero-products-v4 {
    min-width: 0;
    width: 100%;
}

.heroProductsSwiper {
    width: 100%;
    overflow: hidden;
    border-radius: 38px;
}

.heroProductsSwiper .swiper-wrapper {
    align-items: stretch;
}

.heroProductsSwiper .swiper-slide {
    height: auto;
}

.hero-product-card-v4 {
    position: relative;
    overflow: hidden;
    border-radius: 38px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(20px);
    text-decoration: none;
    display: block;
    height: 100%;
    color: #fff;
}

.hero-product-image-v4 {
    position: relative;
    height: 540px;
    background: #fff;
    overflow: hidden;
}

.hero-product-image-v4::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,.78),
        rgba(0,0,0,.08) 58%,
        transparent
    );
    pointer-events: none;
}

.hero-product-image-v4 img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .7s ease;
}

.hero-product-card-v4:hover img {
    transform: scale(1.05);
}

.hero-product-content-v4 {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 32px;
    color: #fff;
}

.hero-product-category-v4 {
    color: #93c5fd;
    font-size: .9rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.hero-product-title-v4 {
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 14px;
    color: #fff;
}

.hero-product-price-v4 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #4ade80;
}

@media (max-width: 768px) {
    .hero-product-image-v4 {
        height: 380px;
    }

    .hero-product-content-v4 {
        padding: 24px;
    }

    .hero-product-title-v4 {
        font-size: 1.2rem;
    }

    .hero-product-price-v4 {
        font-size: 1.7rem;
    }
}

.hero-empty-featured {
    min-height: 540px;
    border-radius: 38px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
    color: #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px;
}

.hero-empty-featured i {
    font-size: 3rem;
    color: #60a5fa;
    margin-bottom: 16px;
}

.hero-empty-featured h3 {
    color: #fff;
    font-weight: 900;
}