/* Listings-specific styles extracted from css/styles.css */

/* Filters Sidebar */
.filters-panel {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

/* Mobile Filters Overlay */
.mobile-filters-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1050;
    display: none;
}

.mobile-filters-overlay.open {
    display: block;
}

.mobile-filters-inner {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
}

.mobile-filters-header {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.mobile-filters-body {
    padding: 0.75rem 1rem 1rem;
    overflow-y: auto;
}

/* Hide desktop sidebar filters on small screens */
@media (max-width: 767.98px) {
    .filters-panel-desktop {
        display: none;
    }
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-group h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.filter-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.filter-group input[type="checkbox"] {
    margin-right: 8px;
}

.filter-group input[type="range"] {
    width: 100%;
}