/* il·lusiona’t checkout loader */
.il-loader-overlay {
  position: fixed; inset: 0;
  background: rgba(15, 18, 25, 0.56);
  backdrop-filter: blur(2px);
  display: none;
  z-index: 99999;
}
.il-loader-overlay.is-visible { display: flex; align-items: center; justify-content: center; }
.il-loader-card {
  min-width: 280px; max-width: 92vw;
  padding: 22px 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 35px rgba(0,0,0,.25);
  text-align: center;
  font-family: inherit;
}
.il-spinner {
  width: 46px; height: 46px; margin: 0 auto 14px;
  border: 4px solid #e6e6e6; border-top-color: #6a5acd; border-radius: 50%;
  animation: il-spin 0.9s linear infinite;
}
@keyframes il-spin { to { transform: rotate(360deg);} }
.il-title { margin: 0 0 6px; font-size: 16px; font-weight: 600; color: #1a1a1a; }
.il-sub   { margin: 0; font-size: 13px; color: #555; }
/* toque mágico opcional */
.il-loader-card::after { content: "✨"; display:block; margin-top: 8px; opacity:.85; font-size:16px; }
