/*================================== seller */
/**,*:after,*:before{*/
/*    outline: 1px solid tomato;*/
/*}*/
.best-seller-section {
    margin-top: 16px;
    overflow: hidden!important;
    width: 100%;
    background-color: #F5EEE4;
    padding: 40px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

@media screen and (max-width: 992px) {
    .best-seller-section {
        padding: 40px 132px;
    }
}

@media screen and (max-width: 768px) {
    .best-seller-section {
        padding: 24px 80px;
    }
}

@media screen and (max-width: 576px) {
    .best-seller-section {
        gap: 32px;
    }
}


@media screen and (max-width: 400px) {
    .best-seller-section {
        gap: 24px;
        padding: 16px;
        max-width: 360px
    }
}


.best-seller-section .best-seller-swiper-container {
    position: relative;
    width: 100%;
}

@media screen and (max-width: 400px) {
    .best-seller-section .best-seller-swiper-container {
        max-width: 360px !important;
    }
}

.best-seller-section .best-seller-swiper {
    width: 100%;
    height: 100%;
}

/*======================== .swiper-wrapper styles ==========================*/
.best-seller-section .swiper-wrapper {
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 1350px) {
    .best-seller-section .swiper-wrapper {
        justify-content: start;
    }
}

/*==========================================================================*/

.best-seller-section .swiper-slide {
    user-select: none;
    cursor: grab;
    text-align: center;
    font-size: 18px;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: fit-content;
}


/*======================= slides dimensions styles =========================*/
/*middle*/
.best-seller-section .swiper-slide {
    width: 200px;
    height: 300px;
}


@media screen and (max-width: 992px) {
    .best-seller-section .swiper-slide {
        width: fit-content;
        height: 300px;
    }


}

@media screen and (max-width: 768px) {
    .best-seller-section .swiper-slide {
        width: auto;
        height: 300px;
    }
}

/*==========================================================================*/

.best-seller-section .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*============================  .custom-button styles ========================*/
.best-seller-section .custom-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

@media screen and (max-width: 1260px) {
    .best-seller-section .custom-button {
        display: flex;
    }
}

/*========================================================================*/

.best-seller-section .custom-button svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.best-seller-section .custom-button.prev {
    left: -50px;
}

.best-seller-section .custom-button.next {
    right: -50px;
}

.best-seller-title {
    font-size: 64px;
    color: #919191;
    font-style: italic;
    font-weight: 600;
    font-family: inter-600;
    white-space: nowrap;
}

@media screen and (max-width: 1200px) {
    .best-seller-title {
        font-size: 56px;
    }
}

@media screen and (max-width: 768px) {
    .best-seller-title {
        font-size: 40px;
    }
}

@media screen and (max-width: 400px) {
    .best-seller-title {
        font-size: 24px;
    }

    .best-seller-section .custom-button.prev {
        left: 0;
    }


    .best-seller-section .custom-button.next {
        right: 0;
    }
}