/* bikinime: video preview в карточках товара */

.thumb.has-video-preview {
    position: relative;
}

.thumb.has-video-preview .bm-video-preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: transparent;
    opacity: 0;
    transition: opacity .2s ease;
    pointer-events: none;
    z-index: 2;
}

.thumb.has-video-preview.bm-video-active .bm-video-preview {
    opacity: 1;
}

/* маленький индикатор «есть видео» в углу — не критично, но даёт визуальный hint */
.thumb.has-video-preview::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(0, 0, 0, .5) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M8 5v14l11-7z'/></svg>") center/12px no-repeat;
    z-index: 3;
    pointer-events: none;
    opacity: .85;
    transition: opacity .2s ease;
}

.thumb.has-video-preview.bm-video-active::after {
    opacity: 0;
}
