.list-group {
  background: #fcce58; /* Eskitme beyazımsı */
  padding: 1rem;
  border-radius: 12px;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', sans-serif;
  backdrop-filter: blur(2px);
  border: 1px solid #e0e0e0;
  margin-top: 420px;
}

/* Başlık */
.list-group > .list-group-item:first-child {
  font-weight: 600;
  font-size: 1.1rem;
  background: #ffffff !important;
  color: #333 !important;
  border: none;
  cursor: default;
  pointer-events: none;
}

/* Diğer koleksiyon linkleri */
.list-group-item.list-group-item-action {
  background: transparent;
  color: #444;
  transition: all 0.2s ease-in-out;
  border: none;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #ddd;
  font-weight: normal;
}

.list-group-item.list-group-item-action:last-child {
  border-bottom: none;
}

/* Hover efekti */
.list-group-item.list-group-item-action:hover {
  background: rgba(0, 0, 0, 0.03);
  color: #000;
  padding-left: 1.2rem;
  border-left: 3px solid #888;
}
/* Sadece ProductList sayfasında kategori kutusunu yukarı al */
body.ProductList .col-md-3.mb-3 {
  position: relative;
  margin-top: -380px !important; /* Yukarı çekme miktarı, istersen  -300 / -420 gibi ayarlayabilirsin */
  z-index: 5;
}

/* Ürün kısmını sabit hizaya getir */
body.ProductList .col-md-9 {
  margin-top: 0 !important;
  padding-top: 0 !important;
}