/* ==========================================================================
   Conversions UI — Exit-intent modal + Live booking toast
   ========================================================================== */

/* ── EXIT-INTENT MODAL ──────────────────────────────────────────────── */
.bpr-exit {
  position: fixed; inset: 0; z-index: 100000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.bpr-exit.is-open { opacity: 1; pointer-events: auto; }

.bpr-exit-overlay {
  position: absolute; inset: 0;
  background: rgba(8,16,28,.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.bpr-exit-card {
  position: relative;
  width: min(460px, calc(100% - 28px));
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px 22px;
  box-shadow: 0 24px 56px rgba(0,0,0,.32);
  text-align: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  transform: translateY(8px) scale(.98);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.bpr-exit.is-open .bpr-exit-card { transform: translateY(0) scale(1); }

.bpr-exit-close {
  position: absolute; top: 8px; right: 12px;
  background: none; border: none; font-size: 28px;
  color: #888; cursor: pointer; line-height: 1;
  padding: 6px 10px;
}
.bpr-exit-close:hover { color: #1a1a1a; }

.bpr-exit-eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: #fff; background: #e53935; padding: 4px 12px; border-radius: 999px;
  margin-bottom: 14px;
}
.bpr-exit-title {
  font-size: 22px; font-weight: 800; line-height: 1.25; color: #0a1628;
  margin: 0 0 8px;
}
.bpr-exit-sub {
  font-size: 14px; color: #555; line-height: 1.5;
  margin: 0 0 18px;
}
.bpr-exit-form { display: flex; flex-direction: column; gap: 10px; }
.bpr-exit-row { display: flex; gap: 8px; }
.bpr-exit-row input {
  flex: 1; min-width: 0;
  padding: 12px 14px;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color .15s ease;
}
.bpr-exit-row input:focus { border-color: #0095D9; }
.bpr-exit-cta {
  width: 100%;
  background: #e53935;
  color: #fff;
  border: none;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 15px; font-weight: 700; letter-spacing: .3px;
  cursor: pointer;
  transition: background .15s ease, transform .15s ease;
  font-family: inherit;
}
.bpr-exit-cta:hover { background: #c62828; transform: translateY(-1px); }
.bpr-exit-cta:active { transform: scale(.98); }
.bpr-exit-foot {
  margin-top: 14px;
  font-size: 12px; color: #777;
}
.bpr-exit-foot a {
  color: #25D366; font-weight: 700; text-decoration: none;
}
@media (max-width: 480px) {
  .bpr-exit-row { flex-direction: column; }
}

/* ── LIVE BOOKING TOAST ─────────────────────────────────────────────── */
.bpr-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9996;
  display: flex; align-items: center; gap: 12px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 12px;
  padding: 12px 16px 12px 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  max-width: 340px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity .35s ease, transform .35s cubic-bezier(.2,.8,.2,1);
}
.bpr-toast.is-visible { opacity: 1; transform: translateY(0); }
.bpr-toast-close {
  position: absolute; top: 4px; right: 6px;
  background: none; border: none; font-size: 16px;
  color: #999; cursor: pointer; line-height: 1; padding: 4px 6px;
}
.bpr-toast-close:hover { color: #1a1a1a; }
.bpr-toast-icon {
  width: 36px; height: 36px;
  background: #e6f7ec;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #25D366; flex-shrink: 0;
}
.bpr-toast-icon svg { width: 18px; height: 18px; }
.bpr-toast-body { flex: 1; min-width: 0; }
.bpr-toast-title {
  font-size: 13px; color: #1a1a1a; line-height: 1.35;
  font-weight: 500;
}
.bpr-toast-title strong { font-weight: 700; }
.bpr-toast-meta {
  font-size: 11px; color: #888; margin-top: 2px;
  display: flex; align-items: center; gap: 6px;
}
.bpr-toast-meta::before {
  content: ""; display: inline-block;
  width: 6px; height: 6px;
  background: #25D366; border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(37,211,102,.18);
}

@media (max-width: 600px) {
  .bpr-toast {
    bottom: 90px;            /* above sticky mobile CTA bar */
    left: 12px; right: 12px;
    max-width: none;
  }
}
