.best-sellers {
    overflow-x: hidden;
    padding-top: 0rem;
    padding-bottom: 1.7rem;
    background-color: var(--bg-gray-color);
}

.best-sellers__heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.best-sellers__heading h2 {
    font-family: 'Barlow Condensed', sans-serif;
    line-height: 1;
    text-transform: uppercase;
}

.best-sellers-slider {
    overflow: visible;
}

.best-sellers-slider .swiper-slide {
    width: 20rem;
}

@media (min-width: 767px) {
    .best-sellers__heading {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        margin-bottom: 0rem;
    }
}