.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.category-button {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid #3D4F73;
  color: #3D4F73;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.category-button:hover {
  background: #F2A011;
  color: #080808;
  border-color: transparent;
}

.category-button.current {
  pointer-events: none;
  background: #F0D6A9;
  color: #080808;
  border: none;
}
