.videogallery-page{
    display: flex;
    width: 100%;
    justify-content: center;
}
.videogallery-page .videogalereya{
    box-sizing: border-box;
    flex-wrap: wrap;
    gap: 70px 70px;
    max-width: 1420px;
    padding: 0px 20px;
    width: 100%;
}

.videogallery-page .product-list {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    gap: 70px 67px;
    max-width: 1420px;
    justify-content: center;
    padding: 0px 20px;
    width: 100%;
}


.videogallery-page .video-item {
    position: relative;
    cursor: pointer;
    border: 1px solid #d8d8d8;
    border-radius: 45px;
    overflow: hidden;
    width: 400px;
    height: 415px;
    flex-shrink: 0;
}

.videogallery-page .video-item video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Плей значок SVG */
.videogallery-page .video-item .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none; 
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0.8;
}

.videogallery-page .video-item:hover .play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}