.sort-tabs {
  display: flex;
  gap: 12px;
  margin: 20px 0;
}

.sort-tabs a {
  padding: 8px 14px;
  border-radius: 6px;
  background: #eee;
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: 0.2s;
}

.sort-tabs a:hover {
  background: #ddd;
}

.sort-tabs a.active {
  background: #333;
  color: #fff;
}

