/* Aviso flotante de la tienda (window.CS.toast) */
.cs-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 16px);
  background: var(--bg-1, #14161c);
  color: var(--ink, #fff);
  border: 1px solid var(--line, rgba(255, 255, 255, 0.12));
  border-left: 3px solid var(--blue, #3b82f6);
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 14px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 9999;
  max-width: min(92vw, 460px);
}

.cs-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.cs-toast.is-ok { border-left-color: #22c55e; }
.cs-toast.is-bad { border-left-color: #ef4444; }

/* Ícono de cuenta en el navbar cuando hay sesión */
.actIcon .accountAvatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.actIcon .accountInitials {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  background: var(--blue, #3b82f6);
  color: #fff;
}
