.video-slide {
    position: relative;
    background-color: #BDDBFF;
    cursor: pointer;
}

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

.video-play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 74px;
    height: 74px;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(8px);
    box-shadow: 0 12px 34px rgba(74, 96, 122, 0.2);
    cursor: pointer;
    z-index: 6;
    transition: transform 0.22s ease, background 0.22s ease;
}

.video-play-button::before {
    content: "";
    position: absolute;
    left: 29px;
    top: 22px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 22px solid rgba(255, 255, 255, 0.92);
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.05);
    background: rgba(255, 255, 255, 0.38);
}

.video-slide.is-playing .video-play-button {
    display: none;
}

@media (max-width: 768px) {
    .video-play-button {
        width: 64px;
        height: 64px;
    }

    .video-play-button::before {
        left: 25px;
        top: 19px;
        border-top-width: 13px;
        border-bottom-width: 13px;
        border-left-width: 19px;
    }
}
