  * {
        -webkit-tap-highlight-color: transparent;
    }

    body {
        background: #f8fafc;
        font-family: 'Hind Siliguri', sans-serif;
        padding-bottom: 80px;
    }

    /* Modern Section Title */
    .section-title {
        font-size: 24px;
        font-weight: 800;
        margin-bottom: 20px;
        color: #0f172a;
        display: flex;
        align-items: center;
        gap: 10px;
        letter-spacing: -0.3px;
    }
    
    .section-title i {
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        font-size: 20px;
    }

    /* Horizontal Scroll (App Style) */
    .horizontal-scroll {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scrollbar-width: none;
        padding-bottom: 12px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .horizontal-scroll::-webkit-scrollbar {
        display: none;
    }

    /* ========== REELS MODERN ========== */
    .reel-card {
    width:220px;
    min-width:220px;
    max-width:220px;

    height:390px;

    border-radius:8px;
    overflow:hidden;

    position:relative;
    flex-shrink:0;

    background:#fff;

    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

    .reel-card iframe {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events:auto;
    }

    .reel-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 20px 14px;
        background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 60%, transparent 100%);
        backdrop-filter: blur(2px);
    }

    .reel-title {
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        margin-bottom: 10px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    }

    .reel-btn {
        width: 100%;
        height: 42px;
        border-radius: 8px;
        background: #2563eb;
        color: #fff;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 13px;
        transition: all 0.2s;
    }

    .reel-btn:hover {
        background: #1d4ed8;
        transform: scale(0.98);
        color: #fff;
    }

/* =========================
   MAIN BANNER
========================= */

.full-banner{
    width:100%;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.full-banner img{
    width:100%;
    height:auto;
    display:block;
}

/* =========================
   DOUBLE BANNERS
========================= */

.double-banner{
    width:100%;
    border-radius:8px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
}

.double-banner img{
    width:100%;
    height:auto;
    display:block;
}

    /* ========== CATEGORY MODERN ========== */
    .category-card{
    width:100px;
    min-width:100px;

    background:transparent;
    box-shadow:none;
    border:none;

    padding:0;
    text-align:center;
}

.category-card:hover{
    transform:none;
    box-shadow:none;
}

    .category-image {
        width: 60px;
        height: 60px;
        margin: auto;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 10px;
        background: linear-gradient(135deg, #eff6ff, #dbeafe);
        display: flex;
        align-items: center;
        justify-content: center;
    }

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

    .category-name{
    text-align:center;
    font-size:13px;
    font-weight:700;
    color:#0f172a;

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

    min-height:36px;
    
    
}

.categories-grid{
    display:grid;
    grid-template-columns:repeat(8,1fr);
    gap:10px;
}

.categories-grid .category-card{
    width:100% !important;
    min-width:unset !important;
}

/* Tablet */
@media (max-width:992px){

    .categories-grid{
        grid-template-columns:repeat(6,1fr);
    }

}

/* Mobile */
@media (max-width:768px){

    .categories-grid{
        grid-template-columns:repeat(4,1fr);
        gap:8px;
    }

    .categories-grid .category-image{
        width:50px;
        height:50px;
    }

    .categories-grid .category-name{
        font-size:11px;
        min-height:auto;
    }

}

    /* ========== PRODUCT CARD MODERN ========== */
    .product-card {
        width: 200px;
        min-width: 200px;
        background: #fff;
        border-radius: 8px;
        overflow: hidden;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
        transition: all 0.3s;
        border: 1px solid rgba(0, 0, 0, 0.03);
    }

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 35px rgba(37, 99, 235, 0.12);
    }

    .product-image {
        width: 100%;
        height: 200px;
        overflow: hidden;
        position: relative;
        background: #f1f5f9;
    }

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

    .product-card:hover .product-image img {
        transform: scale(1.03);
    }
    
.stock-badge{
    position:absolute;
    top:10px;
    left:10px;
    color:#fff;
    padding:4px 8px;
    border-radius:6px;
    font-size:10px;
    font-weight:700;
    z-index:2;
}

/* স্টকে আছে */
.in-stock{
    background:#16a34a;
}

/* ১-৩ পিস */
.low-stock{
    background:#f59e0b;
}

/* ০ পিস */
.stock-out{
    background:#dc2626;
}

.review-badge{

    position:absolute;
    top:10px;
    right:10px;

    background:#16a34a;
    color:#fff;

    padding:5px 8px;

    border-radius:6px;

    font-size:10px;
    font-weight:700;

    z-index:5;

    display:flex;
    align-items:center;
    gap:4px;

    white-space:nowrap;

    box-shadow:0 2px 8px rgba(0,0,0,.15);

}

@media(max-width:768px){

    .review-badge{

        font-size:8px;
        padding:4px 6px;

    }

}

    .product-body {
        padding: 14px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .product-title {
        font-size: 14px;
        font-weight: 700;
        height: 42px;
        overflow: hidden;
        margin-bottom: 8px;
        color: #0f172a;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .cash-price {
        color: #16a34a;
        font-size: 20px;
        font-weight: 800;
    }

    .installment-price {
        color: #dc2626;
        font-weight: 700;
        margin-top: 4px;
        margin-bottom: 4px;
        font-size: 12px;
    }

    .student-price {
        color: #7c3aed;
        font-weight: 700;
        margin-bottom: 12px;
        font-size: 11px;
        background: #f3e8ff;
        padding: 4px 10px;
        border-radius: 8px;
        display: inline-block;
        width: fit-content;
    }

    .product-btn {
        width: 100%;
        height: 42px;
        border-radius: 8px;
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
        color: #fff;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 12px;
        margin-top: auto;
        transition: all 0.2s;
    }

    .product-btn:hover {
        transform: scale(0.97);
        opacity: 0.95;
        color: #fff;
    }
    
    .products-grid{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:12px;
}

.products-grid .product-card{
    width:100%;
    min-width:unset;
}

@media(max-width:768px){

    .products-grid{
        grid-template-columns:repeat(3,1fr);
        gap:10px;
    }

}

.product-hidden{
    display:none;
}


@media(max-width:768px){

    .show-more-btn{

        width:100%;

        max-width:240px;

        font-size:13px;

        padding:13px 20px;

    }

}

@media(max-width:768px){

    .latest-products-grid{
        grid-template-columns:repeat(3,1fr);
        gap:10px;
    }

}

    /* ========== INFO BOX MODERN ========== */
    .info-box {
        background: linear-gradient(145deg, #ffffff, #fefefe);
        border-radius: 8px;
        padding: 30px 28px;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(37, 99, 235, 0.08);
        transition: all 0.3s;
    }

    .info-box:hover {
        transform: translateY(-3px);
        box-shadow: 0 20px 35px rgba(37, 99, 235, 0.1);
    }

    .info-box h3 {
        font-size: 26px;
        font-weight: 800;
        margin-bottom: 14px;
        color: #0f172a;
    }

    .info-box p {
        color: #475569;
        line-height: 1.7;
        font-size: 14px;
        margin: 0;
    }

    /* Button Primary */
    .btn-primary {
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
        border: none;
        border-radius: 8px;
        padding: 8px 20px;
        font-weight: 700;
        font-size: 13px;
        transition: all 0.2s;
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    }

    /* ========== MOBILE RESPONSIVE ========== */
    @media (max-width: 768px) {
        body {
            padding-bottom: 70px;
        }
        
        .section-title {
            font-size: 17px;
        }
        
        .reel-card {
            width: 170px;
            min-width: 170px;
            height: 300px;
        }
        
        
        .product-card {
            width: 170px;
            min-width: 170px;
        }
        
        .product-image {
            height: 170px;
        }
        
        .product-title {
            font-size: 13px;
            height: 38px;
        }
        
        .cash-price {
            font-size: 18px;
        }
        
        .community-card {
            width: 280px;
            min-width: 280px;
        }
        
        .community-image {
            height: 160px;
        }
        
        .info-box {
            padding: 22px 20px;
        }
        
        .info-box h3 {
            font-size: 22px;
        }
    }

    @media (max-width:768px){

    .products-grid{
        display:grid !important;
        grid-template-columns:repeat(3,1fr);
        gap:10px;
        overflow:visible !important;
    }

    .products-grid .product-card{
        width:100% !important;
        min-width:unset !important;
    }

    .products-grid .product-image{
        height:120px;
    }

    .products-grid .product-title{
        font-size:11px;
        height:32px;
        line-height:1.3;
    }

    .products-grid .cash-price{
        font-size:14px;
    }

    @media (max-width:768px){

    .products-grid .installment-price{
        font-size:9px;
        line-height:1.2;
        margin-top:2px;
        margin-bottom:2px;
    }

}

    .products-grid .product-btn{
        height:32px;
        font-size:10px;
    }

}
    
   @media (max-width:768px){

    .products-grid{
        display:grid !important;
        grid-template-columns:repeat(3,1fr);
        gap:10px;
        overflow:visible !important;
    }

    .products-grid .product-card{
        width:100% !important;
        min-width:unset !important;
    }

}

@media (max-width:768px){

    .installment-price{
        font-size:9px !important;
        line-height:1.2;
        margin-top:2px;
        margin-bottom:2px;
    }

}

@media(max-width:768px){

    .stock-badge{
        font-size:8px;
        padding:3px 6px;
    }

}

@media(max-width:768px){

    .student-badge{
        width:24px;
        height:24px;
        font-size:12px;
    }

}

.student-icon{
    position:absolute;
    top:10px;
    right:10px;

    width:26px;
    height:26px;

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

    background:rgba(124,58,237,.9);

    color:#fff;

    border-radius:50%;

    font-size:13px;

    z-index:3;
}

@media(max-width:768px){

    .student-icon{
        width:22px;
        height:22px;
        font-size:11px;
    }

}

.video-marquee-header{
    display:flex;
    align-items:center;
    gap:10px;

    background:#fff;
    border-radius:8px;

    padding:10px 12px;

    margin-bottom:15px;

    box-shadow:0 2px 10px rgba(0,0,0,.05);

    overflow:hidden;
}

.video-gift{
    font-size:24px;
    flex-shrink:0;
}

.video-marquee-wrap{
    flex:1;
    overflow:hidden;
    white-space:nowrap;
}

.video-marquee{

    display:inline-block;

    color:#dc2626;
    font-size:14px;
    font-weight:700;

    padding-left:100%;

    animation:marqueeMove 18s linear infinite;
}

.video-header-btn{

    flex-shrink:0;

    background:#2563eb;
    color:#fff;

    text-decoration:none;

    padding:6px 12px;

    border-radius:8px;

    font-size:12px;
    font-weight:700;
}

.video-header-btn:hover{
    color:#fff;
}

@keyframes marqueeMove{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-100%);
    }

}

@media(max-width:768px){

    .video-gift{
        font-size:20px;
    }

    .video-marquee{
        font-size:12px;
    }

    .video-header-btn{
        padding:5px 10px;
        font-size:11px;
    }

}

.view-all-btn{
    background:#2563eb;
    color:#fff;
    text-decoration:none;

    padding:6px 12px;

    border-radius:8px;

    font-size:12px;
    font-weight:700;

    white-space:nowrap;
}

.view-all-btn:hover{
    color:#fff;
    background:#1d4ed8;
}

/* =========================
   VIP CARDS
========================= */

.vip-card{

    position:relative;

    overflow:hidden;

    border-radius:8px;

    padding:25px;

    display:flex;

    align-items:center;

    gap:20px;

    color:#fff;

    box-shadow:
    0 15px 35px rgba(0,0,0,.12);

    transition:.3s;

}

.vip-card:hover{

    transform:translateY(-4px);

}

.installment-card{

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8
    );

}

.student-card{

    background:
    linear-gradient(
        135deg,
        #7c3aed,
        #9333ea
    );

}

.vip-icon{

    width:80px;
    height:80px;

    border-radius:50%;

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

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

    font-size:34px;

    flex-shrink:0;

}

.vip-content h3{

    font-size:22px;
    font-weight:900;

    margin-bottom:8px;

}

.vip-content p{

    margin-bottom:15px;

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

}

.vip-btn{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:10px 18px;

    border-radius:8px;

    background:#fff;

    color:#111827;

    text-decoration:none;

    font-weight:800;

    transition:.3s;

}

.vip-btn:hover{

    transform:translateX(4px);

    color:#111827;

}

@media(max-width:768px){

    .vip-card{

        padding:18px;

        gap:15px;

    }

    .vip-icon{

        width:60px;
        height:60px;

        font-size:24px;

    }

    .vip-content h3{

        font-size:18px;

    }

    .vip-content p{

        font-size:13px;

    }

    .vip-btn{

        font-size:12px;

        padding:8px 14px;

    }

}

.youtube-thumb{

    width:100%;
    height:100%;
    cursor:pointer;
    position:relative;
    overflow:hidden;

}

.youtube-thumb img{

    width:100%;

    height:100%;

    object-fit:cover;

    object-position:center;

    display:block;

    border-radius:8px;

}

.play-btn{

    position:absolute;

    top:50%;
    left:50%;

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

    width:52px;
    height:52px;

    border-radius:50%;

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

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

    box-shadow:
        0 10px 25px rgba(0,0,0,.25);

    transition:.25s;

}

.play-btn::before{

    content:"▶";

    color:#ff0000;

    font-size:18px;

    margin-left:3px;

}

.youtube-thumb:hover .play-btn{

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

    background:#ffffff;

}