/* Video thumb wrapper */
.thumb-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-video-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.product-video-thumb .video-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 3px 6px;
    border-radius: 3px;
    font-size: 12px;
    pointer-events: none;
}

.product-video-thumb .video-badge i {
    font-size: 16px;
    vertical-align: middle;
}

/* Main video cover */
.product-video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-video {
    max-width: 100%;
    max-height: 600px;
    width: 100%;
    height: auto;
    display: block;
}