:root{
    --bg: #f8f8fc;
    --white: #ffffff;
    --text: #17171c;
    --muted: #7a7a8c;
    --heading: #181a39;
    --primary: #5b4df7;
    --primary-soft: #f2efff;
    --border: #ececf4;
    --shadow: 0 14px 35px rgba(30, 30, 55, 0.06);
}

*{
    box-sizing: border-box;
}

body.marketplace-body{
    margin: 0;
    font-family: Inter, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

img{
    max-width: 100%;
    display: block;
}

a{
    text-decoration: none;
}

.container-box{
    width: min(1320px, calc(100% - 70px));
    margin: 0 auto;
}

.marketplace-header{
    background: rgba(255,255,255,0.95);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(8px);
}

.header-inner{
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.top-banner-area{
    width: 100%;
}

.top-banner-grid{
    display: grid;
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 18px;
    align-items: stretch;
}

.main-banner-col{
    min-width: 0;
}

.banner-swiper{
    width: 100%;
}

.banner-slide-link{
    display: block;
    text-decoration: none;
}

.banner-slide-inner{
    position: relative;
    width: 100%;
    height: clamp(180px, 24vw, 290px);
    border-radius: 18px;
    overflow: hidden;
    background: #f3f4f6;
}

.banner-slide-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-swiper .swiper-pagination{
    bottom: 12px !important;
}

.banner-swiper .swiper-pagination-bullet{
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.7);
    opacity: 1;
}

.banner-swiper .swiper-pagination-bullet-active{
    background: #ffffff;
}

.promo-banner-col{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.promo-side-card{
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    min-height: calc((clamp(180px, 24vw, 290px) - 18px) / 2);
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    border: 1px solid #ececf4;
}

.promo-side-card img{
    position: absolute;
    right: 14px;
    bottom: 12px;
    width: 62px;
    height: 62px;
    object-fit: contain;
}

.promo-side-card-pink{
    background: linear-gradient(180deg, #ffeef8 0%, #fff8fb 100%);
}

.promo-side-card-cream{
    background: linear-gradient(180deg, #fff8ee 0%, #fffdf8 100%);
}

.promo-side-content{
    position: relative;
    z-index: 2;
    max-width: 150px;
}

.promo-side-label{
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    color: #cc4c91;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.promo-side-label-yellow{
    color: #d39a00;
}

.promo-side-card h3{
    margin: 0 0 10px;
    font-size: 28px;
    line-height: 1.05;
    font-weight: 800;
    color: #1b1d36;
}

.promo-side-link{
    font-size: 14px;
    font-weight: 700;
    color: #ba4485;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.promo-side-link-yellow{
    color: #a87b00;
}
@media (max-width: 991px){
    .top-banner-grid{
        grid-template-columns: 1fr;
    }

    .promo-banner-col{
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .banner-slide-inner{
        height: 220px;
    }

    .promo-side-card{
        min-height: 150px;
    }
}

@media (max-width: 767px){
    .promo-banner-col{
        grid-template-columns: 1fr;
    }

    .banner-slide-inner{
        height: 180px;
        border-radius: 14px;
    }

    .promo-side-card{
        min-height: 140px;
        border-radius: 14px;
        padding: 18px 16px;
    }

    .promo-side-card h3{
        font-size: 22px;
    }

    .promo-side-card img{
        width: 52px;
        height: 52px;
    }
}

.brand-link{
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-badge{
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: linear-gradient(135deg, #6658ff, #5244f5);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.brand-text{
    color: #5c57d7;
    font-weight: 800;
    font-size: 28px;
    letter-spacing: -0.5px;
}

.header-search{
    flex: 1;
    max-width: 560px;
}

.search-box-link{
    display: block;
}

.search-box{
    position: relative;
}

.search-box i{
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #a1a1b5;
    font-size: 15px;
}

.search-box input{
    width: 100%;
    height: 48px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #f7f7fb;
    padding: 0 18px 0 44px;
    color: var(--text);
    outline: none;
}

.header-actions{
    display: flex;
    align-items: center;
    gap: 12px;
}

.seller-portal-link{
    color: #444458;
    font-size: 14px;
    font-weight: 600;
}

.header-icon-btn{
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border);
    color: #25253a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: 0.2s ease;
}

.header-icon-btn:hover{
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.icon-count{
    position: absolute;
    top: -2px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    font-size: 11px;
    line-height: 18px;
    text-align: center;
    font-weight: 700;
    padding: 0 4px;
}

.profile-link img{
    width: 40px;
    height: 40px;
    border-radius: 999px;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.mobile-search-wrap{
    display: none;
    padding-bottom: 16px;
}
.card{
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
}

.hero-grid{
    display: grid;
    grid-template-columns: 260px minmax(0,1fr) 280px;
    gap: 22px;
    align-items: stretch;
}
.stacked-header-banners{
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stacked-banner-item{
    display: block;
    width: 100%;
    height: clamp(130px, 16vw, 170px);
    border-radius: 14px;
    overflow: hidden;
    background: #f3f4f6;
}

.stacked-banner-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.35s ease;
}

.stacked-banner-item:hover img{
    transform: scale(1.02);
}

@media (max-width: 767px){
    .stacked-header-banners{
        gap: 10px;
    }

    .stacked-banner-item{
        height: 120px;
        border-radius: 12px;
    }
}
.category-slider-section{
    margin-top: 24px;
}
.category-swiper{
    width: 100%;
    overflow: hidden;
    padding: 6px 2px;
}

.category-swiper .swiper-wrapper{
    align-items: stretch;
}

.category-swiper .swiper-slide{
    height: auto;
    display: flex;
}

.category-slide-card{
    width: 100%;
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    background: #fff;
    border: 1px solid #ececf4;
    border-radius: 18px;
    padding: 14px 10px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(24, 24, 35, 0.04);
    transition: all 0.25s ease;
}

.category-slide-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(24, 24, 35, 0.08);
    border-color: #dcdff5;
}

.category-slide-image-wrap{
    width:100%;
    height: 120px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    margin-bottom: 12px;
}

.category-slide-image-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 4px;
    display: block;
}

.category-slide-image-wrap i{
    font-size: 30px;
    color: #5b6cff;
}

.category-slide-title{
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    line-height: 1.35;
    text-align: center;
    text-transform: capitalize;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.categories-card{
    padding: 24px;
}

/** categories menu css **/
.category-menu-bar{
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.category-menu-scroll{
    display: flex;
    align-items: center;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 14px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-menu-scroll::-webkit-scrollbar{
    display: none;
}

.category-menu-item{
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border);
    color: #2a2a38;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.category-menu-item:hover{
    color: var(--primary);
    border-color: #dcd8ff;
    background: #f7f5ff;
}

.category-menu-icon{
    width: 30px;
    height: 30px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f5f4ff;
    color: var(--primary);
    font-size: 13px;
}

.hero-grid.hero-grid-no-sidebar{
    display: grid;
    grid-template-columns: minmax(0,1fr) 280px;
    gap: 22px;
    align-items: stretch;
    margin-top: 24px;
}

.card-title-row h3{
    margin: 0 0 16px;
    color: var(--heading);
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-list{
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.category-item{
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: #2a2a38;
    font-size: 15px;
    font-weight: 500;
}

.category-item:hover{
    color: var(--primary);
}

.category-icon{
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8f8fd;
    border: 1px solid var(--border);
    color: var(--primary);
    font-size: 13px;
}

.ghost-pill-btn{
    margin-top: 22px;
    width: 100%;
    height: 46px;
    border-radius: 999px;
    background: #f3efff;
    color: #6958ff;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-card{
    padding: 28px;
    background:
        radial-gradient(circle at top center, rgba(255,214,122,0.22), transparent 28%),
        radial-gradient(circle at 85% 18%, rgba(255,0,136,0.12), transparent 16%),
        linear-gradient(135deg, #f4f2ff 0%, #fffaf2 100%);
    overflow: hidden;
}

.hero-content{
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
    align-items: center;
    min-height: 320px;
}

.hero-chip{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.8);
    color: #625ad4;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 18px;
}

.hero-copy h1{
    margin: 0;
    font-size: 68px;
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: -2px;
    color: #181a49;
}

.hero-copy h1 span{
    display: block;
    color: #8d3dff;
}

.hero-copy p{
    margin: 18px 0 24px;
    max-width: 480px;
    color: #5d6074;
    font-size: 18px;
    line-height: 1.65;
}

.primary-btn{
    height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    background: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(91,77,247,.22);
}

.hero-visual{
    position: relative;
    max-width: 320px;
    margin-inline: auto;
}

.hero-image-frame{
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(38, 38, 60, 0.12);
}

.hero-image-frame img{
    width: 100%;
    height: 100%;
    min-height: 290px;
    object-fit: cover;
}

.shape-dot{
    position: absolute;
    top: -12px;
    right: -8px;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: #ff2fa3;
    box-shadow: 0 10px 20px rgba(255,47,163,.25);
}

.shape-card{
    position: absolute;
    left: -14px;
    bottom: -14px;
    width: 84px;
    height: 84px;
    border-radius: 20px;
    background: #62ff8b;
    transform: rotate(-16deg);
    box-shadow: 0 10px 20px rgba(0,0,0,.08);
}

.side-promos{
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.promo-card{
    min-height: 172px;
    padding: 26px;
    position: relative;
    overflow: hidden;
}

.promo-pink{
    background: linear-gradient(180deg, #ffeef8 0%, #fff7fb 100%);
}

.promo-cream{
    background: linear-gradient(180deg, #fffaf1 0%, #fffef7 100%);
}

.promo-label{
    color: #cf4a94;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .05em;
}

.promo-yellow{
    color: #dba500;
}

.promo-card h4{
    margin: 12px 0 10px;
    color: var(--heading);
    font-size: 40px;
    line-height: 1.02;
    font-weight: 900;
    max-width: 180px;
}

.promo-link{
    color: #bf478d;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.promo-link-yellow{
    color: #af8500;
}

.promo-card img{
    position: absolute;
    right: 22px;
    bottom: 20px;
    width: 76px;
    height: 76px;
    object-fit: contain;
}

.homepage-section{
    margin-top: 48px;
}

.section-muted{
    padding: 42px 0 10px;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: max(calc((100vw - 1320px)/2), 16px);
    padding-right: max(calc((100vw - 1320px)/2), 16px);
    background: #f3f3f8;
}

.section-head{
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.section-head h2{
    margin: 0 0 6px;
    color: var(--heading);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -1px;
}

.section-head p{
    margin: 0;
    color: var(--muted);
    font-size: 16px;
}

.section-link{
    color: #6d5dfc;
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
}

.product-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 22px;
}

.product-card{
    //padding: 4px;
}

.product-thumb{
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fafafa;
    height: 350px;
}
.product-thumb {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 350px;
    padding: 1px;
    overflow: hidden;
    border-radius: 16px;
    background: #f8fafc;
    isolation: isolate;
}

.product-thumb-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.12);
    filter: blur(18px);
    opacity: 0.45;
    z-index: 0;
}

.product-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    
    z-index: 1;
}

.product-thumb-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-thumb-bg {
    filter: blur(16px);
    opacity: 0.32;
}
.product-thumb-bg {
    filter: blur(22px);
    opacity: 0.5;
    transform: scale(1.18);
}
.product-thumb img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.discount-badge{
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ff5b61;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 999px;
}

.wishlist-btn{
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 0;
    background: rgba(255,255,255,0.95);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #707080;
}

.product-meta{
    margin-top: 14px;
    color: #6f7386;
    font-size: 13px;
}

.product-title{
    margin: 8px 0 0;
    color: #1b1c2d;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
    min-height: 20px;
    text-transform: capitalize;
}

.product-bottom{
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.price-wrap{
    display: flex;
    align-items: end;
    flex-wrap: wrap;
    gap: 6px;
}

.price{
    color: #18181e;
    font-size: 15px;
    font-weight: 600;
}

.old-price{
    color: #9ca3af;
    font-size: 14px;
    text-decoration: line-through;
}

.mini-action-btn{
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: #fafafe;
    color: #CE3B13;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.artboard-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 24px;
}

.artboard-card{
    position: relative;
    height: 320px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.artboard-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artboard-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.62) 100%);
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: #fff;
}

.artboard-label{
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    opacity: .95;
}

.artboard-overlay h3{
    margin: 10px 0 8px;
    font-size: 24px;
    font-weight: 800;
}

.artboard-overlay p{
    margin: 0;
    font-size: 15px;
    opacity: .92;
}

.artboard-arrow{
    margin-top: 18px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: #13131b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.seller-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0,1fr));
    gap: 22px;
}

.seller-card{
    padding: 24px 16px;
    text-align: center;
}

.seller-avatar{
    width: 84px;
    height: 84px;
    border-radius: 999px;
    object-fit: cover;
    margin: 0 auto 14px;
    border: 4px solid #fff;
    box-shadow: 0 12px 22px rgba(0,0,0,.08);
}

.seller-card h3{
    margin: 0;
    color: #181a2f;
    font-size: 22px;
    font-weight: 800;
}

.seller-card p{
    margin: 8px 0 16px;
    color: #6e7286;
    font-size: 14px;
}

.seller-btn{
    width: 100%;
    height: 44px;
    border-radius: 999px;
    background: #f8f8fd;
    color: #191b2d;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.newsletter-card{
    border-radius: 32px;
    padding: 40px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        linear-gradient(90deg, #f6ae2d, #7b4dff, #ff2f8f) border-box;
    border: 3px solid transparent;
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 24px;
    align-items: center;
    box-shadow: 0 20px 40px rgba(30,30,55,.08);
}

.newsletter-chip{
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: #f6f6fb;
    color: #6567d9;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 14px;
}

.newsletter-card h2{
    margin: 0;
    color: #121422;
    font-size: 56px;
    line-height: 1.02;
    font-weight: 900;
    max-width: 650px;
}

.newsletter-card p{
    margin: 18px 0 24px;
    color: #666b80;
    font-size: 18px;
    line-height: 1.7;
    max-width: 640px;
}

.newsletter-form{
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.newsletter-form input{
    flex: 1;
    min-width: 260px;
    height: 54px;
    border-radius: 999px;
    border: 1px solid var(--border);
    padding: 0 18px;
    outline: none;
    font-size: 15px;
}

.newsletter-form button{
    height: 54px;
    border-radius: 999px;
    border: 0;
    padding: 0 26px;
    background: #161a2d;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.newsletter-right img{
    width: 100%;
    max-width: 360px;
    margin-left: auto;
    border-radius: 28px;
}

.marketplace-footer{
    background: #f0f0f6;
    border-top: 1px solid var(--border);
    padding: 46px 0;
}

.footer-grid{
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 28px;
}

.footer-brand p{
    color: #72778a;
    line-height: 1.7;
    margin-top: 16px;
    max-width: 320px;
}

.footer-col h4{
    margin: 0 0 16px;
    color: #17192e;
    font-size: 18px;
    font-weight: 800;
}

.footer-col a{
    display: block;
    margin-bottom: 10px;
    color: #74798d;
    font-size: 15px;
}

.footer-col a:hover{
    color: var(--primary);
}

@media (max-width: 1199px){
    .hero-grid.hero-grid-no-sidebar{
        grid-template-columns: 1fr;
    }

    .side-promos{
        display: grid;
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .product-grid,
    .seller-grid{
        grid-template-columns: repeat(2, minmax(0,1fr));
    }

    .newsletter-card{
        grid-template-columns: 1fr;
    }

    .footer-grid{
        grid-template-columns: repeat(2, minmax(0,1fr));
    }
}

@media (max-width: 991px){
    .desktop-search,
    .seller-portal-link{
        display: none;
    }

    .mobile-search-wrap{
        display: block;
    }

    .hero-grid{
        grid-template-columns: 1fr;
    }

    .hero-content{
        grid-template-columns: 1fr;
    }

    .hero-copy h1{
        font-size: 48px;
    }

    .section-head{
        align-items: flex-start;
        flex-direction: column;
    }

    .artboard-grid{
        grid-template-columns: 1fr;
    }

    .newsletter-card h2{
        font-size: 40px;
    }
}
.category-menu-scroll.dragging{
    cursor: grabbing;
}
.category-navbar{
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.category-navbar-inner{
    display: flex;
    align-items: center;
    min-height: 54px;
    position: relative;
}

.category-navbar-menu{
    display: flex;
    align-items: center;
    gap: 28px;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-navbar-menu::-webkit-scrollbar{
    display: none;
}

.category-nav-link{
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 54px;
    white-space: nowrap;
    color: #2f3347;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.category-nav-link:hover{
    color: var(--primary);
}

.category-nav-link::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.2s ease;
}

.category-nav-link:hover::after{
    width: 100%;
}

.category-mobile-toggle{
    display: none;
    align-items: center;
    gap: 10px;
    height: 44px;
    border: 0;
    background: transparent;
    color: #23263a;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
}

/* Desktop */
@media (min-width: 992px){
    .category-mobile-toggle{
        display: none;
    }

    .category-navbar-menu{
        display: flex !important;
        flex-direction: row;
        align-items: center;
        gap: 28px;
        padding: 0;
    }
}

/* Mobile / Tablet */
@media (max-width: 991px){
    .category-navbar-inner{
        min-height: auto;
        padding: 10px 0;
        flex-direction: column;
        align-items: stretch;
    }

    .category-mobile-toggle{
        display: inline-flex;
    }

    .category-navbar-menu{
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        padding-top: 10px;
        overflow: visible;
    }

    .category-navbar-menu.show{
        display: flex;
    }

    .category-nav-link{
        width: 100%;
        height: auto;
        padding: 12px 0;
        border-top: 1px solid var(--border);
    }

    .category-nav-link::after{
        display: none;
    }
}
@media (max-width: 767px){
    .container-box{
        width: min(100% - 24px, 1320px);
    }
      .category-menu-scroll{
        padding: 10px 0;
        gap: 10px;
    }

    .category-menu-item{
        padding: 9px 14px;
        font-size: 13px;
    }

    .category-menu-icon{
        width: 28px;
        height: 28px;
        font-size: 12px;
    }

    .hero-grid.hero-grid-no-sidebar{
        grid-template-columns: 1fr;
        margin-top: 18px;
    }

    .side-promos{
        grid-template-columns: 1fr;
    }

    .header-inner{
        min-height: 68px;
        gap: 12px;
    }

    .brand-text{
        font-size: 22px;
    }

    .hero-card,
    .categories-card,
    .promo-card,
    .product-card,
    .seller-card{
        border-radius: 20px;
    }

    .hero-copy h1{
        font-size: 38px;
        letter-spacing: -1px;
    }

    .hero-copy p{
        font-size: 16px;
    }

    .promo-card h4{
        font-size: 30px;
    }

    .product-grid,
    .seller-grid{
        grid-template-columns: 1fr;
    }

    .section-head h2{
        font-size: 30px;
    }

    .newsletter-card{
        padding: 24px;
        border-radius: 24px;
    }

    .newsletter-card h2{
        font-size: 32px;
    }

    .newsletter-card p{
        font-size: 16px;
    }

    .footer-grid{
        grid-template-columns: 1fr;
    }

    .side-promos{
        grid-template-columns: 1fr;
    }
}
.marketplace-header{
    background: #fff;
    border-bottom: 1px solid #ececf3;
}

.header-inner{
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand-wrap{
    flex-shrink: 0;
}

.brand-link{
    text-decoration: none;
}

.brand-text{
    font-size: 22px;
    font-weight: 800;
    color: #CE3B13;
    letter-spacing: -0.3px;
}

.header-search{
    flex: 1 1 auto;
    max-width: 620px;
}

.search-box-link{
    text-decoration: none;
    display: block;
}

.search-box{
    height: 52px;
    border-radius: 28px;
    background: #f6f5fb;
    border: 1px solid #eceaf5;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
}

.search-box i{
    color: #8a90a6;
    font-size: 18px;
}

.search-box input{
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    color: #555b72;
    font-size: 15px;
    cursor: pointer;
}

.header-actions{
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-location-pill{
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border: 1px solid #ececf4;
    background: #fff;
    border-radius: 14px;
    cursor: pointer;
    min-width: 185px;
    max-width: 230px;
    transition: all 0.2s ease;
}

.header-location-pill:hover{
    border-color: #dcdff1;
    box-shadow: 0 6px 16px rgba(20, 20, 43, 0.05);
}

.header-location-icon{
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f3f5ff;
    color: #CE3B13;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-location-content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
}

.header-location-content small{
    font-size: 10px;
    line-height: 1.1;
    color: #8a90a6;
    margin-bottom: 2px;
}

#locationBarSubtitle{
    font-size: 13px;
    font-weight: 600;
    color: #1c2235;
    max-width: 155px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.seller-portal-link{
    font-size: 14px;
    font-weight: 600;
    color: #20253a;
    text-decoration: none;
}

.header-icon-btn{
    width: 44px;
    height: 44px;
    border: 1px solid #ececf4;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #20253a;
    text-decoration: none;
    background: #fff;
}

.header-icon-btn i{
    font-size: 18px;
}

.icon-count{
    position: absolute;
    top: -4px;
    right: -2px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    border-radius: 999px;
    background: #CE3B13;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-link{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ececf4;
    text-decoration: none;
    background: #fff;
}

.profile-link img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mobile-search-wrap{
    display: none;
    padding-bottom: 12px;
}

.category-navbar{
    background: #fff;
    border-bottom: 1px solid #ececf3;
}

.category-navbar-inner{
    display: flex;
    align-items: center;
    min-height: 56px;
}

.category-mobile-toggle{
    display: none;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 0;
    font-weight: 600;
    color: #1c2235;
}

.category-navbar-menu{
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.category-nav-link{
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #20253a;
    padding: 14px 0;
    transition: color 0.2s ease;
}

.category-nav-link:hover{
    color: #5b4df7;
}

@media (max-width: 991px){
    .header-inner{
        min-height: 74px;
    }

    .desktop-search{
        display: none;
    }

    .mobile-search-wrap{
        display: block;
    }

    .header-location-pill{
        min-width: auto;
        max-width: 44px;
        padding: 8px;
        justify-content: center;
    }

    .header-location-content{
        display: none;
    }

    .seller-portal-link{
        display: none;
    }

    .category-mobile-toggle{
        display: inline-flex;
    }

    .category-navbar-menu{
        overflow-x: auto;
        white-space: nowrap;
        flex-wrap: nowrap;
        gap: 18px;
        scrollbar-width: none;
    }

    .category-navbar-menu::-webkit-scrollbar{
        display: none;
    }
}

@media (max-width: 767px){
    .brand-text{
        font-size: 20px;
    }

    .header-actions{
        gap: 8px;
    }

    .header-icon-btn,
    .profile-link{
        width: 40px;
        height: 40px;
    }

    .search-box{
        height: 48px;
    }

    .category-nav-link{
        font-size: 14px;
        padding: 12px 0;
    }
}
.section-head{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.designer-heading{
    position: relative;
    display: inline-block;
    text-align: center;
    padding: 22px 34px 18px;
   border: 1px solid #d8c7a3;
    outline: 1px solid #f1e7d2;
    outline-offset: -8px;
    background: linear-gradient(180deg, #fffdf9, #f8f4ec);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
}

.designer-heading::before,
.designer-heading::after{
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    border: 2px solid #c8a96b;
    pointer-events: none;
}

.designer-heading::before{
    top: 10px;
    left: 10px;
    border-right: 0;
    border-bottom: 0;
    border-top-left-radius: 18px;
}

.designer-heading::after{
    right: 10px;
    bottom: 10px;
    border-left: 0;
    border-top: 0;
    border-bottom-right-radius: 18px;
}

.designer-heading-badge{
    display: inline-block;
    margin-bottom: 10px;
    padding: 6px 14px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8b6b3f;
    background: #f8f2e8;
    border: 1px solid #eadcc7;
    border-radius: 999px;
    font-weight: 600;
}

.designer-heading h2{
    margin: 0;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    color: #1b1b1b;
    max-width: 700px;
    padding: 0 18px;
    font-family: "Lato", serif;
}
.heading-style-two{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.heading-style-two::before,
.heading-style-two::after{
    content: "";
    width: 250px;
    height: 1px;
    background: #c8b08a;
}

.heading-style-two h2{
    margin: 0;
    font-size: 25px;
    font-weight: 700;
    color: #111827;
    font-family: "Lato", serif;
    text-align: center;
}


.heading-style-five{
    text-align: center;
}

.heading-style-five span{
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8b7355;
    margin-bottom: 8px;
}

.heading-style-five h2{
    position: relative;
    display: inline-block;
    margin: 0;
    font-size: 22px;
    color: #111;
    font-family: "Lato", serif;
    padding-bottom: 12px;
}

.heading-style-five h2::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 90px;
    height: 2px;
    background: #c8a96b;
    border-radius: 999px;
}
.heading-style-four{
    position: relative;
    display: inline-block;
    padding: 28px 42px;
    background: #fff;
    text-align: left;
}

.heading-style-four::before,
.heading-style-four::after{
    content: "";
    position: absolute;
    width: 34px;
    height: 34px;
    border-color: #caa56a;
    border-style: solid;
    pointer-events: none;
}

.heading-style-four::before{
    top: -4px;
    left: -4px;
    border-width: 2px 0 0 2px;
}

.heading-style-four::after{
    right: -4px;
    bottom: -4px;
    border-width: 0 2px 2px 0;
}

.heading-style-four span{
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    color: #8b7355;
    font-weight: 500;
}

.heading-style-four h2{
    margin: 0;
    font-size: 30px;
    font-family: "Lato", serif;
    color: #151515;
    line-height: 1.2;
}

.heading-style-three{
    display: inline-block;
    padding: 18px 28px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    text-align: center;
}

.heading-style-three .sub{
    display: inline-block;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.heading-style-three h2{
    margin: 0;
    font-size: 28px;
    color: #111827;
    font-weight: 700;
}
.single-line-heading{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    text-align: left;
    padding: 16px 0;
    flex-wrap: nowrap;
}

.single-line-heading span{
    margin: 0;
    font-size: 14px;
    color: #8b7355;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.single-line-heading h2{
    margin: 0;
    font-size: 25px;
    color: #111;
    font-family: "Lato", serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.heading-style-luxury{
    position: relative;
    display: inline-block;
    padding: 24px 34px;
    background: #fffdfb;
    border: 1px solid #d9c7b2;
    text-align: left;
    min-width: 420px;
}

.heading-style-luxury::before{
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px solid #efe2d3;
    pointer-events: none;
}

.heading-style-luxury span{
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #9a7a57;
    position: relative;
    z-index: 1;
}

.heading-style-luxury h2{
    margin: 0;
    font-size: 30px;
    line-height: 1.2;
    color: #161616;
    font-family: "Playfair Display", serif;
    position: relative;
    z-index: 1;
}
.heading-style-editorial{
    position: relative;
    display: inline-block;
    padding: 10px 0 10px 22px;
    border-left: 3px solid #c9a46b;
    text-align: left;
}

.heading-style-editorial::before{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 85%;
    height: 1px;
    background: #ead8c0;
}

.heading-style-editorial span{
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #8c7250;
}

.heading-style-editorial h2{
    margin: 0;
    font-size: 25px;
    font-family: "Lato", serif;
    color: #111;
}
.heading-style-ornamental{
    position: relative;
    display: inline-block;
    padding: 28px 38px;
    background: #fff;
    text-align: left;
}

.heading-style-ornamental::before,
.heading-style-ornamental::after{
    content: "";
    position: absolute;
    width: 42px;
    height: 42px;
    pointer-events: none;
}

.heading-style-ornamental::before{
    top: 0;
    left: 0;
    border-top: 2px solid #c9a46b;
    border-left: 2px solid #c9a46b;
}

.heading-style-ornamental::after{
    right: 0;
    bottom: 0;
    border-right: 2px solid #c9a46b;
    border-bottom: 2px solid #c9a46b;
}

.heading-style-ornamental span{
    display: block;
    margin-bottom: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #8e7353;
}

.heading-style-ornamental h2{
    margin: 0;
    font-size: 30px;
    line-height: 1.2;
    color: #151515;
    font-family: "Playfair Display", serif;
}
.ornate-heading{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    width: 100%;
    margin: 20px 0 28px;
}

.ornate-line{
    flex: 1;
    height: 1px;
    background: #111;
    position: relative;
    max-width: 240px;
}

.ornate-line::before{
    content: "";
    position: absolute;
    top: 50%;
    width: 10px;
    height: 10px;
    background: #111;
    transform: translateY(-50%) rotate(45deg);
}

.ornate-heading .ornate-line:first-child::before{
    left: 0;
}

.ornate-heading .ornate-line:last-child::before{
    right: 0;
}

.ornate-center{
    text-align: center;
    position: relative;
    min-width: max-content;
    padding: 0 12px;
}

.ornate-top{
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6b7280;
}

.ornate-center h2{
    margin: 0;
    font-size: 25px;
    line-height: 1.2;
    color: #111;
    font-family: "Lato", serif;
}

.ornate-symbol{
    margin-top: 8px;
    font-size: 22px;
    color: #111;
    letter-spacing: 6px;
    line-height: 1;
}
/* Global mobile heading tweaks */
@media (max-width: 768px){

  /* Make blocks full width instead of inline */
   .mobiles-head{
        flex-direction: column;
        align-items: flex-start;
    }
    .flash-left{
        flex-direction: column;
        align-items: flex-start;
    }
    .new-head{
        align-items: flex-start;
        gap: 12px;
        padding: 14px 0 12px;
    }

    .new-left h2{
        font-size: 20px;
    }

    .new-left p{
        font-size: 12px;
    }

    .new-prev,
    .new-next{
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    .mobiles-head-content h2{
        font-size: 20px;
    }

    .mobiles-nav{
        margin-top: 8px;
    }

    .mobile-card-media{
        height: 128px;
    }

    .mobiles-prev,
    .mobiles-next{
        width: 30px;
        height: 30px;
    }
  .designer-heading,
  .heading-style-two,
  .heading-style-three,
  .heading-style-four,
  .heading-style-luxury,
  .heading-style-editorial,
  .heading-style-ornamental,
  .ornate-heading {
      display: block;
      width: 100%;
      max-width: 100%;
      text-align: left;
      padding-left: 16px;
      padding-right: 16px;
      box-sizing: border-box;
  }

  /* Remove min-width that forces overflow */
  .heading-style-luxury{
      min-width: 0;
      padding: 18px 16px;
  }

  /* Reduce font sizes */
  .designer-heading h2,
  .heading-style-two h2,
  .heading-style-three h2,
  .heading-style-four h2,
  .heading-style-five h2,
  .heading-style-luxury h2,
  .heading-style-editorial h2,
  .heading-style-ornamental h2,
  .ornate-center h2,
  .single-line-heading h2{
      font-size: 18px;
  }

  /* Allow wrapping, remove ellipsis for mobile */
  .single-line-heading{
      flex-wrap: wrap;
      gap: 6px;
      padding: 8px 0;
  }
  .single-line-heading h2{
      white-space: normal;
      overflow: visible;
      text-overflow: clip;
  }

  /* Ornate divider: shorten lines so they fit */
  .ornate-heading{
      gap: 10px;
      margin: 16px 0 20px;
  }
  .ornate-line{
      max-width: 70px;
  }

  /* Corner / frame decorations: shrink so they don't clash */
  .designer-heading::before,
  .designer-heading::after,
  .heading-style-ornamental::before,
  .heading-style-ornamental::after{
      width: 28px;
      height: 28px;
  }

  .heading-style-editorial{
      padding-left: 14px;
  }
  .heading-style-editorial::before{
      width: 65%;
  }
}
.tools-section{
    background: linear-gradient(180deg, #fcfcfc, #f5f5f5);
    border: 1px solid #ececec;
    border-radius: 22px;
    padding: 22px 16px;
}

.tools-section-head{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.tools-head-left{
    text-align: left;
}

.tools-kicker{
    display: inline-block;
    margin-bottom: 6px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6b7280;
    font-weight: 600;
}

.tools-head-left h2{
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    color: #111827;
    font-weight: 700;
    font-family: "Lato", sans-serif;
}

.tools-nav{
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.tools-prev,
.tools-next{
    width: 34px;
    height: 34px;
    border: 1px solid #d9d9d9;
    border-radius: 999px;
    background: #fff;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.tools-prev:hover,
.tools-next:hover{
    background: #111827;
    color: #fff;
    border-color: #111827;
}

.tool-card{
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e7e7e7;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.tool-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0,0,0,0.08);
    border-color: #d1d5db;
}

.tool-card-media{
    height: 130px;
    background: linear-gradient(180deg, #f8fafc, #eef2f7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    border-bottom: 1px solid #eceff3;
}

.tool-card-media img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tool-card-media i{
    font-size: 28px;
    color: #374151;
}

.tool-card-content{
    padding: 14px 14px 16px;
    text-align: left;
}

.tool-card-title{
    font-size: 15px;
    line-height: 1.35;
    color: #111827;
    font-weight: 600;
    min-height: 40px;
    margin-bottom: 10px;
}

.tool-card-link{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}
.category-fallback-icon{
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #374151;
}

.category-fallback-icon svg{
    width: 100%;
    height: 100%;
}
.mobiles-section{
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 20px 16px;
}

.mobiles-head{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.mobiles-head-content{
    text-align: left;
}

.mobiles-kicker{
    display: inline-block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 700;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

.mobiles-head-content h2{
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    color: #0f172a;
    font-weight: 700;
    font-family: "Lato", sans-serif;
}

.mobiles-nav{
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.mobiles-prev,
.mobiles-next{
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 1px solid #dbe2ea;
    background: #ffffff;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.05);
    transition: all 0.25s ease;
}

.mobiles-prev:hover,
.mobiles-next:hover{
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

.mobile-card{
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e6ebf2;
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.mobile-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(15, 23, 42, 0.10);
    border-color: #cfd8e3;
}

.mobile-card-media{
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    position: relative;
}

.mobile-card-media::after{
    content: "";
    position: absolute;
    inset: auto 12px 10px;
    height: 1px;
    background: rgba(255,255,255,0.12);
}

.mobile-card-media img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.mobile-card-media i{
    font-size: 30px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.mobile-fallback-icon{
    width: 52px;
    height: 52px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.mobile-fallback-icon svg{
    width: 100%;
    height: 100%;
}

.mobile-card-body{
    padding: 14px;
    text-align: left;
}

.mobile-card-title{
    font-size: 15px;
    line-height: 1.35;
    color: #0f172a;
    font-weight: 600;
    min-height: 40px;
    text-transform: capitalize;
}

.mobile-card-link{
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    color: #2563eb;
}
.grocery-section{
    background: linear-gradient(180deg, #f7fff8 0%, #eefaf0 100%);
    border: 1px solid #dbeedc;
    border-radius: 24px;
    padding: 20px 16px;
}

.grocery-head{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.grocery-head-left{
    text-align: left;
}

.grocery-kicker{
    display: inline-block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #2f855a;
}

.grocery-head-left h2{
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
    color: #183b2b;
    font-weight: 700;
    font-family: "Lato", sans-serif;
}

.grocery-nav{
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.grocery-prev,
.grocery-next{
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid #cfe5d2;
    background: #ffffff;
    color: #1f5137;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(47, 133, 90, 0.08);
    transition: all 0.25s ease;
}

.grocery-prev:hover,
.grocery-next:hover{
    background: #2f855a;
    color: #ffffff;
    border-color: #2f855a;
}

.grocery-card{
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid #e4f0e5;
    border-radius: 22px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 10px 24px rgba(47, 133, 90, 0.06);
    padding: 14px;
}

.grocery-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(47, 133, 90, 0.10);
    border-color: #cfe5d2;
}

.grocery-card-media{
    height: 130px;
    border-radius: 18px;
    background: radial-gradient(circle at top, #f4fff4 0%, #e6f7e9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    margin-bottom: 12px;
}

.grocery-card-media img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.grocery-card-media i{
    font-size: 30px;
    color: #2f855a;
}

.grocery-fallback-icon{
    width: 52px;
    height: 52px;
    color: #2f855a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.grocery-fallback-icon svg{
    width: 100%;
    height: 100%;
}

.grocery-card-content{
    text-align: left;
}

.grocery-card-title{
    font-size: 15px;
    line-height: 1.35;
    color: #1f2937;
    font-weight: 700;
    min-height: 40px;
    text-transform: capitalize;
}

.grocery-card-tag{
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: #edf8ef;
    color: #2f855a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.flash-head{
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.flash-countdown{
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.flash-countdown .time-box{
    min-width: 58px;
    padding: 8px 10px;
    background: #fff5f5;
    border: 1px solid #ffd4d4;
    border-radius: 12px;
    text-align: center;
}

.flash-countdown .time-box span{
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #d62828;
    line-height: 1;
}

.flash-countdown .time-box small{
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
}

.deal-ended{
    font-size: 14px;
    font-weight: 700;
    color: #d62828;
}

.flash-product-card{
    border: 1px solid #ffe2e2;
}

.flash-product-card .discount-badge{
    background: #e53935;
}
.product-title-clip{
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 20px; /* to keep card heights consistent */
}
.flash-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.flash-nav{
    display: flex;
    align-items: center;
    gap: 8px;
}

.flash-prev,
.flash-next{
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #111827;
    transition: all 0.2s ease;
}

.flash-prev:hover,
.flash-next:hover{
    background: #111827;
    color: #fff;
    border-color: #111827;
}
.flash-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: nowrap; /* keep in one row on large screens */
}

.flash-left{
    display: flex;
    align-items: center;
    gap: 16px;
}

.flash-left h2{
    margin: 0;
    font-size: 22px;
    font-weight: 700;
}

.flash-left p{
    margin: 0;
    font-size: 13px;
    color: #6b7280;
}

.flash-countdown{
    display: flex;
    gap: 8px;
    margin-left: 16px;
}

.flash-right{
    display: flex;
    align-items: center;
    gap: 8px;
}
.new-prev,
.new-next{
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #111827;
    transition: all 0.2s ease;
}
.new-next:hover{
    background: #111827;
    color: #fff;
    border-color: #111827;
}

/* Hover image swap */
.product-thumb-hover{
    position: relative;
    overflow: hidden;
}

.product-thumb-hover img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.3s ease;
    display: block;
}

.product-img-hover{
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.product-thumb-hover:hover .product-img-main{
    opacity: 0;
}

.product-thumb-hover:hover .product-img-hover{
    opacity: 1;
}

/* Title clamp */
.product-title-clip{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 40px;
}
.new-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0 14px;
    border-bottom: 1px solid #eceff3;
    margin-bottom: 14px;
}

.new-left{
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.new-left h2{
    margin: 0;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 700;
    color: #111827;
    letter-spacing: -0.3px;
}

.new-left p{
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #6b7280;
    font-weight: 400;
}

.new-right{
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.new-prev,
.new-next{
    width: 34px;
    height: 34px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #fff;
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(17, 24, 39, 0.05);
}

.new-prev:hover,
.new-next:hover{
    background: #111827;
    color: #fff;
    border-color: #111827;
    transform: translateY(-1px);
}

.new-prev:focus,
.new-next:focus{
    outline: none;
    box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.12);
}
.new-kicker{
    display: inline-block;
    font-size: 11px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    color: #9ca3af;
    font-weight: 700;
    margin-bottom: 2px;
}
.banner-duo-section{
    padding: 18px 0;
}

.banner-duo-head{
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.banner-duo-left h2{
    margin: 0;
    font-size: 24px;
    line-height: 1.15;
    font-weight: 700;
    color: #111827;
}

.banner-duo-left p{
    margin: 6px 0 0;
    font-size: 13px;
    color: #6b7280;
}

.banner-duo-nav{
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.banner-duo-prev,
.banner-duo-next{
    width: 34px;
    height: 34px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #fff;
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.banner-duo-prev:hover,
.banner-duo-next:hover{
    background: #111827;
    color: #fff;
    border-color: #111827;
}

.banner-duo-swiper .swiper-slide{
    height: auto;
}

.banner-duo-card{
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    min-height: 280px;
    text-decoration: none;
    background: #f5f5f5;
}

.banner-duo-card img{
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.banner-duo-card:hover img{
    transform: scale(1.04);
}

.banner-duo-overlay{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    background: linear-gradient(to top, rgba(0,0,0,0.62), rgba(0,0,0,0.1) 50%, rgba(0,0,0,0));
    color: #fff;
}

.banner-tag{
    display: inline-block;
    width: fit-content;
    margin-bottom: 10px;
    padding: 6px 10px;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(6px);
}

.banner-duo-overlay h3{
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    max-width: 280px;
}

.banner-arrow{
    margin-top: 14px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: rgba(255,255,255,0.18);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    font-size: 16px;
}
.new-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 16px;
}
.seller-showcase-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.seller-showcase-head h2{
    margin: 0;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 500;
    color: #111;
}

.seller-showcase-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.seller-showcase-card{
    display: block;
    position: relative;
    padding: 14px;
    border-radius: 28px;
    background: #fff;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    min-height: 290px;
}

.seller-showcase-image-wrap{
    background: #fff;
    border: 2px solid #ececec;
    border-radius: 30px;
    margin-bottom: 18px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}

.seller-showcase-image{
    width: 100%;
    height: 145px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.seller-showcase-body{
    padding: 0 8px 6px;
}

.seller-showcase-body h3{
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.05;
    font-weight: 400;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.seller-showcase-category{
    margin: 0 0 8px;
    font-size: 13px;
    line-height: 1.45;
    color: #111;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.seller-showcase-category span{
    color: #df944a;
}

.seller-showcase-distance{
    margin: 0;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 400;
    color: #df944a;
}

@media (max-width: 991px){
    .seller-showcase-head h2{
        font-size: 28px;
    }

    .seller-showcase-body h3{
        font-size: 28px;
    }

    .seller-showcase-category,
    .seller-showcase-distance{
        font-size: 20px;
    }
}

@media (max-width: 767px){
    .seller-showcase-grid{
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .seller-showcase-head{
        flex-direction: column;
        align-items: flex-start;
    }

    .seller-showcase-head h2{
        font-size: 24px;
    }

    .seller-showcase-body h3{
        font-size: 14px;
    }

    .seller-showcase-category,
    .seller-showcase-distance{
        font-size: 18px;
    }

    .seller-showcase-image{
        height: 120px;
    }
}
.seller-showcase-section{
    padding: 20px 0;
}

.seller-showcase-head{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.seller-showcase-head h2{
    margin: 0;
    font-size: 32px;
    font-weight: 500;
    color: #111;
}

.seller-nav{
    display: flex;
    gap: 8px;
}

.seller-prev,
.seller-next{
    width: 38px;
    height: 38px;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    background: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.seller-showcase-card{
    display: block;
    padding: 1px;
     border-top-right-radius: 22px;
      border-top-left-radius: 22px;
    background: #fff;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    min-height: 260px;
}

.seller-showcase-image-wrap{
    background: #fff;
    border: 2px solid #ececec;
    border-radius: 30px;
    margin-bottom: 18px;
}

.seller-showcase-image{
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-top-right-radius: 22px;
     border-top-left-radius: 22px;
    display: block;
}

.seller-showcase-body h3{
    margin: 0 0 8px;
    font-size:14px;
    line-height: 1.1;
    font-weight: 500;
    color: #111;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.seller-showcase-category{
    margin: 0 0 8px;
    font-size: 13px;
    line-height: 1.4;
    color: #111;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.seller-showcase-category span,
.seller-showcase-distance{
    color: #d8893d;
}

.seller-showcase-distance{
    margin: 0;
    font-size: 18px;
}
@media (min-width: 576px) {
    .new-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .new-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .new-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}
.seller-showcase-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
    padding: 22px 0 18px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.seller-head-copy {
    max-width: 720px;
}

.seller-kicker {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    margin-bottom: 12px;
    border-radius: 999px;
    background: #f4f7fb;
    color: #1e3a5f;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.seller-showcase-head h2 {
    margin: 0 0 8px;
    color: #0f172a;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.seller-showcase-head p {
    margin: 0;
    color: #5b6475;
    font-size: 15px;
    line-height: 1.7;
    max-width: 560px;
}

.seller-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.seller-nav button {
    width: 30px;
    height: 30px;
    line-height:12px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 14px;
    background: #ffffff;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
}

.seller-nav button:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
    transform: translateY(-2px);
}

.seller-nav button:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.10);
}

@media (max-width: 767px) {
    .seller-showcase-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin-bottom: 22px;
        padding-bottom: 16px;
    }

    .seller-showcase-head h2 {
        font-size: 26px;
    }

    .seller-showcase-head p {
        font-size: 14px;
    }

    .seller-nav {
        width: 100%;
        justify-content: flex-start;
    }

    .seller-nav button {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }
}
.usp-section {
    padding: 32px 0;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.usp-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px 18px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.usp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
    border-color: rgba(15, 23, 42, 0.14);
}

.usp-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f4f7fb, #eef3f8);
    color: #0f172a;
    font-size: 22px;
}

.usp-content h3 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
}

.usp-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #5b6475;
}

@media (max-width: 991px) {
    .usp-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .usp-section {
        padding: 22px 0;
    }

    .usp-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .usp-card {
        padding: 18px 16px;
        border-radius: 16px;
    }

    .usp-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        border-radius: 12px;
        font-size: 20px;
    }

    .usp-content h3 {
        font-size: 16px;
    }

    .usp-content p {
        font-size: 13px;
        line-height: 1.6;
    }
}
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.94);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}

.reveal.show,
.reveal-left.show,
.reveal-right.show,
.reveal-scale.show {
    opacity: 1;
    transform: none;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
.testimonial-section {
    padding: 48px 0 0 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.testimonial-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 24px;
}

.testimonial-head-copy h2 {
    margin: 8px 0 8px;
    font-size: 32px;
    line-height: 1.15;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.testimonial-head-copy p {
    margin: 0;
    max-width: 560px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.testimonial-nav button {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(15, 23, 42, 0.10);
    border-radius: 14px;
    background: #fff;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    transition: all 0.25s ease;
}

.testimonial-nav button:hover {
    background: #0f172a;
    color: #fff;
    border-color: #0f172a;
    transform: translateY(-2px);
}

.testimonial-swiper {
    padding: 6px 4px 46px;
}

.testimonial-card {
    width: 100%;
    height: 100%;
    min-height: 240px;
    padding: 22px 18px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 14px 40px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-text {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(15, 23, 42, 0.10);
}

.testimonial-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 18px;
    color: #f59e0b;
    font-size: 15px;
}

.testimonial-text {
    margin: 0 0 26px;
    color: #1e293b;
    font-size: 16px;
    line-height: 1.85;
    font-weight: 400;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 23, 42, 0.07);
}

.testimonial-user-img {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #e2e8f0;
}

.testimonial-user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-user-meta h4 {
    margin: 0 0 4px;
    color: #0f172a;
    font-size: 16px;
    font-weight: 700;
}

.testimonial-user-meta span {
    color: #64748b;
    font-size: 13px;
    display: block;
}

.testimonial-pagination {
    bottom: 0 !important;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: #0f172a;
    width: 24px;
    border-radius: 999px;
}

@media (max-width: 991px) {
    .testimonial-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonial-head-copy h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .testimonial-section {
        padding: 36px 0;
    }

    .testimonial-head-copy h2 {
        font-size: 24px;
    }

    .testimonial-head-copy p {
        font-size: 14px;
    }

    .testimonial-nav button {
        width: 42px;
        height: 42px;
        border-radius: 12px;
    }

    .testimonial-card {
        min-height: auto;
        padding: 22px 18px;
        border-radius: 18px;
    }

    .testimonial-text {
        font-size: 14px;
        line-height: 1.75;
    }

    .testimonial-user-img {
        width: 48px;
        height: 48px;
    }
}
.category-page {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 28px;
    padding: 24px 0 56px;
    background: #f7f8fc;
}

.category-sidebar {
    position: sticky;
    top: 110px;
    align-self: start;
}

.filter-card {
    background: #fff;
    border-radius: 22px;
    padding: 22px 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.filter-card h3 {
    margin: 0 0 20px;
    font-size: 24px;
    color: #111827;
}

.filter-block + .filter-block {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid #eef2f7;
}

.filter-block h4 {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: #111827;
    letter-spacing: 0.04em;
}

.filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.filter-list li + li {
    margin-top: 10px;
}

.filter-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-decoration: none;
    color: #6b7280;
    font-size: 14px;
    padding: 4px 0;
    transition: 0.25s ease;
}

.filter-list a.active,
.filter-list a:hover {
    color: #5b4df6;
    font-weight: 600;
}

.filter-list small {
    color: #a1a1aa;
    font-size: 12px;
}

.check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: #4b5563;
}

.clear-filter-btn {
    width: 100%;
    border: 0;
    border-radius: 14px;
    background: #ddd7ff;
    color: #4f46e5;
    padding: 13px 16px;
    font-weight: 700;
    cursor: pointer;
}

.category-content {
    min-width: 0;
}

.category-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #9ca3af;
}

.category-breadcrumb a {
    color: #9ca3af;
    text-decoration: none;
}

.category-header h1 {
    margin: 0 0 20px;
    font-size: 42px;
    line-height: 1.1;
    color: #111827;
    font-weight: 800;
}

.category-hero-banner {
    background: linear-gradient(90deg, #fde7ef 0%, #fff2f6 100%);
    border: 1px solid #f7d4e0;
    border-radius: 24px;
    padding: 30px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
}

.hero-copy {
    max-width: 540px;
}

.hero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #b54774;
    background: #ffe5ef;
    border-radius: 999px;
    padding: 6px 12px;
    margin-bottom: 14px;
}

.hero-copy h2 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.2;
    color: #7a1f4d;
}

.hero-copy p {
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.7;
    color: #7c5b68;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff4da0, #f43f8c);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(244, 63, 140, 0.25);
}

.hero-art img {
    width: 180px;
    max-width: 100%;
}

.category-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.active-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: #6b7280;
    font-size: 14px;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #ece9ff;
    color: #5b4df6;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.sort-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-box label {
    color: #6b7280;
    font-size: 14px;
}

.sort-box select {
    height: 42px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #fff;
    padding: 0 14px;
    color: #111827;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.product-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.product-thumb {
    display: block;
    background: #fff;
    
}

.product-thumb img {
    width: 100%;
    height: 340px;
    object-fit: contain;
    border-radius: 12px;
}

.product-info {
    padding: 0 16px 16px;
}

.product-brand {
    color: #9ca3af;
    font-size: 12px;
    margin-bottom: 6px;
}

.product-info h3 {
    margin: 0 0 8px;
    font-size: 17px;
    line-height: 1.4;
}

.product-info h3 a {
    color: #111827;
    text-decoration: none;
}

.product-rating {
    font-size: 13px;
    color: #4b5563;
    margin-bottom: 12px;
}

.product-rating span {
    color: #9ca3af;
}

.product-variant {
    height: 38px;
    border: 1px solid #eceff4;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 14px;
}

.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.old-price {
    display: block;
    font-size: 12px;
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: 2px;
}

.price {
    font-size: 15px;
    line-height: 1;
    font-weight: 800;
    color: #111827;
}

.add-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #6d5dfc;
    background: #f1eeff;
    font-size: 18px;
}

@media (max-width: 1199px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .category-page {
        grid-template-columns: 1fr;
    }

    .category-sidebar {
        position: static;
    }

    .category-hero-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .category-header h1 {
        font-size: 30px;
    }

    .category-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .hero-copy h2 {
        font-size: 24px;
    }
}
.price-range-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-range-inputs input {
    width: 100%;
    height: 42px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0 12px;
    font-size: 14px;
    background: #fff;
}

.apply-price-btn {
    width: 100%;
    margin-top: 12px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #5b4df6;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}
.price-range-inputs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-range-inputs input {
    width: 100%;
    height: 42px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0 12px;
    font-size: 14px;
    background: #fff;
}

.apply-price-btn {
    width: 100%;
    margin-top: 12px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: #5b4df6;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}
.price-input-wrap {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 16px;
}

.price-field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 6px;
}

.price-field input {
    width: 100%;
    height: 42px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0 12px;
    font-size: 14px;
    background: #fff;
    color: #111827;
}

.price-slider-wrap {
    position: relative;
    height: 28px;
    margin-bottom: 10px;
}

.price-slider-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 6px;
    border-radius: 999px;
    background: #e9e5ff;
    transform: translateY(-50%);
}

.price-slider-wrap input[type="range"] {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    appearance: none;
    background: none;
    margin: 0;
}

.price-slider-wrap input[type="range"]::-webkit-slider-thumb {
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #5b4df6;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(91, 77, 246, 0.25);
    pointer-events: auto;
    cursor: pointer;
}

.price-slider-wrap input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #5b4df6;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(91, 77, 246, 0.25);
    pointer-events: auto;
    cursor: pointer;
}

.price-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 14px;
}

.apply-price-btn {
    width: 100%;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: #5b4df6;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}
.card {
    padding: 12px;
}
.marketplace-header.header-theme-default,
.category-navbar.header-theme-default {
    background: #ffffff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.marketplace-header.header-theme-fashion,
.category-navbar.header-theme-fashion {
    background: linear-gradient(90deg, #fff7fb 0%, #f8f3ff 100%);
    border-bottom: 1px solid rgba(124, 58, 237, 0.16);
}

.marketplace-header.header-theme-grocery,
.category-navbar.header-theme-grocery {
    background: linear-gradient(90deg, #f3fff7 0%, #f7fff2 100%);
    border-bottom: 1px solid rgba(22, 163, 74, 0.18);
}

.marketplace-header.header-theme-tools,
.category-navbar.header-theme-tools {
    background: linear-gradient(90deg, #f8fafc 0%, #fff8eb 100%);
    border-bottom: 1px solid rgba(217, 119, 6, 0.18);
}

.marketplace-header.header-theme-fashion .seller-portal-link,
.marketplace-header.header-theme-fashion .header-icon-btn:hover,
.category-navbar.header-theme-fashion .category-nav-link:hover,
.category-navbar.header-theme-fashion .category-mobile-toggle {
    color: #7c3aed;
}

.marketplace-header.header-theme-grocery .seller-portal-link,
.marketplace-header.header-theme-grocery .header-icon-btn:hover,
.category-navbar.header-theme-grocery .category-nav-link:hover,
.category-navbar.header-theme-grocery .category-mobile-toggle {
    color: #16a34a;
}

.marketplace-header.header-theme-tools .seller-portal-link,
.marketplace-header.header-theme-tools .header-icon-btn:hover,
.category-navbar.header-theme-tools .category-nav-link:hover,
.category-navbar.header-theme-tools .category-mobile-toggle {
    color: #d97706;
}