/* === ÜRÜN FİLTRE BUTONLARI (list-group ile uyumlu) === */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 60px;
  margin-bottom: 40px;
  font-family: 'Segoe UI', sans-serif;
}

.filter-buttons .filter-btn {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  color: #333;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-buttons .filter-btn:hover {
  background: #fcce58;
  color: #000;
  transform: translateY(-3px);
}

.filter-buttons .filter-btn.active {
  background: #1f2937;
  color: #fff;
  border-color: #1f2937;
  transform: none;
}

/* Mobil uyum */
@media (max-width: 768px) {
  .filter-buttons {
    gap: 8px;
    margin-top: 40px;
  }

  .filter-buttons .filter-btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}

/* === .list-group ile aynı görünümü korumak için === */
.filter-section {
  border-radius: 12px;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.05),
              0 2px 6px rgba(0, 0, 0, 0.08);
  padding: 1.2rem;
  text-align: center;
}

.filter-section h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 16px;
}
