.productGallery2 {
    width: 100%;
    aspect-ratio: 4 / 3; /* keeps all items perfectly square */
    overflow: hidden;
    position: relative;
}

.productGallery2 img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* fills box without distortion */
    display: block;
}

/* Optional spacing */
.row {
    row-gap: 15px;
}

/* Optional: adjust height feel on very small screens */
@media (max-width: 576px) {
    .productGallery2 {
        aspect-ratio: 4 / 3;
    }
}