/* ============================================================
   DOSYA SORUMLULUGU — features-12-meal-group.css
   ------------------------------------------------------------
   NE YAPAR   : Ogun grubu basligi ve satirlari.
   KAYNAK     : v3.12.0'da bolundu — kurallar birebir tasindi,
                hicbir kural yeniden yazilmadi veya siralanmadi.
   SIRA       : index.html'deki <link> sirasi kaskadi belirler.
                Bu dosyanin sirasini DEGISTIRME.
   ------------------------------------------------------------
   Tam dosya listesi ve sira: BAGIMLILIK-HARITASI.md
   ============================================================ */

/* ============================================================
   MEAL GROUP
   ============================================================ */
.meal-group { margin-bottom: 6px; }
.meal-group-header {
  font-size: 11px;
  font-weight: 600;
  color: var(--text3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 0 4px;
}
.food-item {
  display: flex;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  gap: 8px;
  transition: background 0.1s;
}
.food-item:last-child { border-bottom: none; }
.food-name { flex: 1; font-size: 14px; font-weight: 600; color: var(--text); }
.food-kcal { font-size: 13px; font-weight: 700; color: var(--text2); font-family: 'JetBrains Mono', monospace; }
.food-del  { font-size: 14px; color: var(--text3); width: 28px; text-align: center; padding: 4px; cursor: pointer; opacity: 0.6; transition: opacity 0.15s; }
.food-del:active { opacity: 1; }

