/* Mobile Product Card Styling */

@media (max-width: 767px) {
    /* Increase product card height */
    .vertical-product-card {
        height: auto !important;
        margin-bottom: 20px !important;
    }

    /* Make product thumbnail consistent */
    .vertical-product-card .thumbnail {
        height: 180px !important; /* Fixed height for consistency */
        min-height: 180px !important;
        max-height: 180px !important;
        padding: 12px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        background: #f8f9fa !important;
        border-radius: 12px !important;
    }

    /* Make product images consistent */
    .vertical-product-card .thumbnail img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        border-radius: 8px !important;
        transition: transform 0.3s ease !important;
    }

    /* Adjust card content padding */
    .vertical-product-card .card-content {
        padding: 15px !important;
    }

    /* Make product title larger */
    .vertical-product-card .card-title {
        font-size: 16px !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
    }

    /* Make price larger */
    .vertical-product-card .price {
        font-size: 18px !important;
        margin-bottom: 15px !important;
    }

    /* Adjust add to cart section */
    .vertical-product-card .d-flex.align-items-center.mt-3 {
        margin-top: 15px !important;
    }
}
