@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Montserrat:wght@600;700;800&display=swap');

:root {
  --brand: #246bfd;
  --brand-deep: #1a56d4;
  --brand-light: #eaf1ff;
  --pink: #ed126f;
  --pink-deep: #c80d5c;
  --dark: #010101;
  --ink: #1a1a2e;
  --muted: #5e6578;
  --light: #f7f7f7;
  --white: #ffffff;
  --line: #e2e6ef;
  --font: 'Poppins', sans-serif;
  --font-alt: 'Montserrat', sans-serif;
  --radius-pill: 50px;
  --radius-card: 16px;
  --shadow-card: 0 12px 48px rgba(0, 0, 0, 0.12);
  --max-w: 1180px;
  --transition: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--brand); text-decoration: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 8px; top: 8px; z-index: 100; background: var(--white); padding: 10px; border-radius: 8px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(20px); }
.reveal.is-visible { animation: fadeUp 0.65s var(--transition) forwards; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .reveal.is-visible { animation: none; }
}

/* ── Promo ribbon ── */
.promo-ribbon {
  background: linear-gradient(90deg, var(--pink) 0%, #ff3d8a 100%);
  color: var(--white);
  text-align: center;
  padding: 12px 16px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.promo-ribbon strong { font-weight: 800; }

/* ── Nav ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.topbar__logo { height: 48px; width: auto; }
.topbar__right { display: flex; align-items: center; gap: 16px; }
.topbar__wa { font-size: 13px; color: var(--muted); font-weight: 500; }
@media (max-width: 640px) { .topbar__wa span { display: none; } }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 15px 28px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s var(--transition), background 0.2s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.2;
}
.btn:active { transform: scale(0.98); }
.btn--primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(36, 107, 253, 0.35);
}
.btn--primary:hover { background: var(--brand-deep); }
.btn--pink {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(237, 18, 111, 0.3);
}
.btn--pink:hover { background: var(--pink-deep); }
.btn--ghost {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--block { width: 100%; }
.btn--sm { padding: 11px 20px; font-size: 14px; }
.btn--lg { padding: 17px 32px; font-size: 17px; }
.btn--with-icon {
  gap: 10px;
}
.btn__icon {
  flex: 0 0 auto;
  transition: transform 0.2s var(--transition);
}
.btn--with-icon:hover .btn__icon {
  transform: translateX(2px);
}
.btn--pink .btn__icon {
  transform: none;
}
.btn--pink.btn--with-icon:hover .btn__icon {
  transform: translateY(-1px);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 600px;
  height: auto;
  display: flex;
  align-items: center;
  overflow: visible;
  padding: 36px 0 44px;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__media picture {
  position: absolute;
  inset: 0;
  display: block;
}
.hero__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.45) contrast(1.08);
}
/* Wide screens: taller photo area, panel stays inside with same breathing room */
@media (min-width: 1200px) {
  .hero {
    min-height: 680px;
    height: auto;
    max-height: none;
    padding: 48px 0 56px;
    align-items: center;
  }
  .hero__photo {
    object-position: 68% 42%;
  }
}
@media (min-width: 1600px) {
  .hero {
    min-height: 740px;
    padding: 56px 0 64px;
  }
  .hero__photo {
    object-position: 68% 45%;
    filter: saturate(1.4) contrast(1.08);
  }
  .section#plans {
    padding-top: 64px;
  }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(255, 244, 250, 0.28) 0%, rgba(235, 242, 255, 0.14) 36%, rgba(255, 255, 255, 0.04) 62%, rgba(36, 107, 253, 0.05) 100%);
}
.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero__panel {
  max-width: 520px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(9, 29, 72, 0.16);
  border-radius: 24px;
  padding: 28px 28px 24px;
  box-shadow: 0 26px 70px rgba(11, 42, 112, 0.2), 0 8px 24px rgba(237, 18, 111, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: visible;
}

@media (min-width: 960px) {
  .hero__panel { padding: 32px 34px 28px; max-width: 560px; }
}

/* Tablet zone (~700-900px): make panel narrower so it fits */
@media (max-width: 959px) and (min-width: 768px) {
  .hero { min-height: 0; padding: 28px 0 36px; }
  .hero__panel { max-width: 440px; padding: 24px 24px 22px; }
  .hero__panel .hero__line { font-size: 1.4rem; }
  .hero__free { font-size: 3rem; }
  .hero__badges img { height: 80px; }
}

/* Mobile hero */
@media (max-width: 767px) {
  .hero {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    padding: 0 0 24px;
  }
  .hero__media {
    position: relative;
    width: 100%;
    height: 56vw;
    min-height: 240px;
    max-height: 340px;
    flex-shrink: 0;
  }
  .hero__photo {
    left: 0;
    transform: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% 25%;
  }
  .hero__media picture {
    position: relative;
    inset: auto;
    width: 100%;
    height: 100%;
  }
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.6) 78%, rgba(255, 255, 255, 1) 100%);
  }
  .hero__panel {
    position: relative;
    z-index: 2;
    margin: -32px 16px 0;
    padding: 24px 20px 22px;
    text-align: center;
    max-width: 100%;
  }
  .hero__exclusive {
    justify-content: center;
  }
  .hero h1 {
    text-align: center;
  }
  .hero__sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__features {
    text-align: left;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__features li {
    justify-content: flex-start;
  }
  .hero__badges {
    justify-content: center;
  }
  .hero__cta-note {
    text-align: center;
  }
  .topbar__wa svg {
    width: 28px;
    height: 28px;
  }
  .topbar__wa {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  /* Plans centered on mobile */
  .section h2 { text-align: center; }
  .section__lead { text-align: center; margin-left: auto; margin-right: auto; }
  .plan-card { text-align: center; align-items: center; }
  .plan-card__title { text-align: center; }
  .plan-card__price { text-align: center; }
  .plan-card__blurb { text-align: center; }
}

.hero__exclusive {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #153474;
  background: transparent;
  padding: 0;
  margin-bottom: 14px;
}
.hero__exclusive::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, #153474 0%, #246bfd 100%);
  border-radius: 999px;
}

.hero h1 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.05;
  color: var(--dark);
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.48);
}
.hero__line {
  display: block;
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  font-weight: 600;
}
.hero__free {
  display: block;
  font-size: clamp(3.4rem, 9vw, 5.4rem);
  font-weight: 800;
  color: var(--pink);
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 4px 0 2px;
  text-shadow: 0 8px 18px rgba(237, 18, 111, 0.3), 0 1px 0 rgba(120, 5, 56, 0.2);
}
.hero__after-free {
  display: block;
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  font-weight: 700;
  color: var(--brand);
}
.hero__sub {
  margin-top: 14px;
  color: var(--ink);
  font-size: 1.02rem;
  max-width: 42ch;
  line-height: 1.55;
}
.hero__features {
  list-style: none;
  margin: 20px 0 22px;
  display: grid;
  gap: 10px;
}
.hero__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.4;
}
.hero__features li svg { flex-shrink: 0; margin-top: 1px; }
.hero__cta-note {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-top: 10px;
}
.hero__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.hero__badges img {
  height: 96px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* ── Checkout widget (gift only in hero) ── */
.checkout {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.checkout--gift { text-align: center; }
.checkout__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pink);
  margin-bottom: 8px;
}
.checkout__price-hero {
  font-family: var(--font-alt);
  font-size: clamp(2.8rem, 6vw, 3.6rem);
  font-weight: 800;
  color: var(--pink);
  line-height: 1;
}
.checkout__duration {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  margin: 8px 0 16px;
}
.checkout__note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}
.checkout__features {
  list-style: none;
  margin-bottom: 16px;
  text-align: left;
}
.checkout__features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 8px;
}
.checkout__features li svg { flex-shrink: 0; margin-top: 2px; }
.checkout__links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
  font-size: 13px;
}
.checkout__links a { color: var(--brand); font-weight: 500; }

.checkout__tabs { display: none; }
.checkout__total { display: none; }

/* ── Plans grid (aligned buttons) ── */
.section { padding: 56px 0; }
.section h2 {
  font-family: var(--font-alt);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--dark);
}
.section__lead {
  color: var(--muted);
  font-size: 1rem;
  margin-top: 8px;
  max-width: 42ch;
}

.plans-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  align-items: stretch;
}
@media (min-width: 768px) {
  .plans-grid { grid-template-columns: repeat(4, 1fr); }
}

.plan-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-card);
  padding: 20px 16px 16px;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.25s;
}
.plan-card:hover {
  border-color: var(--brand);
  box-shadow: 0 8px 32px rgba(36, 107, 253, 0.1);
}
.plan-card--gift {
  border-color: var(--pink);
  background: linear-gradient(180deg, #fff8fb 0%, var(--white) 100%);
}
.plan-card--rec { border-color: var(--brand); }

.plan-card__tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: var(--radius-pill);
  padding: 3px 12px;
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
}
.plan-card__tag--gift { background: var(--pink); }
.plan-card__tag--rec { background: var(--brand); }

.plan-card__title {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 6px;
  padding-top: 4px;
}
.plan-card__price {
  font-family: var(--font-alt);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 6px;
}
.plan-card__price-note {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
}
.plan-card__blurb {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
  flex: 1;
  margin-bottom: 14px;
}
.plan-card__btn {
  margin-top: auto;
  width: 100%;
}

/* ── Why Choose Unlimited eSIM (worldmobile.com match) ── */
.why-esim {
  background: rgb(237, 18, 111);
  color: var(--white);
  padding: 64px 0 56px;
}
.why-esim h2 {
  text-align: center;
  font-family: var(--font);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
}
.why-esim__grid {
  display: grid;
  gap: 14px;
}
@media (min-width: 768px) {
  .why-esim__grid { grid-template-columns: repeat(3, 1fr); }
}
.why-esim__card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 14px;
  padding: 28px 22px 24px;
  text-align: center;
  transition: transform 0.35s var(--transition), background 0.35s;
}
.why-esim__card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.14);
}
.why-esim__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
}
.why-esim__icon svg { width: 100%; height: 100%; }
.why-esim__lottie {
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
}
.why-esim__lottie svg { max-width: 100%; max-height: 100%; }
.why-esim__card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.why-esim__card p {
  font-size: 14px;
  line-height: 1.55;
  opacity: 0.92;
}
.why-esim .destinations-link {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.85);
}
.why-esim .destinations-link:hover,
.why-esim .destinations-link:focus-visible {
  color: #fff;
  text-decoration-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.35);
}
.why-esim__cta {
  text-align: center;
  margin-top: 32px;
}
.why-esim__cta .btn {
  padding: 15px 60px;
  font-size: 16px;
}

/* ── How It Works (worldmobile.com match) ── */
.how-works {
  padding: 64px 0;
  background: var(--white);
}
.how-works h2 {
  text-align: center;
  font-family: var(--font);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 36px;
}
.how-works__grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 900px) {
  .how-works__grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.how-works__step { text-align: center; }
.how-works__phone {
  position: relative;
  width: min(220px, 70%);
  margin: 0 auto 18px;
}
.how-works__mockup {
  width: 100%;
  height: auto;
}
.how-works__screen {
  position: absolute;
  left: 50%;
  top: 11%;
  transform: translateX(-50%);
  width: 78%;
  height: auto;
  border-radius: 4px;
}
.how-works__step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.how-works__step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 28ch;
  margin: 0 auto;
}

/* ── FAQ ── */
.faq-list { margin-top: 20px; }
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 10px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(18, 37, 76, 0.04);
}
.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; font-size: 20px; color: var(--brand); font-weight: 300; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list p { color: var(--muted); margin-top: 10px; font-size: 14px; line-height: 1.6; max-width: 72ch; }

/* ── Footer ── */
.footer {
  padding: 28px 20px 96px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid var(--line);
  background: var(--light);
}
.footer__logo {
  height: 36px;
  width: auto;
  margin: 0 auto 10px;
  display: block;
  object-fit: contain;
}

/* ── Sticky ── */
.sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: center;
}
.sticky .btn { flex: 1; max-width: 420px; }

/* ── Popup ── */
.popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 50;
}
.popup-backdrop.is-open { display: flex; }
.popup {
  width: min(420px, 100%);
  background: var(--white);
  border-radius: 20px;
  padding: 26px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.popup__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: 0;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
  color: var(--muted);
}
.popup h3 { font-weight: 700; font-size: 1.15rem; margin-bottom: 8px; }
.popup p { color: var(--muted); margin-bottom: 16px; font-size: 15px; }

.payments-strip { margin-top: 10px; }
.payments-strip img { height: 20px; margin: 0 auto; opacity: 0.7; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.destinations-link {
  display: inline;
  border: 0;
  padding: 0;
  margin: 0;
  background: none;
  color: var(--brand);
  font: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 180ms var(--transition);
}
.destinations-link:hover,
.destinations-link:focus-visible {
  color: var(--brand-deep);
  outline: none;
}
.destinations-link:focus-visible {
  box-shadow: 0 0 0 3px rgba(36, 107, 253, 0.28);
  border-radius: 4px;
}

.plans-destinations {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}
.destinations-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid #cfe0ff;
  background: var(--brand-light);
  color: var(--brand-deep);
  border-radius: 999px;
  padding: 8px 16px;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 180ms var(--transition), border-color 180ms var(--transition), transform 180ms var(--transition);
}
.destinations-chip span {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.destinations-chip:hover,
.destinations-chip:focus-visible {
  background: #dce8ff;
  border-color: var(--brand);
  outline: none;
}
.destinations-chip:focus-visible {
  box-shadow: 0 0 0 3px rgba(36, 107, 253, 0.28);
}

.dest-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 55;
}
.dest-modal-backdrop.is-open { display: flex; }
.dest-modal {
  width: min(560px, 100%);
  max-height: min(82vh, 720px);
  background: var(--white);
  border-radius: 18px;
  padding: 22px 20px 18px;
  box-shadow: var(--shadow-card);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dest-modal__close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}
.dest-modal h3 {
  font-weight: 700;
  font-size: 1.15rem;
  padding-right: 40px;
}
.dest-modal__search input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #f8faff;
}
.dest-modal__search input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(36, 107, 253, 0.18);
}
.dest-modal__body {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding-right: 4px;
  display: grid;
  gap: 16px;
}
.dest-modal__section h4 {
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.35;
}
.dest-modal__section p {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}
.dest-modal__empty {
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  padding: 12px 0 4px;
}
body.dest-modal-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .destinations-link,
  .destinations-chip {
    transition: none;
  }
}
