/* ===========================
   BADGES — Système centralisé
   =========================== */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  white-space: nowrap;
  vertical-align: middle;
  background: linear-gradient(135deg, #ff1493, #c0006e);
  color: #fff;
  box-shadow: 0 2px 8px rgba(255, 20, 147, 0.4);
}

.badge svg { flex-shrink: 0; stroke: #fff; }
.badge-popular svg { fill: #fff; }

.badge-premium,
.badge-producer {
  background: linear-gradient(135deg, #facc15, #d4920a);
  box-shadow: 0 2px 8px rgba(250, 204, 21, 0.4);
  color: #1a1200;
}
.badge-premium svg,
.badge-producer svg { stroke: #1a1200; }
