/* This code makes the product image container a square */
.s-product-card__image {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background-color: #f9f9f9; /* Optional: A light background color */
}

/* This ensures the image itself fills the square without distortion */
.s-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}