@media (max-width: 767px){
/* stop the wrapper from cropping */
.product-gallery,
.product-gallery-slides,
.product-gallery-slides-item {
height: auto !important;
max-height: none !important;
overflow: visible !important;
}
/* force the image to show fully (no crop) */
.product-gallery-slides-item > img.product-gallery-slides-item-image {
width: 100% !important;
height: auto !important; /* critical */
object-fit: contain !important; /* critical */
object-position: 50% 50% !important;
display: block !important;
}
/* squarespace zoom duplicate also needs it */
.product-image-zoom-duplicate img {
object-fit: contain !important;
width: 100% !important;
height: auto !important;
}
}