/* Exit intent popup - napi 1x, fancy */
#exit-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
#exit-popup-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
#exit-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10001;
  width: 90%;
  max-width: 420px;
  background: #f6f4e8;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.35s, visibility 0.35s;
  padding: 28px 24px;
  text-align: center;
}
#exit-popup-overlay.is-visible #exit-popup {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  visibility: visible;
}
#exit-popup .exit-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: #816f5b;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}
#exit-popup .exit-popup-close:hover {
  background: rgba(129, 111, 91, 0.15);
  color: #5c4a3d;
}
#exit-popup .exit-popup-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #80a640 0%, #6d8f36 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  line-height: 1;
}
#exit-popup .exit-popup-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
#exit-popup h3 {
  margin: 0 0 10px;
  font-size: 20px;
  color: #5c4a3d;
}
#exit-popup p {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.5;
  color: #816f5b;
}
#exit-popup .exit-popup-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #80a640;
  color: #fff !important;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none !important;
  transition: background 0.2s;
}
#exit-popup .exit-popup-btn:hover {
  background: #6d8f36;
  color: #fff !important;
}
@media (max-width: 480px) {
  #exit-popup {
    padding: 24px 20px;
  }
  #exit-popup h3 { font-size: 18px; }
  #exit-popup p { font-size: 13px; }
}
