.wa-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
}
.wa-modal-overlay[hidden] { display: none; }
.wa-modal {
  background: #fff;
  border-radius: 30px;
  padding: 60px 24px 24px 24px;
  width: 90%; max-width: 360px;
  position: relative;
  text-align: center;
}
.wa-modal .btn-primary:hover {color: #3bc0cb; !important}
.wa-close {
  position: absolute; top: 8px; right: 12px;
  background: none; border: none; font-size: 22px; cursor: pointer;
}
.wa-options {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 16px;
}
.wa-option {
  display: block;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
}
.wa-option:hover { background: #1ebe5b; }