.cgt-product-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 8px;
	background: #000;
}
.cgt-main-video-wrap {
	width: 100%;
}
.cgt-main-video {
	aspect-ratio: 1 / 1;
	border-radius: 0;
}

/* ---------- Hover-to-play thumbnails on shop/category listing pages ---------- */
.cgt-hover-video-wrap {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	border-radius: 8px;
}
.cgt-hover-video-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.cgt-hover-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.2s ease;
	pointer-events: none;
}
.cgt-hover-video-wrap.cgt-video-playing .cgt-hover-video {
	opacity: 1;
}
