/* Horizontal Slider Styles */
.horizontal-slider-section {
    position: relative;
    overflow: hidden;
    background: #1e0a3d;
    max-height: 500px;
    padding: 60px 0;
}


.horizontal-slider-outer {
    width: 100%;
    max-height: 400px;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
    transform: rotate(-2deg);
}

.horizontal-slider-outer::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.horizontal-slider {
    display: flex;
    gap: 2rem;
    height: 100%;
    will-change: transform;
}

.slider-img {
    max-height: 250px;
    height: 250px;
    border-radius: 2rem;
    border: 7px solid rgba(255, 255, 255, 0.25) !important;
    background: rgba(255, 255, 255, 0.10);
    box-shadow: 0 4px 24px 0 rgba(30, 10, 61, 0.10);
    flex-shrink: 0;
    width: auto;
    user-select: none;
    /* Prevent image selection */
    -webkit-user-drag: none;
    /* Prevent drag on Safari */
}

/* Mobile responsive for slider images */
@media (max-width: 991px) {
    .horizontal-slider-outer {
        display: none !important;
    }

    .slider-img {
        max-height: 180px;
        height: 180px;
        border-radius: 1.2rem;
        border-width: 7px !important;
    }
}

.mobile-only-spacer {
    display: none !important;
}

@media (max-width: 991px) {
    .mobile-only-spacer {
        display: block !important;
        height: 2.5rem;
    }
}
