/* =============================================================================
   Single Product — Editorial Gallery Layout
   File: woocommerce/assets/css/single-product.css (child theme)
   ============================================================================= */

.product-gallery-editorial,
.product-gallery-editorial * {
	box-sizing: border-box;
}

/* Full width, no float */
.woocommerce div.product div.images.product-gallery-editorial {
	width: 100%;
	max-width: 100%;
	float: none;
}

/* Wrapper: vertical stack of rows */
.product-gallery-editorial .woocommerce-product-gallery__wrapper {
	display: flex;
	flex-direction: column;
	gap: 4px;
	width: 100%;
	transform: none;
	white-space: normal;
}

/* Each row: 2-column grid */
.product-gallery-editorial .pge-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4px;
	width: 100%;
}

/* Cell */
.product-gallery-editorial .pge-cell {
	aspect-ratio: 3 / 4;
	overflow: hidden;
	background: #f9f8f6;
	min-width: 0;
	position: relative;
}

/* Image wrapper */
.product-gallery-editorial .pge-cell .pge-wc-image,
.product-gallery-editorial .pge-cell .pge-wc-image a {
	display: block;
	width: 100%;
	height: 100%;
}

/* Image */
.product-gallery-editorial .pge-cell img {
	display: block;
	width: 100%;
	height: 100%;
	max-width: none;
	object-fit: contain;
	object-position: center;
	padding: 6%;
	transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-gallery-editorial .pge-cell:hover img {
	transform: scale(1.03);
}

/* Empty placeholder */
.product-gallery-editorial .pge-cell--empty {
	pointer-events: none;
}

/* Responsive */
@media ( max-width: 640px ) {
	.product-gallery-editorial .pge-row {
		grid-template-columns: 1fr;
	}
}