/* ========== CAROUSEL ARROW STYLES ========== */

/* Banner Carousel Arrows */
.banner-container {
    position: relative;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: white;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow i {
    font-size: 1.5rem;
    color: #dc3545;
}

.carousel-arrow-left {
    left: 16px;
}

.carousel-arrow-right {
    right: 16px;
}

/* Category Carousel Arrows */
.category-container {
    position: relative;
    display: flex;
    align-items: center;
}

.category-arrow {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin: 0 8px;
}

.category-arrow:hover {
    background: #f8f9fa;
    border-color: #dc3545;
    transform: scale(1.1);
}

.category-arrow i {
    font-size: 1.2rem;
    color: #6c757d;
}

.category-arrow:hover i {
    color: #dc3545;
}

.category-scroll {
    flex: 1;
    overflow-x: auto;
    scroll-behavior: smooth;
}

/* Hide arrows on very small screens if needed */
@media (max-width: 480px) {
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-arrow i {
        font-size: 1.2rem;
    }

    .carousel-arrow-left {
        left: 8px;
    }

    .carousel-arrow-right {
        right: 8px;
    }
}