/* Keep every storefront product showcase cover on the same square canvas. */
.product-card .product-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .product-card .product-image {
        height: auto;
    }
}
