/**
 * Uniform WooCommerce product cards (shop, categories, related products).
 */
.woocommerce ul.products li.product {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.woocommerce ul.products li.product .astra-shop-thumbnail-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	width: 100%;
	overflow: hidden;
	margin-bottom: 1em;
	background-color: #fff;
	position: relative;
}

.woocommerce ul.products li.product .astra-shop-thumbnail-wrap > a.woocommerce-loop-product__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
}

.woocommerce ul.products li.product .astra-shop-thumbnail-wrap > a.ast-on-card-button {
	display: block;
	width: auto;
	height: auto;
	position: absolute;
	top: 1em;
	right: 1em;
	left: auto;
}

.woocommerce ul.products li.product .astra-shop-thumbnail-wrap img {
	width: 100%;
	height: 100%;
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	object-position: center;
}

.woocommerce ul.products li.product .astra-shop-summary-wrap {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
}

.woocommerce ul.products li.product .astra-shop-summary-wrap .button {
	margin-top: auto;
}

/**
 * Single product: keep tall equipment photos readable without breaking the gallery slider.
 */
.single-product .woocommerce-product-gallery {
	text-align: center;
}

.single-product .woocommerce-product-gallery__image a {
	display: block;
	background-color: #fff;
}

.single-product .woocommerce-product-gallery__image img {
	display: block;
	width: auto;
	max-width: 100%;
	max-height: min(420px, 50vh);
	height: auto;
	object-fit: contain;
	object-position: center;
	margin-left: auto;
	margin-right: auto;
}

.single-product .woocommerce div.product div.images .flex-control-thumbs {
	margin-top: 1em;
}

@media (max-width: 921px) {
	.single-product .woocommerce-product-gallery__image img {
		max-height: min(360px, 45vh);
	}
}
