/* Minimal popup + hearts only. No story and no separate QR block. */
.wow-toast {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9999999 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 22px !important;
  background: rgba(46,39,33,0.22) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
}

.wow-toast.show {
  display: flex !important;
}

.wow-toast-card {
  position: relative !important;
  width: min(440px, 100%) !important;
  background: #fffdf9 !important;
  border: 1px solid var(--line, #eaded0) !important;
  border-radius: 32px !important;
  padding: 34px 28px !important;
  text-align: center !important;
  box-shadow: 0 28px 90px rgba(64,42,28,0.24) !important;
  animation: wowPop 0.34s ease both !important;
}

.wow-toast-icon {
  font-size: 42px !important;
  margin-bottom: 10px !important;
}

.wow-toast-card h3 {
  font-size: 42px !important;
  line-height: 1 !important;
  margin: 0 0 12px !important;
}

.wow-toast-card p {
  color: var(--muted, #75685e) !important;
  margin: 0 !important;
}

.wow-toast-close {
  position: absolute !important;
  top: 12px !important;
  right: 14px !important;
  width: 34px !important;
  height: 34px !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: #fff8f1 !important;
  color: var(--accent-dark, #6d4635) !important;
  font-size: 24px !important;
  line-height: 1 !important;
  cursor: pointer !important;
}

.wow-heart {
  position: fixed !important;
  z-index: 9999998 !important;
  bottom: 14vh !important;
  left: 50% !important;
  pointer-events: none !important;
  font-size: 22px !important;
  animation: wowHeartFloat 2.7s ease-out forwards !important;
}

@keyframes wowPop {
  from { opacity: 0; transform: translateY(18px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes wowHeartFloat {
  0% { opacity: 0; transform: translate(-50%, 0) scale(0.8) rotate(0deg); }
  15% { opacity: 1; }
  100% { opacity: 0; transform: translate(calc(-50% + var(--x, 0px)), -180px) scale(1.25) rotate(var(--r, 12deg)); }
}
