.categories {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 30px 0 20px;
  flex-wrap: wrap;
}

.category {
  font-size: 16px;
  font-weight: bold;
  padding: 10px 16px;
  border-radius: 5px;
  background: #ffc939;
  color: #000;
  cursor: pointer;
  border: 2px solid #ffc939;
  min-width: 120px;
  text-align: center;
  transition: background 0.2s, color 0.2s, border 0.2s;
}

.category.active,
.category:active {
  color: #fff;
  background: #ffc939;
  border: 2px solid #fff;
}

@keyframes categoryClick {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.category-clicked {
  animation: categoryClick 0.15s ease;
}