Skip to content
/* Force upsell holder to always be square on all devices */
.product-upsell__holder {
width: 100%;
aspect-ratio: 1 / 1; /* keeps it square */
overflow: hidden;
display: flex;
align-items: center;
justify-content: center;
}
/* Ensure images fit inside the square */
.product-upsell__holder img,
.product-upsell__holder picture img,
.product-upsell__holder .media img {
width: 100%;
height: 100%;
object-fit: contain; /* keeps full image visible (may show space) */
display: block;
}
/* If your theme/app forces inline sizes, override them */
.product-upsell__holder img[style*="width"],
.product-upsell__holder img[style*="height"] {
width: 100% !important;
height: 100% !important;
}