/* ========================================
   Banner Carousel — Mobile-First
   ======================================== */

/* Banner + Search Widget Container */
.banner-search-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 10px;
    margin: 10px 0;
    align-items: flex-start;
}

.banner-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.banner-carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.banner-slide {
    flex: 0 0 100%;
    padding: 0 10px;
    box-sizing: border-box;
}

.banner-slide img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Navigation Buttons */
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 5px;
    cursor: pointer;
    font-size: 18px;
    z-index: 2;
    transition: background 0.3s ease;
}

.banner-nav:hover {
    background: rgba(0, 0, 0, 0.7);
}

.banner-nav.prev {
    left: 0;
    border-radius: 0 5px 5px 0;
}

.banner-nav.next {
    right: 0;
    border-radius: 5px 0 0 5px;
}

/* Indicators / Dots */
.banner-indicators {
    width: 100%;
    text-align: center;
    padding: 5px 0;
    margin-top: 1px;
}

.banner-indicators .dot {
    display: inline-block;
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #f26722;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.banner-indicators .dot.active {
    background-color: #fff;
    border: 2px solid #f26722;
}

/* ========================================
   RESPONSIVE: TABLET+
   ======================================== */
@media (min-width: 769px) {
    .banner-search-container {
        flex-direction: row;
        gap: 20px;
        padding: 0 20px;
        margin: 20px 0;
    }

    .banner-section {
        width: 60%;
    }

    .banner-slide {
        padding: 0 20px;
    }

    .banner-nav {
        padding: 15px;
        font-size: 24px;
    }

    .banner-indicators {
        padding: 10px 0;
        margin-top: 5px;
    }
}

/* Quick Search Widget (hidden on mobile) */
@media (max-width: 768px) {
    .quick-search-widget {
        display: none;
    }
}
