/* ============================================
   MOBILE CAROUSEL FIX - NAVIGATION & INDICATORS
   ============================================ */

/* Add dots/indicators for mobile carousel */
.owl-carousel .owl-dots {
    text-align: center;
    padding: 20px 0 10px;
    margin-top: 20px;
}

.owl-carousel .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: #ddd;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.owl-carousel .owl-dot.active {
    background: #667eea;
    width: 30px;
    border-radius: 10px;
}

.owl-carousel .owl-dot:hover {
    background: #999;
}

/* Mobile Navigation Arrows */
.owl-carousel .owl-nav {
    position: relative;
    margin-top: 20px;
    text-align: center;
}

.owl-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    background: rgba(102, 126, 234, 0.9) !important;
    color: white !important;
    border-radius: 50%;
    font-size: 24px;
    line-height: 50px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    margin: 0 10px;
}

.owl-carousel .owl-nav button:hover {
    background: rgba(102, 126, 234, 1) !important;
    transform: scale(1.1);
}

.owl-carousel .owl-nav button span {
    font-size: 30px;
    line-height: 50px;
}

/* Swipe Indicator for Mobile */
.swipe-indicator {
    display: none;
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #111213 0%, #fbf9fc 100%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    margin: 15px 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

.swipe-indicator i {
    margin: 0 5px;
    animation: slideLeft 1.5s infinite;
}

@keyframes slideLeft {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-5px);
    }
}

/* Show swipe indicator on mobile only */
@media (max-width: 767px) {
    .swipe-indicator {
        display: block;
    }
    
    /* Make sure carousel navigation is visible on mobile */
    .owl-carousel .owl-nav {
        display: block !important;
    }
    
    .owl-carousel .owl-dots {
        display: block !important;
    }
    
    /* Make carousel items easier to swipe */
    .owl-carousel .owl-stage-outer {
        overflow: visible;
    }
    
    .owl-carousel .item {
        cursor: grab;
    }
    
    .owl-carousel .item:active {
        cursor: grabbing;
    }
}

/* Desktop - hide swipe indicator */
@media (min-width: 768px) {
    .swipe-indicator {
        display: none !important;
    }
}

/* Make navigation arrows more visible on mobile */
@media (max-width: 767px) {
    .owl-carousel .owl-nav button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 100;
        width: 45px;
        height: 45px;
        line-height: 45px;
        margin: 0;
        background: rgba(0, 0, 0, 0.7) !important;
    }
    
    .owl-carousel .owl-nav button.owl-prev {
        left: 10px;
    }
    
    .owl-carousel .owl-nav button.owl-next {
        right: 10px;
    }
}

/* Touch-friendly carousel styling */
@media (max-width: 767px) {
    .owl-carousel .item {
        padding: 0 5px;
    }
    
    .owl-carousel .thumb {
        touch-action: pan-y pinch-zoom;
    }
}

/* Item count badge */
.carousel-count {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.carousel-count i {
    margin-right: 5px;
}

/* Show on mobile */
@media (max-width: 767px) {
    .carousel-count {
        display: block;
    }
}

/* Hide on desktop */
@media (min-width: 768px) {
    .carousel-count {
        display: none;
    }
}