/* Tablet */
@media (max-width: 991px) {
    .product-card img {
        height: 200px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .product-card img {
        height: 200px;
        /* height: 300px; */
        /* height: auto; */
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .product-card img {
        /* height: auto; */
        max-height: 120px !important;
    }
    .product-title {
        height: auto !important;
    }
    .product-price {
        font-size: 15px;
    }
    .btn-theme {
        padding: 5px 10px;
    }
    .product button {
        text-align: center;
        display: grid;
    }
}

/* very small mobile */
@media (max-width: 320px) {
    .product-card img {
        max-height: 100px !important;
    }
}
