.filter-section {
  background: var(--light);
  padding: 2rem 1rem;
  border-bottom: 1px solid #eee;
}

.filter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.filter-form select {
  padding: 0.7rem 1rem;
  border-radius: 8px;
  border: 1px solid #ddd;
  min-width: 180px;
  font-size: 0.95rem;
}

.filter-form button {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: var(--light);
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.filter-form button:hover {
  opacity: 0.9;
}

.filter-form .btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.filter-form .btn-secondary:hover {
  background: var(--primary);
  color: var(--light);
  opacity: 1;
}

@media (max-width: 768px) {
  .filter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .filter-form select,
  .filter-form button {
    width: 100%;
  }
}
