/* ── Overlay fixe sur body ── */
.pv-overlay {
    position: fixed; /* calculé via JS getBoundingClientRect */
    z-index: 9999;
    background: #000;
    overflow: hidden;
}

/* Iframe responsive (YouTube/Vimeo) */
.product-video-responsive {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
}
.product-video-responsive iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    border: 0;
}

/* Vidéo directe MP4 */
.pv-overlay video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    display: block;
}

/* ── Bouton Vidéo ── */
.pv-btn-video {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 8px;
    padding: 5px 12px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    color: #333;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: border-color .2s, color .2s, background .2s;
    line-height: 1;
    width: 100%;
    box-sizing: border-box;
}
.pv-btn-video svg { flex-shrink: 0; }
.pv-btn-video:hover { border-color: #e63946; color: #e63946; }
.pv-btn-video--active {
    background: #e63946;
    border-color: #e63946;
    color: #fff !important;
}
