/* ── Contenedor del slide de video ── */
.wc-product-video-thumb {
    position: relative;
    cursor: pointer;
    line-height: 0;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wc-product-video-thumb img {
    width: 100%;
    display: block;
}

/* ── Botón play ── */
.wc-video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 52px;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.7);
    transition: color 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    line-height: 1;
}

.wc-product-video-thumb:hover .wc-video-play-btn {
    color: #e05c00;
    transform: translate(-50%, -50%) scale(1.12);
}

/* ── Iframe después de hacer clic ── */
.wc-product-video-thumb iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    border: 0;
}

/* ── MP4 directo ── */
.wc-video-mp4 video {
    width: 100%;
    display: block;
}
