/* Target mobile screens for Collection/Category pages */
@media (max-width: 768px) {
    /* 1. Force the image container to expand */
    .product-entry__image, 
    .product-card__image, 
    .img-canvas {
        height: 340px !important; /* Adjust this number to match your homepage height */
        min-height: 340px !important;
        display: block !important;
    }

    /* 2. Ensure the actual image fills the new height without distortion */
    .product-entry__image img, 
    .product-card__image img, 
    .img-canvas img {
        height: 100% !important;
        width: 100% !important;
        object-fit: cover !important; /* Keeps the image sharp and filled */
    }

    /* 3. Adjust the card itself to prevent overlapping */
    .product-block, .product-card {
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
    }
}