/* ============================
   VS BEST SELLERS (NEW CLASSES)
============================ */

.vs-best-products{
    padding:80px 0;
    background:#fff;
}

.vs-section-container{
    width:100%;
    max-width:1400px;
    margin:0 auto;
    padding:0 20px;
}

.vs-best-header{
    text-align:center;
    margin-bottom:40px;
}

.vs-best-label{
    font-size:15px;
    font-weight:600;
    color:#d97706;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:10px;
}

.vs-best-title{
    font-size:42px;
    font-weight:700;
    color:#222;
    margin:0;
}

.vs-best-wrapper{
    position:relative;
    display:flex;
    align-items:center;
}

.vs-best-grid{
    display:flex;
    gap:24px;
    overflow-x:auto;
    overflow-y:hidden;
    scroll-behavior:smooth;
    scrollbar-width:none;
    width:100%;
    padding:10px 0;
}

.vs-best-grid::-webkit-scrollbar{
    display:none;
}

.vs-best-grid>*{
    flex:0 0 calc(25% - 18px);
    min-width:280px;
}

.vs-best-btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:#fff;
    color:#222;
    font-size:24px;
    cursor:pointer;
    box-shadow:0 5px 20px rgba(0,0,0,.15);
    z-index:10;
    transition:.3s;
}

.vs-best-btn:hover{
    background:#f97316;
    color:#fff;
}

.vs-best-prev{
    left:-24px;
}

.vs-best-next{
    right:-24px;
}

.vs-product-skeleton{
    height:380px;
    border-radius:20px;
    background:#f3f3f3;
}

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

@media (max-width:991px){

.vs-best-grid>*{
    min-width:320px;
}

.vs-best-prev{
    left:0;
}

.vs-best-next{
    right:0;
}

}

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

@media (max-width:768px){

.vs-best-products{
    padding:50px 0;
}

.vs-best-title{
    font-size:30px;
}

.vs-best-grid{
    gap:18px;
    padding-bottom:8px;
}

.vs-best-grid>*{
    min-width:260px;
}

.vs-best-btn{
    display:none;
}

}













.product-desc-wrap{
    margin-bottom:15px;
}

.product-desc{

    font-size:13px;
    line-height:1.7;

    overflow:hidden;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;

    transition:.35s;
}

.product-desc.expanded{

    display:block;
    overflow:visible;

}

.read-more-btn{

    display:inline-block;
    margin-top:6px;

    color:#E8471A;

    font-size:13px;
    font-weight:600;

    cursor:pointer;

}

.read-more-btn:hover{

    text-decoration:underline;

}

.product-desc-wrap{
    margin-bottom:15px;
    min-height:70px;
    display:flex;
    flex-direction:column;
}

.product-desc{
    font-size:13px;
    line-height:1.7;
    color:var(--text-light);

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;

    overflow:hidden;
    word-break:break-word;
}

.product-desc.expanded{
    display:block;
    overflow:visible;
    -webkit-line-clamp:unset;
}

.read-more-btn{
    display:block;
    margin-top:8px;
    color:#E8471A;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
}

.read-more-btn:hover{
    text-decoration:underline;
}

.product-footer{
    margin-top:auto;
}

.product-card-img{

    width:100% !important;

    aspect-ratio:1/1 !important;

    overflow:hidden !important;

    border-radius:14px 14px 0 0;

}

.product-card-img img{

    width:100% !important;

    height:100% !important;

    object-fit:cover !important;

    object-position:center center !important;

    display:block;

    transition:.4s;

}

.product-card:hover .product-card-img img{

    transform:scale(1.08);

}


.product-card-img{
    width:100%;
    aspect-ratio:1/1;
    overflow:hidden;
    border-radius:14px 14px 0 0;
    flex-shrink:0;
}

.product-card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
    transition:.4s;
}

.product-card:hover .product-card-img img{
    transform:scale(1.08);
}


/* ======================================================
   PRODUCT IMAGE + DESCRIPTION RESPONSIVE
====================================================== */

/* Desktop */
@media (min-width:1200px){

    .product-card-img{
        aspect-ratio:1/1 !important;
    }

    .product-desc{
        font-size:13px;
        line-height:1.7;
        -webkit-line-clamp:2;
    }

    .read-more-btn{
        font-size:13px;
    }

}

/* Laptop */
@media (min-width:992px) and (max-width:1199px){

    .product-card-img{
        aspect-ratio:1/1 !important;
    }

    .product-desc{
        font-size:13px;
        line-height:1.7;
        -webkit-line-clamp:2;
    }

}

/* Tablet */
@media (min-width:768px) and (max-width:991px){

    .product-card-img{
        aspect-ratio:1/1 !important;
    }

    .product-desc{
        font-size:12px;
        line-height:1.6;
        -webkit-line-clamp:2;
    }

    .read-more-btn{
        font-size:12px;
    }

}

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

    .product-card-img{
        aspect-ratio:1/1 !important;
    }

    .product-desc{
        font-size:12px;
        line-height:1.6;
        -webkit-line-clamp:2;
    }

    .read-more-btn{
        font-size:12px;
    }

}

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

    .product-card-img{
        aspect-ratio:1/1 !important;
    }

    .product-desc{
        font-size:11px;
        line-height:1.5;
        -webkit-line-clamp:2;
    }

    .read-more-btn{
        font-size:11px;
    }

}

/* Extra Small */
@media (max-width:360px){

    .product-card-img{
        aspect-ratio:1/1 !important;
    }

    .product-desc{
        font-size:11px;
        line-height:1.4;
        -webkit-line-clamp:2;
    }

    .read-more-btn{
        font-size:11px;
    }

}












/* ============================================================
   PRODUCT CARD RESPONSIVE FIX
   ADD THIS AT THE VERY END OF responsive.css
   ============================================================ */

/* Mobile */
@media screen and (max-width:480px){

    .products-grid{
        display:grid !important;
        grid-template-columns:repeat(2,1fr) !important;
        gap:12px !important;
        padding:0 !important;
    }

    .product-card{
        width:100% !important;
        min-width:0 !important;
    }

    .product-card-img{
        height:120px !important;
        font-size:42px !important;
    }

    .product-card-body{
        padding:10px !important;
    }

    .product-category{
        font-size:9px !important;
        padding:2px 8px !important;
    }

    .product-name{
        font-size:13px !important;
        line-height:1.3 !important;
        min-height:34px;
    }

    .product-desc{
        font-size:11px !important;
        line-height:1.4 !important;

        display:-webkit-box;
        -webkit-line-clamp:2;
        -webkit-box-orient:vertical;
        overflow:hidden;
    }

    .weight-select{
        font-size:11px !important;
        padding:6px 8px !important;
        margin-bottom:10px !important;
    }

    .product-price{
        font-size:18px !important;
    }

    .product-price-orig{
        font-size:11px !important;
    }

    .add-to-cart-btn{
        width:34px !important;
        height:34px !important;
        font-size:18px !important;
    }

    .qty-btn{
        width:26px !important;
        height:26px !important;
        font-size:14px !important;
    }

    .qty-num{
        font-size:13px !important;
    }

}


/* Extra Small Phones */
@media screen and (max-width:360px){

    .products-grid{
        grid-template-columns:1fr !important;
    }

    .product-card-img{
        height:150px !important;
    }

}


/* Large Mobile */
@media screen and (min-width:481px) and (max-width:767px){

    .products-grid{
        grid-template-columns:repeat(2,1fr) !important;
        gap:16px !important;
    }

    .product-card-img{
        height:150px !important;
    }

    .product-name{
        font-size:15px !important;
    }

}


/* Tablet */
@media screen and (min-width:768px) and (max-width:991px){

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

    .product-card-img{
        height:170px !important;
    }

}


/* Laptop */
@media screen and (min-width:992px) and (max-width:1199px){

    .products-grid{
        grid-template-columns:repeat(4,1fr) !important;
        gap:20px !important;
    }

}


/* Desktop */
@media screen and (min-width:1200px){

    .products-grid{
        grid-template-columns:repeat(4,1fr) !important;
        gap:24px !important;
    }

}
/* ===============================
   Out Of Stock Circle Button Fix
   =============================== */

.add-to-cart-btn.oos-btn{
    width:60px !important;
    height:60px !important;
    border-radius:50% !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    flex-direction:column !important;

    padding:0 !important;
    margin:0 !important;

    text-align:center !important;

    font-size:10px !important;
    font-weight:700 !important;
    line-height:1.1 !important;

    white-space:normal !important;
    word-break:normal !important;
    overflow-wrap:anywhere !important;

    background:var(--orange) !important;
    color:#fff !important;
}

.add-to-cart-btn.oos-btn br{
    display:block;
    content:"";
    margin:0;
}

@media screen and (max-width:480px){

    .products-grid{
        display:grid !important;
        grid-template-columns:repeat(2,1fr) !important;
        gap:12px !important;
        padding:0 !important;
    }

    .product-card{
        width:100% !important;
        min-width:0 !important;
    }

    width: 100%;
}

#bestsellersGrid{
    display:flex;
    gap:24px;
    overflow:hidden;
    scroll-behavior:auto;
    scrollbar-width:none;
}
#bestsellersGrid::-webkit-scrollbar{
    display:none;
}

#bestsellersGrid:hover{
    animation-play-state: paused;
}

#bestsellersGrid .product-card{
    flex: 0 0 280px;
    min-width: 280px;
}

/* Infinite Animation */



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

@media (max-width:1024px){

    #bestsellersGrid{

        gap:20px;

        animation-duration:28s;

    }

    #bestsellersGrid .product-card{

        flex:0 0 260px;

        min-width:260px;

    }

}


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

@media (max-width:768px){

    .bestsellers-section{

        padding-left:15px;

        padding-right:15px;

    }

    #bestsellersGrid{

        gap:16px;

        animation-duration:22s;

    }

    #bestsellersGrid .product-card{

        flex:0 0 220px;

        min-width:220px;

    }

}


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

@media (max-width:480px){

    #bestsellersGrid{

        gap:14px;

        animation-duration:18s;

    }

    #bestsellersGrid .product-card{

        flex:0 0 190px;

        min-width:190px;

    }

}

/* Products Grid */
/* FIX: was repeat(4,1fr) hardcoded — on mobile this creates 4 tiny columns.
   Changed to repeat(auto-fill, minmax(220px,1fr)) as the base so it naturally
   reflows. Responsive.css overrides with explicit column counts per breakpoint. */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
/*
#bestsellersGrid.products-grid{
    display:flex !important;
    overflow-x:auto;
    flex-wrap:nowrap;
    gap:24px;
    scroll-behavior:smooth;
}

#bestsellersGrid .product-card{
    flex:0 0 280px;
    min-width:280px;
}
*/

/* ===== BEST SELLERS GRID ===== */

/* #bestsellersGrid{
    display:grid !important;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    width:100%;
} */

/* #bestsellersGrid .product-card{
    width:100%;
    min-width:0;
}

@media (max-width:991px){

    #bestsellersGrid{
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }

}

@media (max-width:575px){

    #bestsellersGrid{
        grid-template-columns:1fr;
        gap:16px;
    }

} */
/* ==========================================
   FINAL BEST SELLERS HORIZONTAL FIX
========================================== */

#bestsellersGrid{
    display:flex !important;
    flex-direction:row !important;
    flex-wrap:nowrap !important;
    gap:24px;
    overflow-x:auto;
    overflow-y:hidden;
    width:100%;
    scroll-behavior:smooth;
    scrollbar-width:none;
}

#bestsellersGrid::-webkit-scrollbar{
    display:none;
}


#bestsellersGrid .product-card{
    flex:0 0 calc(25% - 18px);
    min-width:260px;
}


@media(max-width:991px){

    #bestsellersGrid .product-card{
        flex:0 0 calc(50% - 12px);
        min-width:260px;
    }

}


@media(max-width:575px){

    #bestsellersGrid .product-card{
        flex:0 0 85%;
        min-width:240px;
    }

}




.product-card {
    background: white; border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: var(--transition);
    border: 1px solid var(--border); display: flex; flex-direction: column;
    min-width: 0;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

/*.product-card-img {
    height: 200px; display: flex; align-items: center; justify-content: center;
    font-size: 72px; background: var(--cream);
    position: relative; overflow: hidden;
}*/
.product-card-img {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .35s ease;
}

.product-card:hover .product-card-img img {
    transform: scale(1.05);
}
.product-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--orange); color: white; font-size: 11px; font-weight: 700;
    padding: 4px 10px; border-radius: 50px;
}
.product-badge.veg { background: #22C55E; }
.product-badge.bestseller { background: #F59E0B; }

.product-card-body { padding: 16px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.product-category { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--orange); font-weight: 600; margin-bottom: 6px; }
/*.product-name { font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--text-dark); font-family: 'Playfair Display', serif; }*/
.product-name { font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--text-dark); font-family: 'Poppins', sans-serif; }
.product-desc { font-size: 13px; color: var(--text-light); line-height: 1.5; margin-bottom: 12px; flex: 1; }
.product-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.product-rating { font-size: 13px; color: var(--text-mid); }
.product-rating span { color: #F59E0B; margin-right: 4px; }

/* Weight Select */
.weight-select {
    width: 100%; padding: 8px 12px;
    border: 1.5px solid var(--border); border-radius: var(--radius-sm);
    font-size: 13px; color: var(--text-mid); margin-bottom: 14px;
    background: var(--cream); cursor: pointer;
}
.weight-select:focus { border-color: var(--orange); }

/* Price + Cart Row */
.product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.product-price { font-size: 22px; font-weight: 700; color: var(--orange); }
.product-price-orig { font-size: 14px; color: var(--text-light); text-decoration: line-through; margin-left: 4px; }

/* Add to Cart Button */
.add-to-cart-btn {
    background: var(--orange); color: white;
    width: 40px; height: 40px; border-radius: 50%;
    font-size: 22px; display: flex; align-items: center; justify-content: center;
    transition: var(--transition); flex-shrink: 0;
}
.add-to-cart-btn:hover { background: var(--orange-dark); transform: scale(1.1); }

/* Quantity Control (when item is in cart) */
.qty-control { display: flex; align-items: center; gap: 8px; }
.qty-btn { width: 30px; height: 30px; background: var(--orange); color: white; border-radius: 50%; font-size: 18px; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.qty-btn:hover { background: var(--orange-dark); }
.qty-num { font-weight: 700; font-size: 16px; min-width: 24px; text-align: center; }

/* Skeleton Loader */
.product-skeleton {
    background: white; border-radius: var(--radius); overflow: hidden;
    height: 360px; border: 1px solid var(--border);
}
.product-skeleton::before {
    content: ''; display: block; height: 100%;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}
.product-skeleton.large { height: 500px; }

/* Product Detail Page */
.product-page { padding-top: 80px; padding-bottom: 80px; }
/* FIX: was grid-template-columns: 1fr 1fr with no mobile collapse.
   Responsive.css collapses it; adding min-width:0 so grid children don't overflow. */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 80px; min-width: 0; }
.product-detail-img { background: var(--cream); border-radius: var(--radius); height: 400px; display: flex; align-items: center; justify-content: center; font-size: 120px; }
.product-detail-info { padding: 20px 0; min-width: 0; }
.product-detail-info h1 { font-size: 36px; margin-bottom: 16px; }
.product-detail-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; }
.product-detail-price { font-size: 36px; font-weight: 700; color: var(--orange); margin-bottom: 24px; }
.product-detail-desc { color: var(--text-mid); line-height: 1.8; margin-bottom: 28px; }
.product-detail-weight { margin-bottom: 24px; }
.product-detail-weight label { font-weight: 600; margin-bottom: 8px; display: block; }
.product-detail-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Menu Page */
.menu-section { padding: 40px 0 80px; }
/* FIX: filter-bar children could overflow when flex content was wider than container. */
.filter-bar { display: flex; gap: 16px; align-items: center; margin-bottom: 32px; flex-wrap: wrap; }
.filter-search { flex: 1; min-width: 200px; display: flex; align-items: center; gap: 10px; background: white; border: 2px solid var(--border); border-radius: 50px; padding: 10px 20px; }
.filter-search input { border: none; background: none; font-size: 15px; flex: 1; min-width: 0; }
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-tab { padding: 8px 18px; border-radius: 50px; font-size: 13px; font-weight: 600; border: 2px solid var(--border); background: white; transition: var(--transition); }
.filter-tab.active, .filter-tab:hover { background: var(--orange); color: white; border-color: var(--orange); }
.filter-sort select { padding: 10px 16px; border: 2px solid var(--border); border-radius: 50px; font-size: 14px; background: white; }
.no-results { text-align: center; padding: 80px; }
.no-results span { font-size: 48px; display: block; margin-bottom: 16px; }

/* Product image area */
.product-card-img{
    position:relative !important;
    width:100% !important;
    aspect-ratio:1/1 !important;
    overflow:hidden !important;
    border-radius:14px 14px 0 0 !important;
    background:linear-gradient(145deg,#FFF8F3,#FDF0E8) !important;
    transition:background .3s ease !important;
}

.product-card-img img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:center center !important;
    display:block !important;
    transition:transform .35s ease !important;
}

.product-card:hover .product-card-img{
    background:linear-gradient(145deg,#FFF0EB,#FDE8DC) !important;
}

.product-card:hover .product-card-img img{
    transform:scale(1.06);
}

/* Add to cart button premium */
.add-to-cart-btn {
    background: linear-gradient(135deg, #E8471A, #FF6B35) !important;
    box-shadow: 0 4px 14px rgba(232,71,26,0.3) !important;
    transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1) !important;
}
.add-to-cart-btn:hover {
    transform: scale(1.18) rotate(10deg) !important;
    box-shadow: 0 8px 24px rgba(232,71,26,0.45) !important;
}

/* Product badge */
.product-badge {
    background: linear-gradient(135deg, #E8471A, #FF6B35) !important;
    box-shadow: 0 2px 8px rgba(232,71,26,0.3) !important;
    letter-spacing: 0.5px;
}
.product-badge.bestseller {
    background: linear-gradient(135deg, #F59E0B, #FBBF24) !important;
    box-shadow: 0 2px 8px rgba(245,158,11,0.35) !important;
}
.product-badge.veg {
    background: linear-gradient(135deg, #22C55E, #4ADE80) !important;
    box-shadow: 0 2px 8px rgba(34,197,94,0.35) !important;
}

/* Price premium gradient */
.product-price {
    background: linear-gradient(135deg, #E8471A, #C93A12);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800 !important;
}

/* Filter tabs */
.filter-tab.active, .filter-tab:hover {
    background: linear-gradient(135deg, #E8471A, #FF6B35) !important;
    box-shadow: 0 4px 14px rgba(232,71,26,0.3) !important;
    border-color: transparent !important;
    transform: translateY(-1px);
}

/* Qty control */
.qty-btn {
    background: linear-gradient(135deg, #E8471A, #FF6B35) !important;
    box-shadow: 0 2px 8px rgba(232,71,26,0.25) !important;
    transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1) !important;
}
.qty-btn:hover {
    transform: scale(1.15) !important;
    box-shadow: 0 4px 14px rgba(232,71,26,0.4) !important;
}

/* Skeleton loader enhanced */
.product-skeleton::before {
    background: linear-gradient(90deg, #FFF0EB 25%, #FFE8DC 50%, #FFF0EB 75%) !important;
    background-size: 200% 100% !important;
}

/* ── Veg sub-filter tabs ── */
#vegFilterTabs {
    display: none;
    gap: 8px;
    flex-wrap: wrap;
    padding: 4px 0;
}
#vegFilterTabs .filter-tab {
    font-size: 13px;
    padding: 5px 14px;
}


/* ==========================================
   FINAL PRODUCT IMAGE 1:1 FIX
=========================================
/* ==========================================
   PRODUCT IMAGE 1:1 - ALL DEVICES
========================================== */

.product-card-img{
    position:relative !important;
    width:100% !important;
    aspect-ratio:1/1 !important;
    height:auto !important;
    overflow:hidden !important;
    border-radius:14px 14px 0 0 !important;
}

.product-card-img img{
    width:100% !important;
    height:100% !important;
    object-fit:cover !important;
    object-position:center center !important;
    display:block !important;
}

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

    .product-card-img{
        aspect-ratio:1/1 !important;
        height:auto !important;
    }

}

/* Large Mobile */
@media (min-width:481px) and (max-width:767px){

    .product-card-img{
        aspect-ratio:1/1 !important;
        height:auto !important;
    }

}

/* Tablet */
@media (min-width:768px) and (max-width:991px){

    .product-card-img{
        aspect-ratio:1/1 !important;
        height:auto !important;
    }

}

/* Laptop */
@media (min-width:992px) and (max-width:1199px){

    .product-card-img{
        aspect-ratio:1/1 !important;
        height:auto !important;
    }

}

/* Desktop */
@media (min-width:1200px){

    .product-card-img{
        aspect-ratio:1/1 !important;
        height:auto !important;
    }

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

    .product-desc-wrap{
        min-height:90px;
    }

    .product-desc{
        font-size:12px;
        line-height:1.6;
    }

    .read-more-btn{
        font-size:12px;
    }

}

/* ===== Read More Fix ===== */

.product-card{
    display:flex !important;
    flex-direction:column !important;
    height:auto !important;
}

.product-card-body{
    display:flex !important;
    flex-direction:column !important;
    flex:1 !important;
    height:auto !important;
}

.product-desc-wrap{
    display:block !important;
    height:auto !important;
}

.product-desc.expanded{
    display:block !important;
    -webkit-line-clamp:unset !important;
    overflow:visible !important;
}

.product-footer{
    margin-top:auto !important;
}

/* =========================================
   BEST SELLER GRID FIX
========================================= */

/* .bestsellers-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:24px;
    width:100%;
}

@media (max-width:991px){

    .bestsellers-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:16px;
    }

}

@media (max-width:575px){

    .bestsellers-grid{
        grid-template-columns:1fr;
        gap:16px;
    }

} */
#bestsellersGrid{
    display:flex !important;
    flex-direction:row !important;
    flex-wrap:nowrap !important;
    overflow-x:auto !important;
    overflow-y:hidden !important;
    gap:24px !important;
}

#bestsellersGrid > *{
    flex:0 0 280px !important;
    width:280px !important;
    max-width:280px !important;
}
