:root {
  --font-heading-name: 'Poppins';
  --font-body-name: 'Inter';
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-content.active {
  max-height: 800px;
}

.category-btn.active {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
}
