/* ====================================================
 * WooCommerce Product Video Gallery - Frontend Styles
 * ==================================================== */

.wcpvg-video-slide {
    position: relative;
}

.wcpvg-video-figure {
    position: relative !important;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.wcpvg-video-poster {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* 主图上的播放按钮 */
.wcpvg-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    z-index: 5;
    pointer-events: none;
    transition: transform 0.25s ease;
}
.wcpvg-play-overlay svg {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}
.wcpvg-video-figure:hover .wcpvg-play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

/* 缩略图上的小播放按钮 */
.wcpvg-thumb-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 26px;
    height: 26px;
    z-index: 2;
    pointer-events: none;
    transition: transform 0.2s ease;
}
.wcpvg-thumb-play-overlay svg {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.5));
}
.wcpvg-video-thumb:hover .wcpvg-thumb-play-overlay {
    transform: translate(-50%, -50%) scale(1.15);
}
.wcpvg-video-thumb {
    position: relative;
}

/* 播放器容器 */
.wcpvg-player-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wcpvg-player {
    width: 100%;
    height: 100%;
    max-width: 100%;
    display: block;
}
.wcpvg-player-file {
    object-fit: contain;
    background: #000;
}
.wcpvg-player-iframe-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}
.wcpvg-player-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.wcpvg-video-figure.wcpvg-playing .wcpvg-video-poster,
.wcpvg-video-figure.wcpvg-playing .wcpvg-play-overlay {
    visibility: hidden;
}

/* 屏蔽视频幻灯片上的 zoom 放大镜 */
.wcpvg-video-slide .zoomImg,
.wcpvg-video-slide .woocommerce-product-gallery__trigger {
    display: none !important;
}

@media (max-width: 768px) {
    .wcpvg-play-overlay { width: 64px; height: 64px; }
    .wcpvg-thumb-play-overlay { width: 20px; height: 20px; }
}
