/* product-video.css */

/* ===== Thumbnail box (.woocommerce-product-gallery div er ভেতরেই, last e bosbe) ===== */
.pv-video-box {
    position: absolute;
    cursor: pointer;
    overflow: hidden;
    border-radius: 6px;
    line-height: 0;
    bottom: 68px;
    right: 5px;
    z-index: 2;
    width: 80px;
}
.pv-video-box img {
	width: 100%;
	height: auto;
	display: block;
	transition: transform 0.3s ease;
}

.pv-video-box:hover img {
	transform: scale(1.03);
}

/* Play button (thumbnail er upore center e) */
.pv-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    transform: translate(-50%, -50%);
    background: rgb(0 0 0 / 50%);
    border-radius: 50%;
    transition: background 0.25s ease, transform 0.25s ease;
}
.pv-play-btn::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 55%;
	transform: translate(-50%, -50%);
	border-style: solid;
	border-width: 12px 0 12px 20px;
	border-color: transparent transparent transparent #fff;
}
.pv-video-box:hover .pv-play-btn {
	background: rgba(0, 0, 0, 0.75);
	transform: translate(-50%, -50%) scale(1.08);
}

/* ===== Popup overlay ===== */
.pv-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 999999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, background 0.3s ease;
}
.pv-overlay.pv-active {
	background: rgba(0, 0, 0, 0.85);
	opacity: 1;
	visibility: visible;
}

/* Popup box - width/height JS diye set hoy (video ratio onujaiyi) */
.pv-popup {
	position: relative;
	transform: scale(0.9);
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.pv-overlay.pv-active .pv-popup {
	transform: scale(1);
	opacity: 1;
}

/* Iframe wrapper - popup er pura jaiga jure thakbe */
.pv-iframe-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #000;
}
.pv-iframe-wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

/* Close button - screen er fixed jaigay thakbe, popup je onujaiyi size hok na keno */
.pv-close-btn {
    position: fixed;
    top: -34px;
    right: 0px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 1000000;
}
.pv-close-btn::before,
.pv-close-btn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 3px;
	background: #fff;
}
.pv-close-btn::before {
	transform: rotate(45deg);
}
.pv-close-btn::after {
	transform: rotate(-45deg);
}

/* Popup open thakle background scroll bondho */
body.pv-no-scroll {
	overflow: hidden;
}