.filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  padding: 20px 0 10px;
  flex-wrap: wrap;
}

.filters button {
  padding: 8px 24px;
  border-radius: 30px;
  border: 1px solid #1a3f34;
  background: transparent;
  color: #8dbfb0;
  font-size: 14px;
  font-family: inherit;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.filters button:hover {
  background: #142e25;
  color: #34d399;
  border-color: #34d399;
}

.filters button.active {
  background: #34d399;
  color: #0a1f1a;
  border-color: #34d399;
  font-weight: 600;
}
