.fhpv-video-slide {
	position: relative;
	overflow: hidden;
	background: #f6f6f6;
}

.fhpv-video-trigger {
	position: relative;
	display: block;
	width: 100%;
	cursor: pointer;
}

.fhpv-video-trigger img {
	display: block;
	width: 100%;
	height: auto;
}

.fhpv-auto-cover {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #f6f6f6;
	opacity: 0;
	pointer-events: none;
	transition: opacity .18s ease;
}

.fhpv-auto-cover.is-ready {
	opacity: 1;
}

.fhpv-play-button {
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	display: grid;
	place-items: center;
	width: clamp(62px, 13vw, 88px);
	aspect-ratio: 1;
	transform: translate(-50%, -50%);
	border: 2px solid rgba(255,255,255,.92);
	border-radius: 50%;
	background: rgba(230,0,126,.9);
	box-shadow: 0 8px 28px rgba(0,0,0,.26);
	transition: transform .18s ease, background .18s ease;
}

.fhpv-video-trigger:hover .fhpv-play-button,
.fhpv-video-trigger:focus-visible .fhpv-play-button {
	transform: translate(-50%, -50%) scale(1.06);
	background: #e6007e;
}

.fhpv-play-button > span {
	width: 0;
	height: 0;
	margin-left: 6%;
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
	border-left: 19px solid #fff;
}

.fhpv-video-label {
	position: absolute;
	z-index: 3;
	right: 14px;
	bottom: 14px;
	padding: 5px 9px;
	border-radius: 999px;
	background: rgba(20,20,20,.76);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .12em;
}

.fhpv-video {
	display: block;
	width: 100%;
	max-height: 76vh;
	background: #000;
}

.fhpv-video[hidden],
.fhpv-video-trigger[hidden] {
	display: none !important;
}

.woocommerce-product-gallery .flex-control-thumbs li.fhpv-video-thumb {
	position: relative;
}

.woocommerce-product-gallery .flex-control-thumbs li.fhpv-video-thumb::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	width: 34px;
	height: 34px;
	transform: translate(-50%, -50%);
	border: 2px solid #fff;
	border-radius: 50%;
	background: rgba(230,0,126,.9);
	box-shadow: 0 2px 10px rgba(0,0,0,.28);
	pointer-events: none;
}

.woocommerce-product-gallery .flex-control-thumbs li.fhpv-video-thumb::after {
	content: '';
	position: absolute;
	top: 50%;
	left: calc(50% + 2px);
	z-index: 3;
	width: 0;
	height: 0;
	transform: translate(-50%, -50%);
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 10px solid #fff;
	pointer-events: none;
}

@media (max-width: 767px) {
	.fhpv-play-button {
		width: 64px;
	}
	.fhpv-video-label {
		right: 10px;
		bottom: 10px;
	}
}
