.ecea-push-prompt {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9998;
  display: none;
  max-width: 360px;
  border: 1px solid rgba(79, 70, 229, .14);
  border-radius: 24px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 70px rgba(15, 23, 42, .18);
  backdrop-filter: blur(16px);
  overflow: hidden;
}
.ecea-push-prompt.is-visible { display: block; }
.ecea-push-prompt__inner { display: flex; gap: 12px; padding: 14px; align-items: flex-start; }
.ecea-push-prompt__icon {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}
.ecea-push-prompt__copy { flex: 1; min-width: 0; }
.ecea-push-prompt__copy strong { display: block; color: #111827; font-size: 15px; line-height: 1.25; margin-bottom: 4px; }
.ecea-push-prompt__copy p { color: #000000 !important; font-size: 13px; line-height: 1.45; margin: 0; }
.ecea-push-prompt__actions { display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap; }
.ecea-push-prompt__btn {
  border: 0;
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.ecea-push-prompt__btn:hover { transform: translateY(-1px); }
.ecea-push-prompt__btn--primary { background: #4f46e5; color: #fff; box-shadow: 0 10px 24px rgba(79, 70, 229, .22); }
.ecea-push-prompt__btn--ghost { background: #f1f5f9; color: #475569; }
.ecea-push-prompt__close {
  border: 0;
  background: transparent;
  color: #94a3b8;
  font-size: 20px;
  line-height: 1;
  padding: 0 2px;
  cursor: pointer;
}
.ecea-push-toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(20px);
  z-index: 9999;
  max-width: min(420px, calc(100vw - 28px));
  border-radius: 999px;
  padding: 11px 16px;
  background: #0f172a;
  color: #fff;
  box-shadow: 0 18px 50px rgba(15, 23, 42, .28);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  font-size: 14px;
  font-weight: 700;
}
.ecea-push-toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
@media (max-width: 575px) {
  .ecea-push-prompt { left: 12px; right: 12px; bottom: 12px; max-width: none; border-radius: 20px; }
  .ecea-push-prompt__inner { padding: 12px; }
  .ecea-push-prompt__copy strong { font-size: 14px; }
  .ecea-push-prompt__copy p { font-size: 12px; }
}
