/* ── Favoriten Chips ── */
.fav-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--whic-border);
  border-radius: 24px;
  padding: 6px 14px;
  font-size: 14px;
  transition: all .2s;
}
.fav-chip .fav-actions { display: flex; gap: 4px; }
.fav-chip .fav-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  padding: 2px;
  color: var(--whic-text-light);
  transition: color .2s;
  line-height: 1;
}
.fav-chip .fav-btn.active { color: var(--whic-green); }
.fav-chip .fav-btn:hover { color: var(--whic-green); }
.fav-chip .fav-remove {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #ccc;
  padding: 2px;
  line-height: 1;
}
.fav-chip .fav-remove:hover { color: var(--whic-red); }

/* ── Favoriten-Gruppen (by Kategorie) ── */
.fav-group { margin-top: 16px; }
.fav-group:first-child { margin-top: 0; }
.fav-group-label { font-size: 11px; font-weight: 700; color: var(--whic-text-light); text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.fav-group-chips { display: flex; flex-wrap: wrap; gap: 8px; }
