.wc-video-gallery {
    width: 100%;
}

.wc-video-main {
    width: 100%;
    margin-bottom: 15px;
}

.wc-video-main video,
.wc-video-main iframe,
.wc-video-main img {
    width: 100%;
    display: block;
}

.wc-video-main iframe {
    aspect-ratio: 16 / 9;
}

.wc-video-thumbnails {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.wc-video-thumb {
    width: 80px;
    height: 80px;
    cursor: pointer;
    border: 2px solid transparent;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.wc-video-thumb.active {
    border-color: #000;
}

.wc-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wc-video-thumb span {
    font-size: 12px;
    font-weight: 700;
}