.cart-best-sells {
    background: linear-gradient(#E6F4F9, #E6F4F900);
    width: 100vw;
    margin-top: 30px;
}

.cart-best-sells > p {
    font-family: "Poppins", sans-serif;
    color: #073B4A;
    font-weight: 600;
    font-size: 16px;
    text-align: left;
    padding: 32px 24px 20px;
    margin-bottom: 0;
}

.cart-best-sells__products {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
    overflow-x: scroll;
    padding-left: 24px;
}

@media screen and (min-width: 768px) {
    .cart-best-sells {
        width: 590px;
    }

    .cart-best-sells > p {
        font-size: 20px;
    }

    .cart-best-sells__products {
        overflow: clip;
    }
}