/* sa-mobile.css — mobile adaptation using REAL DOM classes.
   Discovered by reading code (no guessing):
     #sa-strip     — top promo bar (sa-promos.js)
     #sa-timer     — bottom sticky timer (sa-promos.js)
     .navBar_root, .navBar_itemExtra, .navBar_itemLogo, .navBar_itemUser, .navBar_cta
     .header_root__FQUGU (position:sticky;top:0)
     .hero_root__fJgn5, .sliderHero_root__CBKV_, .sliderHero_image__piW4_,
     .hero_container__vn4jv, .hero_bottom__Zmz8S
*/

/* Burger button and drawer — hidden everywhere by default */
.sa-burger { display: none; }
.sa-drawer { display: none; }

@media (max-width: 900px) {
  html, body { overflow-x: hidden; }

  /* ── #sa-strip pinned to the very top ───────────────────────────────── */
  #sa-strip {
    position: fixed !important;
    top: 0 !important; left: 0 !important; right: 0 !important;
    z-index: 1100 !important;
    padding: 0 10px !important;
    height: 36px !important;
    display: flex !important;
    align-items: center !important;
    font-size: 11px !important;
    line-height: 1.2 !important;
    box-sizing: border-box !important;
  }
  #sa-strip .sa-strip__inner {
    flex-wrap: nowrap !important;
    gap: 8px !important;
    justify-content: center !important;
  }
  #sa-strip .sa-strip__cta {
    padding: 2px 8px !important;
    font-size: 11px !important;
    white-space: nowrap !important;
  }

  /* Push everything below the strip */
  body { padding-top: 96px !important; }
header [class*="navBar_root"],
  header [class*="navBar_list"] {
    height: 60px !important;
  }

  /* ── Header: keep donor structure, hide non-essential items, add burger ─ */
  /* hide nav text items on mobile (Tickets/Hotels/Parks/etc) */
  header .navBar_itemExtra { display: none !important; }
  /* hide user/account icon */
  header .navBar_itemUser { display: none !important; }
  /* keep logo, languages (.sa-langs-inline if present), and Promotions CTA */
  header [class*="navBar_list"] {
    gap: 8px !important;
    padding: 0 10px !important;
  }

  /* Burger inline at the start of navBar list */
  .sa-burger {
    display: inline-flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    flex: 0 0 auto;
    order: -1;
  }
  .sa-burger span {
    display: block;
    width: 22px; height: 2px;
    background: #0018a8;
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
  }
  .sa-burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .sa-burger.is-open span:nth-child(2) { opacity: 0; }
  .sa-burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* Drawer overlay */
  .sa-drawer {
    display: block;
    position: fixed; inset: 0;
    z-index: 1200;
    pointer-events: none;
    visibility: hidden;
  }
  .sa-drawer.is-open { pointer-events: auto; visibility: visible; }
  .sa-drawer__backdrop {
    position: absolute; inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    transition: opacity .2s ease;
  }
  .sa-drawer.is-open .sa-drawer__backdrop { opacity: 1; }
  .sa-drawer__panel {
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: min(320px, 84vw);
    background: #fff;
    transform: translateX(-100%);
    transition: transform .25s ease;
    overflow-y: auto;
    padding: 60px 20px 24px;
    box-shadow: 6px 0 24px rgba(0,0,0,.15);
  }
  .sa-drawer.is-open .sa-drawer__panel { transform: translateX(0); }
  .sa-drawer__group { margin-bottom: 14px; }
  .sa-drawer__heading--link {
    display: block;
    color: #0018a8;
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .04em;
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }

  /* ── HERO image keeps full block, lower the hero height on mobile ───── */
  .hero_root__fJgn5,
  [class*='hero_root__'] {
    min-height: 360px !important;
  }
  .sliderHero_root__CBKV_,
  [class*='sliderHero_root'] {
    height: 360px !important;
    min-height: 360px !important;
  }
  .sliderHero_image__piW4_,
  [class*='sliderHero_image'] {
    height: 360px !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  /* ── Hero CTA: keep desktop look — absolute centered on top of hero ─── */
  /* (Do NOT use position: relative; do NOT use white card with margin.) */
  [class*="sliderHero_root"] .sa-hero-cta {
    top: 38% !important;
    width: min(90%, 340px) !important;
    gap: 10px !important;
  }
  .sa-hero-cta__head {
    font-size: 12px !important;
    padding: 8px 14px !important;
    white-space: normal !important;
    line-height: 1.25 !important;
  }
  .sa-hero-cta__btn {
    min-width: 0 !important;
    padding: 10px 14px !important;
    font-size: 12px !important;
  }
  .sa-hero-cta__row { gap: 8px !important; }

  /* ── Hero container holding the widget — keep desktop's negative
       margin (already -100px from sa-overrides.css line 755). Compact it. */
  /* Widget sits as absolute overlay on the lower part of hero_root.
     This guarantees overlap regardless of donor flex/min-height. */
  .hero_container__vn4jv {
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    bottom: -40px !important;
    top: auto !important;
    margin: 0 !important;
    padding: 0 10px !important;
    min-height: 0 !important;
    max-width: 100% !important;
    display: block !important;
    width: 100% !important;
    z-index: 5 !important;
  }
  .hero_bottom__Zmz8S {
    margin: 0 !important;
    padding: 0 !important;
  }
  /* Make hero_root tall enough to fit widget overlapping at bottom */
  .hero_root__fJgn5,
  [class*="hero_root__"] {
    position: relative !important;
    min-height: 400px !important;
    padding-bottom: 80px !important;
  }

  /* ── Donor home booking widget — horizontal compact layout ──────────── */
  .priceAndAvailability_root__GSRt_,
  [class*="priceAndAvailability_root"] {
    padding: 10px !important;
    border-radius: 12px !important;
  }
  /* Tabs row scrollable horizontally */
  .priceAndAvailability_root__GSRt_ ul,
  [class*="priceAndAvailability_root"] ul {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    gap: 4px !important;
    scrollbar-width: none !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
  }
  [class*="priceAndAvailability_root"] ul::-webkit-scrollbar { display: none; }
  [class*="priceAndAvailability_root"] ul li,
  [class*="priceAndAvailability_root"] ul li * {
    font-size: 11px !important;
    padding: 6px 10px !important;
    white-space: nowrap !important;
  }
  /* Form row: 2-col grid + full-width CTA */
  [class*="priceAndAvailability_root"] form {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 6px !important;
    align-items: end !important;
  }
  [class*="priceAndAvailability_root"] form > * { min-width: 0 !important; }
  [class*="priceAndAvailability_root"] label,
  [class*="priceAndAvailability_root"] [class*="label"] {
    font-size: 9px !important;
    text-transform: uppercase !important;
    margin-bottom: 2px !important;
    line-height: 1.1 !important;
  }
  [class*="priceAndAvailability_root"] input,
  [class*="priceAndAvailability_root"] select {
    font-size: 11px !important;
    padding: 6px 8px !important;
    min-height: 32px !important;
    width: 100% !important;
  }
  [class*="priceAndAvailability_root"] button[type="submit"],
  [class*="priceAndAvailability_root"] button[class*="cta"] {
    grid-column: 1 / -1 !important;
    background: #ff6a13 !important;
    color: #fff !important;
    border: 0 !important;
    border-radius: 999px !important;
    padding: 10px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
  }

  /* ── Our funnel widget (.sa-widget) — horizontal scrollable ─────────── */
  .sa-widget__row {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 6px !important;
    overflow-x: auto !important;
    scrollbar-width: none !important;
  }
  .sa-widget__row::-webkit-scrollbar { display: none; }
  .sa-widget__field { flex: 1 1 auto !important; min-width: 90px !important; }
  .sa-widget__cta { flex: 0 0 auto !important; }
  .sa-widget__lbl {
    font-size: 10px !important;
    text-transform: uppercase !important;
    line-height: 1.1 !important;
    white-space: normal !important;
  }
  .sa-widget__pill,
  .sa-widget__pill input {
    width: 100% !important;
    min-width: 0 !important;
    font-size: 12px !important;
    padding: 6px 8px !important;
  }

  /* ── Carousels arrows + dots (real swiper classes) ──────────────────── */
  .swiper-button-prev, .swiper-button-next {
    display: flex !important;
    width: 30px !important;
    height: 30px !important;
    background: rgba(255,255,255,.92) !important;
    border-radius: 50% !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.15) !important;
  }
  .swiper-button-prev::after, .swiper-button-next::after {
    font-size: 13px !important;
    color: #0018a8 !important;
  }
  .swiper-pagination-bullet {
    background: #0018a8 !important;
    opacity: .35 !important;
    width: 8px !important;
    height: 8px !important;
  }
  .swiper-pagination-bullet-active {
    opacity: 1 !important;
    width: 22px !important;
    border-radius: 4px !important;
  }

  /* ── Footer compact (donor's own grid keeps its column count) ───────── */
  [class*='footer_root'] [class*='cols_'] * { font-size: 11px !important; }
  [class*='footer_root'] [class*='cols_'] strong { font-size: 12px !important; }
  .sa-footer__legal { font-size: 10px !important; line-height: 1.5 !important; }
}


/* ──────────────────────────────────────────────────────────────────────
   Mobile Block #1 — HERO  (sa-m-hero)
   Replaces donor hero (hero_root__fJgn5) on ≤900px.
   ────────────────────────────────────────────────────────────────────── */
.sa-m-hero { display: none; }

@media (max-width: 900px) {
  /* Hide donor hero entirely; show ours */
  .hero_root__fJgn5,
  [class*="hero_root__"] { display: none !important; }

  .sa-m-hero {
    display: block !important;
    position: relative;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  .sa-m-hero__img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
  }
  .sa-m-hero__cta {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(86%, 340px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }
  .sa-m-hero__head {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #fff;
    background: linear-gradient(135deg, #0018a8 0%, #1d3bd1 100%);
    padding: 10px 18px;
    border-radius: 999px;
    box-shadow: 0 6px 18px rgba(0, 24, 168, .35);
    white-space: nowrap;
  }
  .sa-m-hero__head em {
    font-style: normal;
    font-weight: 800;
    color: #ffd84d;
  }
  .sa-m-hero__row {
    display: flex;
    gap: 8px;
    justify-content: center;
    width: 100%;
  }
  .sa-m-hero__btn {
    flex: 1 1 0;
    min-width: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 10px 12px;
    border-radius: 999px;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    white-space: nowrap;
  }
  .sa-m-hero__btn--orange {
    background: #ff6a13;
    color: #fff;
    border: 2px solid #ff6a13;
    box-shadow: 0 6px 18px rgba(255, 106, 19, .40);
  }
  .sa-m-hero__btn--orange:active { transform: translateY(1px); }
  .sa-m-hero__btn--blue {
    background: #0018a8;
    color: #fff;
    border: 2px solid #0018a8;
    box-shadow: 0 6px 18px rgba(0, 24, 168, .35);
  }
  .sa-m-hero__btn--blue:active { transform: translateY(1px); }
}


/* ──────────────────────────────────────────────────────────────────────
   Mobile Block — HEADER (sa-m-header)
   Replaces donor <header> on ≤900px.
   Layout: ≡ burger | logo | … | EN/ES/FR | Tickets-button
   ────────────────────────────────────────────────────────────────────── */
.sa-m-header { display: none; }
.sa-m-drawer { display: none; }

@media (max-width: 900px) {
  /* Hide donor header completely */
  header.header_root__FQUGU,
  [class*="header_root__"]:not(.sa-m-header) { display: none !important; }

  body { padding-top: 96px !important; }

  .sa-m-header {
    display: flex !important;
    align-items: center;
    gap: 4px;
    position: fixed;
    top: 36px;
    left: 0; right: 0;
    height: 60px;
    background: #fff;
    border-bottom: 1px solid #eaecf3;
    z-index: 1099;
    padding: 0 6px;
    box-shadow: 0 2px 8px rgba(0, 24, 168, .06);
  }
  .sa-m-burger {
    flex: 0 0 auto;
    width: 32px; height: 32px;
    order: 3;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: transparent;
    border: 0; padding: 0; cursor: pointer;
  }
  .sa-m-burger span {
    display: block;
    width: 20px; height: 2.5px;
    background: #0018a8;
    border-radius: 2px;
    transition: transform .2s ease, opacity .2s ease;
  }
  .sa-m-burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .sa-m-burger.is-open span:nth-child(2) { opacity: 0; }
  .sa-m-burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .sa-m-header__logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    height: 60px;
    order: 1;
    margin-right: auto;
  }
  .sa-m-header__logo img {
    height: 28px;
    width: auto;
    max-width: 80px;
    display: block;
  }

  .sa-m-header__right {
    margin: 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    order: 2;
  }
  .sa-m-langs {
    display: inline-flex;
    gap: 1px;
    background: #f0f4ff;
    border-radius: 999px;
    padding: 1px;
  }
  .sa-m-lang {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 9px;
    border-radius: 999px;
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: #0018a8;
    text-decoration: none;
    letter-spacing: .05em;
  }
  .sa-m-lang.is-active,
  html[lang="en"] .sa-m-lang[data-lang="en"],
  html[lang="es"] .sa-m-lang[data-lang="es"],
  html[lang="fr"] .sa-m-lang[data-lang="fr"] {
    background: #0018a8;
    color: #fff;
  }
  .sa-m-header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ff6a13;
    color: #fff;
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: .03em;
    text-transform: uppercase;
    padding: 8px 14px;
    white-space: nowrap;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(255, 106, 19, .35);
  }

  /* Drawer */
  .sa-m-drawer {
    display: block !important;
    position: fixed;
    top: 96px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1200;
    pointer-events: none;
    visibility: hidden;
  }
  .sa-m-drawer.is-open { pointer-events: none; visibility: visible; }
  .sa-m-drawer.is-open .sa-m-drawer__panel { pointer-events: auto; }
  .sa-m-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: transparent;
    opacity: 0;
    transition: opacity .2s ease;
    pointer-events: none;
  }
  .sa-m-drawer.is-open .sa-m-drawer__backdrop { opacity: 1; }
  .sa-m-drawer__panel {
    position: absolute;
    top: 0; right: 0; bottom: auto;
    width: min(260px, 78vw);
    border-bottom-left-radius: 14px;
    background: #fff;
    transform: translateX(100%);
    transition: transform .28s cubic-bezier(.4, 0, .2, 1);
    overflow-y: auto;
    padding: 14px 18px 24px;
    box-shadow: -8px 0 28px rgba(0, 24, 168, .08);
    border-left: 1px solid #eef0f6;
  }
  .sa-m-drawer.is-open .sa-m-drawer__panel { transform: translateX(0); pointer-events: auto; }
  .sa-m-drawer__link {
    display: block;
    padding: 12px 14px;
    margin: 2px 0;
    border-radius: 10px;
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #0018a8;
    text-decoration: none;
    letter-spacing: .02em;
    transition: background .15s ease, color .15s ease, transform .15s ease;
  }
  .sa-m-drawer__link:hover,
  .sa-m-drawer__link:active {
    background: #f0f4ff;
    color: #001488;
    transform: translateX(-2px);
  }
}


/* ──────────────────────────────────────────────────────────────────────
   Mobile Block — WIDGET v2 (sa-m-widget)
   Two tabs (Hotel+Tickets / Tickets). Per-tab form, horizontal, taller.
   ────────────────────────────────────────────────────────────────────── */
.sa-m-widget { display: none; }

@media (max-width: 900px) {
  .sa-m-widget {
    display: block !important;
    position: relative;
    margin: -50px 12px 24px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(0, 24, 168, .14);
    padding: 12px 14px 16px;
    z-index: 10;
  }
  .sa-m-widget__tabs {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 4px;
    border-bottom: 1px solid #eef0f6;
    margin-bottom: 12px;
  }
  .sa-m-widget__tabs::-webkit-scrollbar { display: none; }
  .sa-m-widget__tab {
    flex: 1 1 0;
    text-align: center;
    padding: 10px 12px;
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: #4a5070;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
  }
  .sa-m-widget__tab--active {
    color: #0018a8;
    border-bottom-color: #0018a8;
    font-weight: 700;
  }

  /* Show only the active form */
  .sa-m-widget__form { display: none; }
  .sa-m-widget--hotel .sa-m-widget__form--hotel,
  .sa-m-widget--tickets .sa-m-widget__form--tickets { display: flex; }

  .sa-m-widget__form {
    flex-wrap: wrap;
    gap: 8px;
    align-items: end;
  }
  .sa-m-widget__field {
    flex: 1 1 calc(50% - 4px);
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .sa-m-widget__field--full { flex: 1 1 100%; }
  .sa-m-widget__field label {
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 600;
    font-size: 10px;
    text-transform: uppercase;
    color: #777;
    letter-spacing: .04em;
    padding-left: 4px;
  }
  .sa-m-widget__field input,
  .sa-m-widget__field select {
    border: 1px solid #e2e6ef;
    border-radius: 10px;
    padding: 10px 12px;
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 13px;
    color: #1a1a1a;
    background: #fff;
    min-height: 42px;
    width: 100%;
    cursor: pointer;
  }
  .sa-m-widget__field input:focus,
  .sa-m-widget__field select:focus {
    outline: none;
    border-color: #0018a8;
  }
  .sa-m-widget__cta {
    flex: 1 1 100%;
    background: #ff6a13;
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: 14px;
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(255, 106, 19, .35);
    margin-top: 4px;
  }
  .sa-m-widget__cta:active { transform: translateY(1px); }

  .sa-m-widget__discount {
    flex: 1 1 100%;
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #0018a8;
    text-decoration: underline;
    text-align: center;
    padding: 6px 0 0;
  }

  .sa-m-widget__choose {
    flex: 1 1 100%;
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #1a1a1a;
  }
  .sa-m-widget__toggle {
    flex: 1 1 100%;
    display: flex;
    gap: 6px;
    border: 1px solid #e2e6ef;
    border-radius: 12px;
    padding: 4px;
    background: #f6f8fd;
  }
  .sa-m-widget__toggleitem {
    flex: 1 1 0;
    position: relative;
    cursor: pointer;
  }
  .sa-m-widget__toggleitem input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
  }
  .sa-m-widget__toggleitem span {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    border-radius: 8px;
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #4a5070;
    background: transparent;
    border: 1px solid transparent;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
  }
  .sa-m-widget__toggleitem input:checked + span {
    background: #fff;
    color: #0018a8;
    border-color: #c8d2f5;
    font-weight: 700;
    box-shadow: 0 2px 6px rgba(0, 24, 168, .08);
  }


  /* ── Guests dropdown ───────────────────────────────────────────────── */
  .sa-m-widget__field--guests { position: relative; }
  .sa-m-widget__guests-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: 1px solid #e2e6ef;
    border-radius: 10px;
    background: #fff;
    padding: 10px 12px;
    min-height: 42px;
    cursor: pointer;
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 13px;
    color: #1a1a1a;
    text-align: left;
  }
  .sa-m-widget__guests-trigger.is-open {
    border-color: #0018a8;
    background: #f6f8fd;
  }
  .sa-m-widget__guests-caret {
    color: #0018a8;
    font-size: 11px;
    margin-left: 6px;
    transition: transform .15s ease;
  }
  .sa-m-widget__guests-trigger.is-open .sa-m-widget__guests-caret {
    transform: rotate(180deg);
  }

  .sa-m-widget__guests-panel {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    left: auto;
    width: max(260px, 100%);
    z-index: 100;
    background: #fff;
    border: 1px solid #eef0f6;
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 24, 168, .18);
    padding: 14px 16px;
  }
  .sa-m-widget__guests-panel.is-open { display: block; }

  .sa-m-widget__guests-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 500;
  }
  .sa-m-widget__guests-row + .sa-m-widget__guests-row {
    border-top: 1px solid #f0f3f9;
  }
  .sa-m-widget__guests-stepper {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .sa-m-widget__guests-stepper button {
    width: 30px; height: 30px;
    border: 1.5px solid #0018a8;
    background: #fff;
    color: #0018a8;
    border-radius: 50%;
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background .15s ease, color .15s ease;
  }
  .sa-m-widget__guests-stepper button:hover,
  .sa-m-widget__guests-stepper button:active {
    background: #0018a8;
    color: #fff;
  }
  .sa-m-widget__guests-stepper button:disabled {
    border-color: #d4d8e3;
    color: #d4d8e3;
    background: #fff;
    cursor: not-allowed;
  }
  .sa-m-widget__guests-stepper span {
    min-width: 22px;
    text-align: center;
    font-weight: 700;
    font-size: 15px;
  }


  /* Prevent iOS Safari auto-zoom on focus — inputs must be ≥16px */
  .sa-m-widget__dates,
  .sa-m-widget__field input,
  .sa-m-widget__field select,
  .flatpickr-input,
  .flatpickr-mobile,
  input.flatpickr-input {
    font-size: 16px !important;
  }

}
