/* Pastilla de plan (misma en todas las páginas): fondo oscuro, borde y glow dorado o azul */

.ekon-plan-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.95rem 0.42rem 0.65rem;
  border-radius: 9999px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(8px, 1.9vw, 10px);
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  line-height: 1.15;
  border: 1px solid transparent;
  background: #0c0a08;
  box-sizing: border-box;
  max-width: 100%;
}

.ekon-plan-pill__icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  display: block;
}

.ekon-plan-pill__text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: min(72vw, 320px);
}

.ekon-plan-pill--business {
  border-color: #a67c2a;
  color: #f7f2e8;
  box-shadow:
    0 0 0 1px rgba(184, 134, 11, 0.2),
    0 0 20px -2px rgba(184, 134, 11, 0.55),
    0 0 36px -8px rgba(139, 107, 35, 0.35);
}

.ekon-plan-pill--essential {
  border-color: #3d7ea6;
  color: #e8f4fc;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.18),
    0 0 20px -2px rgba(56, 189, 248, 0.45),
    0 0 36px -8px rgba(30, 120, 180, 0.25);
}

.ekon-plan-pill--inactive {
  border-color: rgba(220, 80, 80, 0.55);
  color: #fecaca;
  box-shadow: 0 0 16px -4px rgba(239, 68, 68, 0.35);
}

.ekon-plan-pill--loading {
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.42);
  box-shadow: none;
}
