.bestsellers__card {
    transform: translateY(0);
    transition: transform .4s ease-in-out;

    &:hover {
        transform: translateY(-12px);
    }
}

.bestsellers__card__priceAndBtn {
    margin-top: 8px;
}

.bestsellers__content del {
    color: #A0A0A0;
    font-weight: 400;
    margin-right: 4px;
}

@media only screen and (max-width: 1440px) {
    .bestsellers .container{
        padding-left: 196px !important;
        padding-right: 196px !important;
    }
}

@media only screen and (max-width: 1300px) {
    .bestsellers .container{
        padding-left: 128px !important;
        padding-right: 128px !important;
    }
}

@media only screen and (max-width: 1100px) {

    .bestsellers__content .wc-block-product-template__responsive {
        grid-template-columns: 1fr 1fr;
    }
    
    .bestsellers .container{
        padding-left: 32px !important;
        padding-right: 32px !important;
    }
}


@media only screen and (max-width: 576px){
    .bestsellers .container {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }



    .bestsellers__heading {
        flex-direction: column;

        h2 {
            padding-top: 0 !important;
            text-align: center;
            margin-bottom: 24px !important;
        }
    }

    .bestsellers__content .wc-block-product-template__responsive {
        grid-template-columns: 1fr;
        grid-gap: 32px !important;
    }


}