.filters-sidebar {
    background: var(--surface-white);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 90px;
    /* Below Navbar */
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.btn-text {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
}

.btn-text:hover {
    color: var(--primary);
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

/* Checkbox Styling */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkbox-item {
    font-weight: 400 !important;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.checkbox-item input {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
}

/* Range Slider */
input[type=range] {
    width: 100%;
    accent-color: var(--primary);
}

.price-display {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.highlight-option {
    color: #8b5cf6 !important;
    font-weight: 500 !important;
}

.badgetext {
    display: flex;
    align-items: center;
    gap: 6px;
}

.checkbox-item input[value="womenOnly"] {
    accent-color: #8b5cf6;
}