.wcvg-video-container {
    aspect-ratio: 1 / 1;
    position: relative;
}

.wcvg-video-container img {
    object-fit: cover;
    height: 100%!important;
    width: 100%;
}

.wcvg-video-player {
    position: relative;
    width: 98%;
    height: 0;
    height:100%;
    margin:auto;
}

.wcvg-video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-play {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.video-play:hover {
    opacity: 0.8;
}

.wcvg-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 10;
}

.wcvg-play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 15px solid white;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 3px;
}

.woocommerce div.product div.images .flex-control-thumbs li {
    display:flex;
}