.gallery-video-thumb {
    position: relative;
    width: 70px;
    height: 70px;
    border: 1.5px solid var(--border, #ddd);
    border-radius: var(--radius-sm, 4px);
    cursor: pointer;
    background-size: cover;
    background-position: center;
    transition: border-color 0.2s ease;
}

.gallery-video-thumb:hover,
.gallery-video-thumb.active {
    border-color: var(--primary, #d32f2f);
}

.gallery-video-thumb .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
    pointer-events: none;
}

.product-gallery-video-player {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border: 0;
}
