.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: 0.25rem 0.625rem;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--radius-full);
  white-space: nowrap;
  line-height: 1;
}

/* ─── Event Type ──────────────────────────── */
.badge--oturma {
  background: rgba(208, 20, 21, 0.15);
  color: var(--color-accent);
}

.badge--acik-mikrofon {
  background: rgba(245, 158, 11, 0.15);
  color: var(--color-warning);
}

.badge--videocast {
  background: rgba(99, 102, 241, 0.15);
  color: #818cf8;
}

/* ─── Status ──────────────────────────────── */
.badge--pending {
  background: rgba(245, 158, 11, 0.12);
  color: var(--color-warning);
}

.badge--confirmed {
  background: var(--color-success-dim);
  color: var(--color-success);
}

.badge--rejected {
  background: var(--color-error-dim);
  color: var(--color-error);
}

.badge--waitlisted {
  background: rgba(99, 102, 241, 0.12);
  color: #818cf8;
}

.badge--expired {
  background: var(--color-surface-2);
  color: var(--color-text-faint);
}

/* ─── Capacity Status ─────────────────────── */
.badge--open {
  background: var(--color-success-dim);
  color: var(--color-success);
}

.badge--almost-full {
  background: var(--color-warning-dim);
  color: var(--color-warning);
}

.badge--full {
  background: var(--color-error-dim);
  color: var(--color-error);
}

.badge--closed {
  background: var(--color-surface-2);
  color: var(--color-text-faint);
}

/* ─── Count badge (admin) ─────────────────── */
.badge-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  color: #fff;
  line-height: 1;
}

.badge-count--muted {
  background: var(--color-surface-3);
  color: var(--color-text-muted);
}
