/*==========================================
   Weekly Bestsellers
==========================================*/

.weekly-bestsellers{
    position:relative;
    padding:10px 0 10px;
    background:#fff;
    overflow: visible; 
}

.weekly-bestsellers__header{
    text-align:center;
    margin-bottom:-50px;
}

.weekly-bestsellers__title{
    font-size:22px;
    font-weight:700;
    color:#1b1b1b;
    margin:0;
    line-height:1.2;
}

/* Swiper */

.weekly-bestsellers__swiper{

    width:100%;
    height:300px;
    overflow:visible;
    padding-top:40px;
    padding-bottom:30px;

}

.weekly-bestsellers__slide{
    width:180px !important;
    height:260px;
    padding-top:10px;   /* নতুন যোগ করুন */
}

/* Card */

.weekly-card{

    display:block;
    text-decoration:none;
    margin-top:70px;

    transition:transform .8s cubic-bezier(.22,.61,.36,1);
    will-change:transform;

}

.weekly-card__image{
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid #e4c76a;
    box-shadow:
        0 15px 40px rgba(0,0,0,.18),
        0 0 0 1px rgba(255,255,255,.35) inset;
}

.weekly-card__image img{

    width:100%;
    height:100%;
    display:block;

}

/* Button */

.weekly-card__footer{

    margin-top:-58px;
    position:relative;
    z-index:5;
    text-align:center;

}

.weekly-card__button{

    border:none;
    background: #caa64c;
    color:#fff;

    padding:5px 6px;

    border-radius:10px;

    font-size:12px;

    font-weight:600;

    transition:.3s;

}

.weekly-card:hover .weekly-card__button{

    background:#b58c24;

}

/* Swiper Active */

.swiper-slide-active{

    z-index:50;

}

.swiper-slide-active .weekly-card{

    transform:scale(1.02);

}

.swiper-slide{

    transition:transform .8s cubic-bezier(.22,.61,.36,1);

}

/* Pagination */

.weekly-pagination{

    margin-top:80px;

}

.weekly-pagination .swiper-pagination-bullet{

    width:10px;
    height:10px;
    opacity:1;
    background:#ead39a;

}

.weekly-pagination .swiper-pagination-bullet-active{

    width:28px;
    border-radius:20px;
    background:#caa64c;

}

/* Responsive */

@media(max-width:991px){

.weekly-bestsellers{

    padding:40px 0;

}

.weekly-bestsellers__title{

    font-size:34px;

}

.weekly-bestsellers__swiper{

    height:470px;

}

.weekly-bestsellers__slide{

    width:220px;
    height:340px;

}

}

@media(max-width:576px){

.weekly-bestsellers{

    padding:35px 0;

}

.weekly-bestsellers__title{

    font-size:28px;

}

.weekly-bestsellers__swiper{

    height:390px;

}

.weekly-bestsellers__slide{

    width:180px;
    height:285px;

}

.weekly-card__button{

    padding:8px 16px;
    font-size:12px;

}

}