/* Shared image rules for every storefront theme. Keep the source ratio intact. */
.home-theme-product-card .thumb > a {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1 / 1;
    min-height: 220px;
    overflow: hidden;
    background: #fff;
}

.home-theme-product-card .thumb > a img,
.home-theme-product-card .thumb > a > img,
.home-theme-cart-thumb,
.sth-cart-thumb {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    background: #fff;
}

.home-theme-cart-thumb,
.sth-cart-thumb {
    width: 72px;
    height: 72px;
}

/* Legacy product boxes often have fixed thumbnails; contain avoids portrait crop. */
.firsat-product-box-img img,
.cat-detail-products-box-caturunvitrin-img img {
    object-fit: contain;
    object-position: center;
}

@media (max-width: 575.98px) {
    .home-theme-product-card .thumb > a {
        min-height: 180px;
    }
}
