/* Vignette vidéo dans la galerie produit - version bulle ronde style "note WhatsApp" */

.wc-pvg-gallery-video {
    position: relative;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin: 6px;
    display: inline-block;
}

.wc-pvg-gallery-video a {
    display: block;
    width: 100%;
    height: 100%;
}

.wc-pvg-thumb-inner {
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wc-pvg-play-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    position: relative;
    box-shadow: 0 0 6px rgba(0,0,0,0.6);
}

.wc-pvg-play-icon::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 8px;
    border-style: solid;
    border-width: 8px 0 8px 14px;
    border-color: transparent transparent transparent #fff;
}

/* Modal vidéo */
.wc-pvg-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.wc-pvg-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.7);
}

.wc-pvg-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 960px;
    width: 92%;
    background: #000;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 4px;
}

.wc-pvg-modal-close {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #fff;
    border-radius: 50%;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
}

.wc-pvg-iframe-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.wc-pvg-iframe-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.wc-pvg-html5-video {
    width: 100%;
    height: auto;
}

body.wc-pvg-modal-open {
    overflow: hidden;
}
