/* popup.css */
.basuite-popup-overlay{
  position:fixed; inset:0; background:rgba(16,18,27,.55);
  display:flex; align-items:center; justify-content:center; z-index:99999;
  animation: popupFade .18s ease;
}
@keyframes popupFade{ from{opacity:.4} to{opacity:1} }

.basuite-popup-card{
  width:min(520px, calc(100% - 40px));
  background:#fff; border-radius:16px; box-shadow:0 20px 60px rgba(0,0,0,.15);
  border:1px solid #ececf0; padding:22px 20px 16px; text-align:center;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}
.basuite-popup-card h3{ margin:0 0 8px; font-weight:800; letter-spacing:-.01em; font-size:22px; color:#111; }
.basuite-popup-card p{ margin:0 0 14px; color:#374151; }
.basuite-popup-close{
  background:#7a0c21; color:#fff; border:0; padding:10px 16px; border-radius:12px; font-weight:800; cursor:pointer;
}
.basuite-popup-close:hover{ filter:brightness(.95) }
