/**
 * Exit-intent popup styles.
 * Most styles are inline in exit-intent.js for portability.
 * This file provides base transition support and print overrides.
 */

/* Smooth overlay fade (handled via JS, but a fallback for reduced-motion users) */
@media (prefers-reduced-motion: reduce) {
  #exit-intent-overlay {
    transition: none !important;
  }
}

/* Ensure popup card is readable on small screens */
@media (max-width: 480px) {
  #exit-intent-overlay > div {
    padding: 32px 24px 28px !important;
  }
  #exit-intent-overlay h2 {
    font-size: 22px !important;
  }
}

/* Don't show popup in print */
@media print {
  #exit-intent-overlay { display: none !important; }
}