/**
 * LynaLeta Product Video Gallery — v1.2.2
 */

/* Video slide */
.lpvg-video-slide {
	position: relative;
	overflow: hidden;
	background: #000;
}

.lpvg-video-slide .lpvg-video {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	display: block;
}

/* Thumbnails: only play icon, no layout overrides */
.lpvg-thumb-video {
	position: relative;
}

.lpvg-thumb-video::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 22px;
	height: 22px;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	pointer-events: none;
	z-index: 1;
}

.lpvg-thumb-video::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-38%, -50%);
	z-index: 2;
	border-style: solid;
	border-width: 4px 0 4px 7px;
	border-color: transparent transparent transparent #fff;
	pointer-events: none;
}
