/* WP Push Notify — No custom popup, only success toast */

.wppush-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(70px);
  z-index: 9999999;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 100px;
  pointer-events: none;
  opacity: 0;
  transition: transform .4s cubic-bezier(.34,1.5,.64,1), opacity .3s ease;
  white-space: nowrap;
  max-width: calc(100vw - 32px);
  text-align: center;
  box-shadow: 0 8px 28px rgba(5,150,105,.35);
  background: linear-gradient(135deg,#059669,#10b981);
  color: #fff;
}
.wppush-toast-show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
