/* Product Image Display Override - Prevents image cropping */

.wc-block-product-image,
.wc-block-components-product-image {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: #f5f5f5 !important;
    overflow: hidden !important;
    width: 100% !important;
    height: auto !important;
}

.wc-block-product-image img,
.wc-block-components-product-image img,
.wc-block-grid__product-image img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    object-fit: contain !important;
    display: block !important;
}
