/* ============================================================
   DOSYA SORUMLULUGU — features-10-chip-row.css
   ------------------------------------------------------------
   NE YAPAR   : Son yenen besinler cip satiri.
   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
   ============================================================ */

/* ============================================================
   CHIP ROW (recent foods)
   ============================================================ */
.chips-row {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 0 14px 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.chips-row::-webkit-scrollbar { display: none; }
.chip {
  flex-shrink: 0;
  height: 30px;
  padding: 0 12px;
  background: var(--bg2);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 99px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text2);
  white-space: nowrap;
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: transform 0.1s, box-shadow 0.1s;
}
.chip:active { background: var(--bg3); transform: scale(0.95); box-shadow: none; }

