/* Carousel Navigation Arrows */
.carousel-wrapper {
    position: relative;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-left {
    left: 10px;
}

.carousel-btn-right {
    right: 10px;
}

.carousel-btn i {
    font-size: 16px;
    color: #333;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .carousel-btn {
        width: 35px;
        height: 35px;
    }
    
    .carousel-btn-left {
        left: 5px;
    }
    
    .carousel-btn-right {
        right: 5px;
    }
    
    .carousel-btn i {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .carousel-btn {
        width: 30px;
        height: 30px;
    }
    
    .carousel-btn-left {
        left: 5px;
    }
    
    .carousel-btn-right {
        right: 5px;
    }
    
    .carousel-btn i {
        font-size: 12px;
    }
}

/* Disable carousel animation and manual scrolling */
.carousel-track {
    animation: none !important;
    touch-action: none !important;
    -webkit-overflow-scrolling: touch !important;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.carousel-container {
    overflow: hidden !important;
    touch-action: none !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: none !important;
    scroll-behavior: auto !important;
}

.carousel-wrapper {
    overflow: hidden !important;
    touch-action: none !important;
}

/* Prevent dragging on images */
.carousel-track img {
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: none;
}