.woo-video-gallery-container {
    margin-top: 40px;
    position: relative;
}

.woo-video-title {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.woo-video-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    scrollbar-width: none;
}

.woo-video-scroll::-webkit-scrollbar {
    display: none;
}

.woo-video-item {
    min-width: 320px;
    max-width: 320px;
    height: 550px;
    flex-shrink: 0;
    border-radius: 18px;
    overflow: hidden;
    background: #000;
    position: relative;
}

.woo-video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

/* Scroll Buttons */

.woo-scroll-btn {
    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    z-index: 99;
    transition: 0.3s;
}

.woo-scroll-btn:hover {
    background: #000;
}

.woo-scroll-left {
    left: -10px;
}

.woo-scroll-right {
    right: -10px;
}

@media(max-width:768px){

    .woo-video-item {
        min-width: 85%;
        max-width: 85%;
        height: 450px;
    }

    .woo-scroll-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}