/* ── Стрелки ──────────────────────────────────────────── */

.woocommerce-product-gallery {
    position: relative;
}

/* Стрелки позиционируем внутри flex-viewport — у него есть явная высота */
.woocommerce-product-gallery .flex-viewport {
    position: relative;
}

.bpv-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}

.bpv-arrow:hover {
    background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.25);
}

.bpv-arrow--prev { left: 10px; }
.bpv-arrow--next { right: 10px; }

.bpv-arrow svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #333;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 768px) {
    .bpv-arrow { display: none; }
}

/* ── Видео-слайд ──────────────────────────────────────── */

.bpv-video-slide {
    background: #000;
    position: relative;
}

.bpv-video-slide video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
}

.bpv-video-slide a {
    cursor: default !important;
    pointer-events: none;
}

/* Оверлей с кнопкой Play */
.bpv-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: opacity 0.2s;
}

.bpv-play-overlay.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.bpv-play-btn {
    width: 72px;
    height: 72px;
    background: rgba(0, 0, 0, 0.55);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.15s;
    backdrop-filter: blur(2px);
}

.bpv-play-overlay:hover .bpv-play-btn {
    background: rgba(0, 0, 0, 0.75);
    transform: scale(1.08);
}

.bpv-play-btn svg {
    width: 32px;
    height: 32px;
    fill: #fff;
    margin-left: 4px;
}

/* ── Play-бейдж на миниатюре ──────────────────────────── */

ol.flex-control-thumbs li.bpv-thumb-video {
    position: relative;
}

ol.flex-control-thumbs li.bpv-thumb-video::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3)
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='rgba(0,0,0,0.5)'/%3E%3Cpolygon points='10,8 16,12 10,16' fill='white'/%3E%3C/svg%3E")
        center / 36px no-repeat;
    pointer-events: none;
    border-radius: 2px;
}
