.ProductImageGallery {
    display: grid;
    gap: 10px;
}

.ProductImageGalleryMainImageWrap {
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ececec;
    background-color: #fff;
}

.ProductImageGalleryMainImage {
    width: 100%;
    height: 100%;
    display: block;
}

.ProductImageGallery--cover .ProductImageGalleryMainImage {
    object-fit: cover;
}

.ProductImageGallery--contain .ProductImageGalleryMainImage {
    object-fit: contain;
}

.ProductImageGalleryThumbnailList {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(56px, 1fr));
    gap: 8px;
}

.ProductImageGalleryThumbnailButton {
    width: 100%;
    padding: 0;
    border-radius: 8px;
    border: 1px solid #dce4ee;
    background-color: #fff;
    overflow: hidden;
    cursor: pointer;
}

.ProductImageGalleryThumbnailButton.IsActive {
    border-color: #7aa7d9;
    box-shadow: 0 0 0 2px rgba(122, 167, 217, 0.18);
}

.ProductImageGalleryThumbnailImage {
    width: 100%;
    height: 56px;
    display: block;
}

.ProductImageGallery--cover .ProductImageGalleryThumbnailImage {
    object-fit: cover;
}

.ProductImageGallery--contain .ProductImageGalleryThumbnailImage {
    object-fit: contain;
}
