.single-row-gallery {
    flex-wrap: nowrap !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 15px;
    /* Hide scrollbar for Firefox and IE/Edge */
    scrollbar-width: none; 
    -ms-overflow-style: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.single-row-gallery::-webkit-scrollbar {
    display: none;
}

.gallery-scroll-wrapper {
    position: relative;
    margin-bottom: 15px;
}

.gallery-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.gallery-scroll-btn:hover {
    background: rgba(0, 0, 0, 0.9);
}

.gallery-scroll-btn.left-btn {
    left: -15px;
}

.gallery-scroll-btn.right-btn {
    right: -15px;
}

.gallery-smooth-scroll {
    scroll-behavior: smooth;
}