/* Listing: keep title, price, button visible; play video over the product image on hover only. */
ul.products li.product:has( .wcpv-loop-data ),
ul.product_list_widget li:has( .wcpv-loop-data ),
.wc-block-grid__product:has( .wcpv-loop-data ) {
	position: relative;
}

ul.products li.product:has( .wcpv-loop-data ) a.woocommerce-LoopProduct-link,
ul.products li.product:has( .wcpv-loop-data ) a.woocommerce-loop-product__link,
.wc-block-grid__product:has( .wcpv-loop-data ) a.wc-block-grid__product-link,
.wc-block-grid__product:has( .wcpv-loop-data ) a.wc-block-components-product-image {
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.wcpv-media-host {
	display: block;
	/* Reduce iOS image double-tap zoom / delay; still allow page scroll. */
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.wcpv-hover-video {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
	display: block;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.2s ease, visibility 0.2s;
}

ul.products li.wcpv-is-hover .wcpv-hover-video,
ul.product_list_widget li.wcpv-is-hover .wcpv-hover-video,
.wc-block-grid__product.wcpv-is-hover .wcpv-hover-video {
	opacity: 1;
	visibility: visible;
}

.wcpv-hover-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
