.filter-form { display: flex; justify-content: center; margin-bottom: 30px; gap: 10px; }
.filter-controls input, .filter-controls select {
    padding: 10px 15px; border-radius: 8px; border: 1px solid #ccc;
}

/* Sidebar */
.filters-sidebar {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 25px;
    height: fit-content;
}
.filters-sidebar h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: bold;
}
.filter-group {
    margin-bottom: 20px;
}
.filter-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}
.filter-group input, .filter-group select {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

/* Responsive */
@media (max-width: 992px) {
    .products-layout {
        grid-template-columns: 1fr;
    }
    .filters-sidebar {
        width: 100%;
    }
}