/**
 * Global Zone — consistent WooCommerce product gallery frame
 * object-fit: contain; no crop; no stretch; images/Media Library untouched
 */

.single-product .product-images-wrapper .woocommerce-product-gallery .flex-viewport {
	aspect-ratio: 1 / 1;
	height: auto !important;
	background-color: #fff;
}

.single-product .product-images-wrapper .woocommerce-product-gallery .woocommerce-product-gallery__image {
	aspect-ratio: 1 / 1;
	height: auto !important;
	box-sizing: border-box;
}

.single-product .product-images-wrapper .woocommerce-product-gallery .woocommerce-product-gallery__image > a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.single-product .product-images-wrapper .woocommerce-product-gallery .woocommerce-product-gallery__image > a img,
.single-product .product-images-wrapper .woocommerce-product-gallery .woocommerce-product-gallery__image > img:not(.zoomImg) {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none;
	max-height: none;
	margin: 0 auto;
	object-fit: contain;
	object-position: center center;
}

/* Keep WooCommerce image zoom overlay usable */
.single-product .product-images-wrapper .woocommerce-product-gallery .woocommerce-product-gallery__image img.zoomImg {
	object-fit: contain;
	object-position: center center;
}

/* Thumbnails (Electro secondary gallery) — same contain frame */
.single-product .electro-wc-product-gallery .electro-wc-product-gallery__image {
	aspect-ratio: 1 / 1 !important;
	height: auto !important;
	box-sizing: border-box;
	overflow: hidden;
	background-color: #fff;
}

.single-product .electro-wc-product-gallery .electro-wc-product-gallery__image > a {
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.single-product .electro-wc-product-gallery .electro-wc-product-gallery__image img {
	position: absolute;
	inset: 0;
	width: 100% !important;
	height: 100% !important;
	max-width: none;
	max-height: none;
	margin: 0 !important;
	object-fit: contain;
	object-position: center center;
}

/* Fallback classic flex thumbs (if present) */
.single-product .woocommerce-product-gallery .flex-control-thumbs li {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background-color: #fff;
}

.single-product .woocommerce-product-gallery .flex-control-thumbs li img {
	width: 100% !important;
	height: 100% !important;
	object-fit: contain;
	object-position: center center;
}

@media (max-width: 767px) {
	.single-product .product-images-wrapper .woocommerce-product-gallery .flex-viewport,
	.single-product .product-images-wrapper .woocommerce-product-gallery .woocommerce-product-gallery__image,
	.single-product .product-images-wrapper .woocommerce-product-gallery .woocommerce-product-gallery__image > a {
		aspect-ratio: 1 / 1;
	}
}
