/* =====================================================
   FILTERI – konačna forsirana verzija (Banny)
   ===================================================== */
.banny-filters-bar {
    max-width: 1400px;
    margin: 0 auto 30px auto !important;
    background: #fff !important;
    border-radius: 20px !important;
    padding: 6px 12px !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04) !important;
    border: 1px solid #eef2f8 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 6px 12px !important;
}

.filters-top-row {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 12px !important;
}

.filter-group {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    background: #f8fafc !important;
    padding: 4px 10px !important;
    border-radius: 40px !important;
    border: 1px solid #eef2f8 !important;
    white-space: nowrap !important;
}

.filter-label {
    font-weight: 500 !important;
    font-size: 13px !important;
    color: #2d3639 !important;
}

.banny-filter-select, .orderby {
    padding: 5px 22px 5px 8px !important;
    border-radius: 30px !important;
    border: 1px solid #dce4e8 !important;
    background: #fff !important;
    font-size: 13px !important;
    cursor: pointer !important;
    appearance: none !important;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="12" viewBox="0 0 12 8"><path fill="%23666" d="M6 8L0 0h12z"/></svg>') !important;
    background-repeat: no-repeat !important;
    background-position: right 8px center !important;
}

.price-slider-group {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 4px !important;
}
.price-range-display {
    font-size: 11px !important;
    color: #5f7d85 !important;
}
#price-slider {
    width: 180px !important;
    margin: 0 !important;
}
.ui-slider .ui-slider-handle {
    background: #1e7b8b !important;
    border: none !important;
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    top: -4px !important;
}
.ui-slider .ui-slider-range {
    background: #cbe7eb !important;
}

.button-group {
    margin-left: auto !important;
    display: flex !important;
    gap: 12px !important;
}
/* Dugmad – potpuno identična (forsirano) */
.apply-filters-btn, .reset-filters-btn {
    display: inline-block !important;
    background: #fff !important;
    border: 1px solid #dce4e8 !important;
    border-radius: 40px !important;
    padding: 6px 18px !important;
    font-size: 13px !important;
    font-family: inherit !important;
    font-weight: normal !important;
    text-decoration: none !important;
    text-align: center !important;
    cursor: pointer !important;
    line-height: 1.2 !important;
    color: #2d3639 !important;
    transition: all 0.2s !important;
    box-sizing: border-box !important;
    -webkit-appearance: none !important;
}
.apply-filters-btn:hover, .reset-filters-btn:hover {
    background: #1e7b8b !important;
    color: #fff !important;
    border-color: #1e7b8b !important;
}

/* Responziv */
@media (max-width: 1024px) {
    .banny-filters-bar {
        max-width: 100% !important;
    }
}
@media (max-width: 768px) {
    .banny-filters-bar {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .filters-top-row {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    .filter-group {
        justify-content: space-between !important;
        white-space: normal !important;
    }
    .price-slider-group {
        align-items: stretch !important;
    }
    #price-slider {
        width: 100% !important;
    }
    .button-group {
        margin-left: 0 !important;
        justify-content: space-between !important;
    }
}