/* ==================== BANNER WIDGET SLIDER ==================== */
.fos-banner-widget {
    margin: 0;
    width: 100%;
    position: relative;
}

.fos-banner-slider {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    max-height: 700px;
    overflow: hidden;
}

.fos-banner-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.fos-banner-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.fos-banner-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.fos-banner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons Container */
.fos-banner-buttons {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
    flex-wrap: nowrap;
}

/* Order Button */
.fos-order-scroll {
    background: #C21111 !important;
    color: white !important;
    border: 2px solid #C21111 !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 110px;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.fos-order-scroll:hover {
    background: #a00 !important;
    border-color: #a00 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(194, 17, 17, 0.4);
}

/* Shop Button */
.fos-our-products-btn {
    background: transparent !important;
    color: #C21111 !important;
    border: 2px solid #C21111 !important;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    min-width: 110px;
    z-index: 10;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    white-space: nowrap;
}

.fos-our-products-btn:hover {
    background: #C21111 !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(194, 17, 17, 0.4);
}

/* Banner Dots - Hidden */
.fos-banner-dots {
    display: none !important;
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Desktop */
@media (min-width: 1024px) {
    .fos-banner-slider {
        height: 70vh;
        min-height: 600px;
    }
    
    .fos-banner-buttons {
        bottom: 50px;
        gap: 20px;
    }
    
    .fos-order-scroll,
    .fos-our-products-btn {
        padding: 14px 35px;
        font-size: 1em;
        min-width: 120px;
    }
}

/* Tablet */
@media (max-width: 1023px) and (min-width: 768px) {
    .fos-banner-slider {
        height: 55vh;
        min-height: 450px;
    }
    
    .fos-banner-buttons {
        bottom: 45px;
        gap: 18px;
    }
    
    .fos-order-scroll,
    .fos-our-products-btn {
        padding: 12px 30px;
        font-size: 0.95em;
        min-width: 115px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .fos-banner-slider {
        height: 40vh;
        min-height: 250px;
        max-height: 300px;
    }
    
    .fos-banner-buttons {
        bottom: 30px;
        gap: 12px;
    }
    
    .fos-order-scroll,
    .fos-our-products-btn {
        padding: 10px 25px;
        font-size: 0.9em;
        min-width: 100px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .fos-banner-slider {
        height: 35vh;
        min-height: 200px;
        max-height: 250px;
    }
    
    .fos-banner-buttons {
        bottom: 25px;
        gap: 10px;
        flex-direction: row; /* Always row */
    }
    
    .fos-order-scroll,
    .fos-our-products-btn {
        padding: 9px 20px;
        font-size: 0.85em;
        min-width: 90px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .fos-banner-slider {
        height: 30vh;
        min-height: 180px;
        max-height: 220px;
    }
    
    .fos-banner-buttons {
        bottom: 20px;
        gap: 8px;
    }
    
    .fos-order-scroll,
    .fos-our-products-btn {
        padding: 8px 18px;
        font-size: 0.8em;
        min-width: 80px;
    }
}