/* ============================================================
   Booking Engine — Redesign
   Brand: #2077ba / #2c91ce (blue) · #f9b33b / #ffbe5f (amber)
   ============================================================ */

:root {
  --brand: #2077ba;
  --brand-2: #2c91ce;
  --brand-dark: #185b8f;
  --brand-wash: #eef5fb;
  --brand-wash-2: #e2eef8;

  --amber: #f9b33b;
  --amber-light: #ffbe5f;
  --amber-wash: #fff6e6;
  --amber-ink: #8a5a0f;

  --ink: #14222e;
  --ink-2: #51616e;
  --ink-3: #8492a0;
  --line: #e7edf2;
  --line-2: #eef2f6;
  --bg: #f2f6fa;
  --card: #ffffff;

  --ok: #1f9d63;
  --ok-wash: #e9f7ef;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-xs: 9px;
  --shadow-sm: 0 1px 2px rgba(20, 34, 46, 0.04), 0 2px 8px rgba(20, 34, 46, 0.04);
  --shadow-md: 0 4px 18px rgba(20, 34, 46, 0.07);
  --shadow-lg: 0 18px 50px rgba(24, 91, 143, 0.16);
  --ring: 0 0 0 3px rgba(32, 119, 186, 0.16);

  --maxw: 1320px;
}

/* Scoped to booking page only — never override global site header/footer */
.book-online-page.be-redesign,
.book-online-page.be-redesign *,
.book-online-page.be-redesign *::before,
.book-online-page.be-redesign *::after {
  box-sizing: border-box;
}

.book-online-page.be-redesign {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.5;
  padding: 20px 0 70px;
}

.book-online-page.be-redesign .tnum { font-variant-numeric: tabular-nums; }

.book-online-page.be-redesign button {
  font-family: inherit;
  cursor: pointer;
}

/* ---------- thin site context bar (neutral, not the real nav) ---------- */
.context-bar {
  height: 56px;
  background: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.context-bar__inner {
  width: 100%;
  max-width: var(--maxw);
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}
.context-bar__brand { font-weight: 800; letter-spacing: .02em; display: flex; align-items: center; gap: 9px; }
.context-bar__brand .mark {
  width: 26px; height: 26px; border-radius: 7px;
  background: #fff; color: var(--brand);
  display: grid; place-items: center; font-size: 13px;
}
.context-bar__links { display: flex; gap: 20px; opacity: .92; font-weight: 600; }
.context-bar__links span { cursor: pointer; }
.context-bar__links span:hover { opacity: .7; }

/* ---------- sticky search bar ---------- */
.book-online-page.be-redesign .searchbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, padding .25s ease;
}
.searchbar.is-stuck { box-shadow: var(--shadow-md); }
.searchbar__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 14px;
  transition: padding .25s ease;
}
.searchbar.is-stuck .searchbar__inner { padding: 10px 22px; }

.search-fields {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  overflow: visible;
}
.search-field {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 18px;
  position: relative;
  background: none; border: none; text-align: left;
  transition: background .15s ease;
}
.search-field:hover { background: var(--brand-wash); }
.search-field + .search-field::before {
  content: ""; position: absolute; left: 0; top: 9px; bottom: 9px; width: 1px; background: var(--line);
}
.search-field i { color: var(--brand); font-size: 15px; }
.search-field__label { font-size: 10.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-3); font-weight: 700; }
.search-field__value { font-size: 14px; font-weight: 700; color: var(--ink); white-space: nowrap; }

.search-go {
  display: flex; align-items: center; gap: 9px;
  background: var(--brand);
  color: #fff; border: none;
  padding: 0 24px;
  font-weight: 800; font-size: 14.5px;
  margin: 5px 5px 5px 4px;
  border-radius: 999px;
  transition: background .15s ease, transform .12s ease;
}
.search-go:hover { background: var(--brand-dark); }
.search-go:active { transform: scale(.97); }

/* guest popover */
.popover {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 320px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  z-index: 80;
}
.guest-line {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 12px;
}
.guest-line + .guest-line { border-top: 1px solid var(--line-2); }
.guest-line__label { font-weight: 700; font-size: 14.5px; }
.guest-line__sub { font-size: 12px; color: var(--ink-3); font-weight: 500; }
.stepper { display: flex; align-items: center; gap: 14px; }
.stepper button {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1.5px solid var(--brand); color: var(--brand);
  background: #fff; font-size: 18px; font-weight: 600;
  display: grid; place-items: center;
  transition: all .12s ease;
}
.stepper button:hover:not(:disabled) { background: var(--brand); color: #fff; }
.stepper button:disabled { opacity: .35; cursor: not-allowed; }
.stepper__val { width: 18px; text-align: center; font-weight: 800; font-size: 15px; }
.popover__done {
  width: 100%; margin-top: 6px;
  background: var(--brand); color: #fff; border: none;
  padding: 12px; border-radius: var(--radius-xs); font-weight: 800; font-size: 14px;
}
.popover__done:hover { background: var(--brand-dark); }
.child-ages { display: flex; flex-wrap: wrap; gap: 8px; padding: 4px 12px 12px; }
.child-ages select {
  border: 1px solid var(--line); border-radius: 8px; padding: 7px 8px; font-family: inherit; font-size: 13px;
}

/* ---------- page ---------- */
.book-online-page.be-redesign .page-top {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px 22px 20px;
}
.book-online-page.be-redesign .page {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 8px 22px 80px;
}

.book-online-page.be-redesign .breadcrumb {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; color: var(--ink-3); margin-bottom: 16px;
}
.breadcrumb a:hover { color: var(--brand); }
.breadcrumb .sep { opacity: .5; }
.breadcrumb .current { color: var(--ink-2); font-weight: 700; }

.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 700; color: var(--brand);
  padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; background: #fff;
  transition: all .15s ease;
}
.back-link:hover { background: var(--brand-wash); border-color: var(--brand-wash-2); }

.page-top__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.page-top__bar .back-link {
  flex-shrink: 0;
}

.page-top__bar .trust {
  margin-bottom: 0;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
}

.page-title {
  font-size: 34px; font-weight: 800; letter-spacing: -0.02em; margin: 0;
}
.page-sub { color: var(--ink-2); font-size: 15px; margin: 8px 0 0; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.page-sub__loc { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; }
.page-sub__loc i { color: var(--brand); }
.page-sub__dot { color: var(--ink-3); }
.page-sub__stars { display: inline-flex; gap: 2px; color: var(--amber); font-size: 12px; }

/* trust strip */
.trust {
  display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px;
}
.trust__item {
  display: flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 14px;
  font-size: 12.5px; font-weight: 700; color: var(--ink);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.trust__item i { font-size: 14px; }
.trust__item--g i { color: var(--amber); }
.trust__item--s i { color: var(--brand); }
.trust__item--i i { color: var(--ok); }
.trust__item--n i { color: var(--brand-2); }

/* Stripe secure checkout badge (book-online basket only) */
.book-online-page > .book-online-stripe-security,
.searchbar + .book-online-stripe-security {
  display: none !important;
}
.basket__stripe-security {
  margin-top: 16px;
  padding-top: 4px;
}
.book-online-stripe-security--compact img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xs);
}

/* rare find banner */
.rare {
  display: flex; align-items: center; gap: 15px;
  background: linear-gradient(100deg, var(--amber-wash), #fffdf8);
  border: 1px solid #f3dcae;
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 30px;
}
.rare__icon {
  width: 46px; height: 46px; border-radius: 13px; flex: none;
  background: linear-gradient(135deg, var(--amber-light), var(--amber));
  color: #fff; display: grid; place-items: center; font-size: 19px;
  box-shadow: 0 8px 18px rgba(249, 179, 59, 0.32);
}
.rare__title { font-weight: 800; font-size: 15px; color: var(--amber-ink); }
.rare__text { font-size: 13.5px; color: #9a7330; }

/* section header */
.section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 8px; }
.section-title { font-size: 22px; font-weight: 800; letter-spacing: -0.01em; margin: 0; }
.section-meta { font-size: 13px; color: var(--ink-3); display: flex; align-items: center; gap: 6px; }
.results-count { color: var(--ink-2); font-weight: 700; font-size: 14px; margin: 2px 0 22px; }

/* ============================================================
   Room card
   ============================================================ */
.room {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 18px;
  transition: box-shadow .2s ease, transform .2s ease, border-color .2s ease;
}
.room:hover { box-shadow: var(--shadow-md); border-color: var(--brand-wash-2); }

.room__grid {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  align-items: start;
}

/* photo — fixed height, never stretch with rate rows */
.room__media {
  position: relative;
  height: 220px;
  max-height: 220px;
  overflow: hidden;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.room__photo {
  position: relative;
  height: 220px;
  width: 100%;
  background-color: #dde7ef;
  background-image:
    repeating-linear-gradient(135deg, rgba(255,255,255,.5) 0 2px, transparent 2px 13px),
    linear-gradient(160deg, #cdddea, #e4edf4);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: #7d97ab;
}
.room__photo i { font-size: 26px; opacity: .65; }
.room__photo span { font-family: "Roboto Mono", ui-monospace, monospace; font-size: 11px; letter-spacing: .03em; opacity: .8; }
.room__media-badge {
  position: absolute; left: 12px; top: 12px; z-index: 2;
  background: rgba(20,34,46,0.74); color: #fff; backdrop-filter: blur(4px);
  font-size: 11.5px; font-weight: 700; padding: 5px 10px; border-radius: 8px;
  display: flex; align-items: center; gap: 6px;
}
.room__gallery-dots {
  position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; gap: 6px;
}
.room__gallery-dots span { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.55); }
.room__gallery-dots span.on { background: #fff; width: 16px; border-radius: 3px; }

/* room body */
.room__body { padding: 20px 22px; display: flex; flex-direction: column; }
.room__name { font-size: 19px; font-weight: 800; letter-spacing: -0.01em; margin: 0 0 9px; }
.room__name a { transition: color .15s; }
.room__name a:hover { color: var(--brand); }
.room__chips { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 8px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--brand-wash); color: var(--brand-dark);
  border-radius: 7px; padding: 5px 10px; font-size: 12px; font-weight: 700;
}
.chip i { font-size: 11px; opacity: .8; }
.chip--occ { background: var(--amber-wash); color: var(--amber-ink); }

.room__detailslink {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700; color: var(--brand);
  margin-top: 2px;
}
.room__detailslink:hover { text-decoration: underline; }

.room__rates { margin-top: 14px; border-top: 1px dashed var(--line); }

/* rate row */
.rate {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: 20px 24px;
  align-items: start;
  padding: 16px 2px;
  border-bottom: 1px dashed var(--line);
}
.rate:last-child { border-bottom: none; padding-bottom: 2px; }
.rate__info { min-width: 0; }
.rate__meal { display: flex; align-items: center; gap: 10px; margin-bottom: 7px; }
.rate__meal-icon {
  width: 32px; height: 32px; border-radius: 9px; flex: none;
  display: grid; place-items: center; font-size: 14px;
  background: var(--brand-wash); color: var(--brand);
}
.rate__meal-icon.hb { background: var(--amber-wash); color: var(--amber-ink); }
.rate__meal-name { font-weight: 800; font-size: 14.5px; }
.rate__meal-sub { font-size: 12px; color: var(--ink-3); font-weight: 600; }

.rate__pills { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 6px; }
.pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700; border-radius: 7px; padding: 4px 9px;
}
.pill--instant { background: var(--ok-wash); color: var(--ok); }
.pill--nonref { background: #f4f6f8; color: var(--ink-2); }
.pill--flex { background: var(--ok-wash); color: var(--ok); }

.rate__cancel {
  display: block;
  position: relative;
  padding-left: 22px;
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: none;
}

.rate__cancel > i {
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--ink-3);
  font-size: 12px;
}

.rate__cancel p,
.rate__cancel .rate__cancel-text,
.rate__cancel span {
  display: block;
  margin: 0 0 6px;
  max-width: none;
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
}

.rate__cancel p:last-child,
.rate__cancel span:last-child {
  margin-bottom: 0;
}

.rate__cancel b { color: var(--ink); font-weight: 700; }

/* price block */
.rate__buy { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 2px; min-width: 250px; }
.rate__price { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; line-height: 1; }
.rate__price .cur { font-size: 17px; font-weight: 700; vertical-align: 1px; margin-right: 1px; }
.rate__per { font-size: 12px; color: var(--ink-3); font-weight: 600; }
.rate__taxes-row {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: var(--ink-2); font-weight: 600;
  margin: 4px 0 8px;
}
.info-dot {
  width: 19px; height: 19px; border-radius: 50%;
  border: 1.5px solid var(--brand); color: var(--brand);
  background: #fff; font-size: 9px; line-height: 1;
  display: grid; place-items: center; flex: none;
  transition: all .15s ease;
}
.info-dot:hover { background: var(--brand); color: #fff; }

.rate__left {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff3f1; color: #c0392b;
  font-size: 11.5px; font-weight: 800; border-radius: 7px; padding: 5px 10px; margin-bottom: 9px;
}
.rate__left.calm { background: var(--amber-wash); color: var(--amber-ink); }

.book-btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--brand); color: #fff; border: none;
  padding: 12px 26px; border-radius: 11px;
  font-weight: 800; font-size: 15px;
  box-shadow: 0 8px 18px rgba(32,119,186,0.22);
  transition: background .15s ease, transform .12s ease, box-shadow .2s ease;
}
.book-btn:hover { background: var(--brand-dark); box-shadow: 0 10px 22px rgba(32,119,186,0.3); }
.book-btn:active { transform: scale(.97); }
.book-btn.added { background: var(--ok); box-shadow: 0 8px 18px rgba(31,157,99,0.25); }
.book-btn:disabled { opacity: .45; cursor: not-allowed; box-shadow: none; }

/* room-quantity selector + add */
.rate__select {
  display: flex; align-items: center; gap: 10px; margin-top: 2px; width: 100%;
}
.qty { display: flex; flex-direction: column; gap: 3px; }
.qty__label { font-size: 10px; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-3); font-weight: 800; padding-left: 2px; }
.qty__ctrl {
  display: flex; align-items: center; gap: 4px;
  border: 1px solid var(--line); border-radius: 10px; padding: 3px;
  background: #fff;
}
.qty__ctrl button {
  width: 30px; height: 30px; border-radius: 7px; border: none;
  background: var(--brand-wash); color: var(--brand);
  font-size: 17px; font-weight: 600; display: grid; place-items: center;
  transition: all .12s ease;
}
.qty__ctrl button:hover:not(:disabled) { background: var(--brand); color: #fff; }
.qty__ctrl button:disabled { opacity: .35; cursor: not-allowed; }
.qty__val { min-width: 22px; text-align: center; font-weight: 800; font-size: 15px; }
.rate__select .book-btn { padding: 12px 18px; font-size: 14px; flex: 1; justify-content: center; }

/* ---------- modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(15, 30, 42, 0.55);
  backdrop-filter: blur(3px);
  display: flex; align-items: center; justify-content: center;
  padding: 22px;
  opacity: 0; pointer-events: none; transition: opacity .2s ease;
}
.modal-backdrop.on { opacity: 1; pointer-events: auto; }
.modal {
  background: #fff; border-radius: var(--radius);
  width: min(440px, 96vw); max-height: 88vh; overflow: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(10px) scale(.98); transition: transform .2s ease;
}
.modal-backdrop.on .modal { transform: none; }
.modal__head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  padding: 20px 22px 14px; border-bottom: 1px solid var(--line-2);
}
.modal__title { font-size: 19px; font-weight: 800; }
.modal__subtitle { font-size: 12.5px; color: var(--ink-3); margin-top: 3px; font-weight: 500; max-width: 320px; }
.modal__close {
  width: 34px; height: 34px; border-radius: 50%; border: none; background: var(--line-2);
  color: var(--ink-2); font-size: 18px; display: grid; place-items: center; flex: none;
}
.modal__close:hover { background: var(--line); }
.modal__body { padding: 18px 22px 22px; }

.price-card { border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 16px; }
.price-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 13px 0; font-size: 14px; }
.price-row + .price-row { border-top: 1px solid var(--line-2); }
.price-row__label { color: var(--ink-2); display: flex; align-items: center; gap: 9px; }
.price-row__label i { color: var(--ink-3); width: 15px; text-align: center; }
.price-row__label sup { color: var(--brand); }
.price-row__val { font-weight: 700; text-align: right; }
.price-row.total { margin: 0 -16px; padding: 14px 16px; border-top: 1px solid var(--line); background: var(--brand-wash); border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
.price-row.total .price-row__label { color: var(--ink); font-weight: 800; font-size: 16px; }
.price-row.total .price-row__val { font-size: 20px; font-weight: 800; }

.price-foot { font-size: 12px; color: var(--ink-2); line-height: 1.5; margin: 14px 0 0; }
.price-foot sup { color: var(--brand); }
.price-foot--tax { padding-top: 14px; border-top: 1px solid var(--line-2); }
.price-foot--tax b { color: var(--ink); }
.price-foot--tax span { color: var(--ink-3); }

.price-cxl { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line-2); }
.price-cxl__head { font-size: 15px; font-weight: 800; margin-bottom: 8px; }
.price-cxl p { font-size: 13px; color: var(--ink-2); line-height: 1.55; margin: 0 0 6px; }
.price-cxl__until { display: flex; align-items: center; gap: 7px; color: var(--ink) !important; font-weight: 600; }
.price-cxl__until i { color: var(--ok); }
.price-cxl__until b { color: var(--ink); }

/* ---------------- Basket (Selected rooms) ---------------- */
.basket {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 22px 24px;
  margin: 28px 0 96px;
  scroll-margin-top: 80px;
}
.basket__head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px; border-bottom: 1px solid var(--line-2);
}
.basket__title { font-size: 19px; font-weight: 800; margin: 0; display: flex; align-items: center; gap: 10px; }
.basket__title i { color: var(--brand); }
.basket__count {
  background: var(--brand-wash); color: var(--brand-dark);
  font-size: 12.5px; font-weight: 800; padding: 5px 12px; border-radius: 999px;
}

.basket__items { padding: 6px 0; }
.basket__item {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 0; border-bottom: 1px solid var(--line-2);
}
.basket__item:last-child { border-bottom: none; }
.basket__item-main { flex: 1; min-width: 0; }
.basket__item-name { font-size: 15px; font-weight: 600; }
.basket__item-name b { font-weight: 800; color: var(--brand-dark); margin-right: 2px; }
.basket__item-sub { font-size: 12.5px; color: var(--ink-3); margin-top: 2px; }
.basket__item-price { font-size: 16px; font-weight: 800; white-space: nowrap; }
.basket__remove {
  width: 30px; height: 30px; border-radius: 8px; border: 1px solid var(--line);
  background: #fff; color: var(--ink-3); font-size: 13px; display: grid; place-items: center; flex: none;
  transition: all .15s ease;
}
.basket__remove:hover { background: #fff3f1; border-color: #f4cfc9; color: #c0392b; }

.basket__guests {
  margin-top: 14px; padding: 18px;
  background: var(--bg); border: 1px solid var(--line-2); border-radius: var(--radius-sm);
}
.basket__guests-head { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.basket__guests-title { font-size: 15px; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.basket__guests-title i { color: var(--brand); }
.basket__assigned {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 700; padding: 5px 12px; border-radius: 999px;
}
.basket__assigned.ok { background: var(--ok-wash); color: var(--ok); }
.basket__assigned.warn { background: var(--amber-wash); color: var(--amber-ink); }

.basket__rooms { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 12px; }
.rm-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xs); padding: 14px 15px; }
.rm-card__head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 9px; }
.rm-card__n { font-weight: 800; font-size: 14px; }
.rm-card__type { font-size: 12px; color: var(--ink-3); font-weight: 600; text-align: right; }
.rm-card__meta {
  display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--ink-2); font-weight: 600;
  padding: 8px 10px; background: var(--brand-wash); border-radius: 8px; margin-bottom: 11px;
}
.rm-card__meta i { color: var(--brand); }
.rm-card__meta .rm-card__price { margin-left: auto; font-weight: 800; color: var(--ink); }
.rm-card__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.rm-card__fields label { display: block; }
.rm-card__fields label span, .rm-card__ages span { font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-3); font-weight: 800; margin-bottom: 5px; display: block; }
.rm-card__fields select, .rm-card__ages select {
  width: 100%; border: 1px solid var(--line); border-radius: 9px; padding: 9px 10px;
  font-family: inherit; font-size: 14px; font-weight: 600; color: var(--ink); background: #fff;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238492a0' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center;
}
.rm-card__fields select:focus, .rm-card__ages select:focus { outline: none; border-color: var(--brand); box-shadow: var(--ring); }
.rm-card__ages { margin-top: 11px; }
.rm-card__ages-row { display: flex; flex-wrap: wrap; gap: 8px; }
.rm-card__ages-row select { width: auto; min-width: 78px; }
.rm-card__remove {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 12px;
  background: none; border: none; color: var(--ink-3); font-size: 12.5px; font-weight: 700; padding: 0;
  transition: color .15s ease;
}
.rm-card__remove:hover { color: #c0392b; }

.basket__note {
  display: flex; align-items: center; gap: 8px; margin-top: 14px;
  font-size: 12.5px; color: var(--amber-ink); background: var(--amber-wash);
  border-radius: var(--radius-xs); padding: 10px 14px;
}

.basket__stripe-security {
  margin-top: 16px;
  padding-top: 4px;
}
.basket__foot {
  display: flex; align-items: center; gap: 18px;
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line-2);
}
.basket__total { margin-right: auto; display: flex; align-items: baseline; gap: 10px; }
.basket__total-label { font-size: 14px; color: var(--ink-2); font-weight: 700; }
.basket__total-val { font-size: 28px; font-weight: 800; letter-spacing: -.02em; }
.basket__reserve {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--amber); color: #2b1d00; border: none;
  padding: 15px 30px; border-radius: 12px; font-weight: 800; font-size: 16px;
  box-shadow: 0 8px 20px rgba(249,179,59,.38);
  transition: background .15s, transform .12s, box-shadow .2s;
}
.basket__reserve:hover { background: var(--amber-light); }
.basket__reserve:active { transform: scale(.98); }
.basket__reserve:disabled { background: #e6eaee; color: #9aa6b1; box-shadow: none; cursor: not-allowed; }

@media (max-width: 760px) {
  .basket__foot { flex-direction: column; align-items: stretch; gap: 12px; }
  .basket__reserve { justify-content: center; }
}

/* ---------- expandable sticky basket ---------- */
.sbasket {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
  display: flex; flex-direction: column; align-items: center;
  pointer-events: none;
}
.sbasket > * { pointer-events: auto; }

.sbasket__bar {
  width: 100%; max-width: var(--maxw);
  margin: 0 16px 16px;
  display: flex; align-items: center; gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(20,34,46,0.18);
  padding: 12px 14px 12px 12px;
  animation: sbasketIn .32s cubic-bezier(.2,.8,.2,1);
}
@keyframes sbasketIn { from { transform: translateY(120%); opacity: 0; } to { transform: none; opacity: 1; } }

.sbasket__toggle {
  display: flex; align-items: center; gap: 12px; background: none; border: none; padding: 4px; margin-right: auto;
}
.sbasket__badge {
  width: 38px; height: 38px; border-radius: 11px; flex: none;
  background: var(--brand); color: #fff; display: grid; place-items: center;
  font-size: 16px; font-weight: 800;
}
.sbasket__bar-text { display: flex; flex-direction: column; align-items: flex-start; }
.sbasket__bar-rooms { font-weight: 800; font-size: 15px; }
.sbasket__bar-hint { font-size: 12px; color: var(--brand); font-weight: 700; display: flex; align-items: center; gap: 5px; }
.sbasket__bar-hint i { font-size: 10px; }

.sbasket__bar-total { text-align: right; padding-right: 4px; }
.sbasket__bar-total-label { font-size: 11px; color: var(--ink-3); font-weight: 600; display: block; }
.sbasket__bar-total-val { font-size: 22px; font-weight: 800; letter-spacing: -.02em; }

.sbasket__reserve {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--amber); color: #2b1d00; border: none;
  padding: 13px 24px; border-radius: 12px; font-weight: 800; font-size: 15px;
  box-shadow: 0 8px 18px rgba(249,179,59,.35);
  transition: background .15s, transform .12s; white-space: nowrap;
}
.sbasket__reserve:hover { background: var(--amber-light); }
.sbasket__reserve:active { transform: scale(.97); }
.sbasket__reserve:disabled { background: var(--brand-wash); color: var(--brand-dark); box-shadow: none; }

/* expanded panel */
.sbasket__panel {
  width: 100%; max-width: var(--maxw);
  margin: 0 16px -4px;
  background: #fff;
  border: 1px solid var(--line);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -10px 30px rgba(20,34,46,0.08);
  padding: 16px 18px 18px;
  animation: panelIn .28s cubic-bezier(.2,.8,.2,1);
}
@keyframes panelIn { from { transform: translateY(20px); opacity: 0; } to { transform: none; opacity: 1; } }
.sbasket__panel-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.sbasket__panel-title { font-size: 15px; font-weight: 800; display: flex; align-items: center; gap: 9px; }
.sbasket__panel-title i { color: var(--brand); }
.sbasket__edit {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--brand-wash); color: var(--brand-dark); border: none;
  padding: 7px 13px; border-radius: 999px; font-size: 12.5px; font-weight: 800;
}
.sbasket__edit:hover { background: var(--brand-wash-2); }

.sbasket__list { max-height: 38vh; overflow-y: auto; display: flex; flex-direction: column; gap: 8px; }
.sbasket__row {
  display: flex; align-items: center; gap: 13px;
  padding: 11px 12px; border: 1px solid var(--line-2); border-radius: var(--radius-xs); background: #fff;
}
.sbasket__row-n {
  width: 28px; height: 28px; border-radius: 8px; flex: none;
  background: var(--brand-wash); color: var(--brand-dark);
  display: grid; place-items: center; font-size: 13px; font-weight: 800;
}
.sbasket__row-main { flex: 1; min-width: 0; }
.sbasket__row-name { font-weight: 700; font-size: 14.5px; }
.sbasket__row-sub { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 3px; }
.sbasket__guestpill {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--amber-wash); color: var(--amber-ink);
  font-size: 11.5px; font-weight: 800; padding: 3px 9px; border-radius: 7px;
}
.sbasket__meal { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--ink-3); font-weight: 600; }
.sbasket__row-price { font-weight: 800; font-size: 15px; white-space: nowrap; }
.sbasket__row-x {
  width: 28px; height: 28px; border-radius: 8px; border: 1px solid var(--line);
  background: #fff; color: var(--ink-3); font-size: 12px; display: grid; place-items: center; flex: none;
  transition: all .15s ease;
}
.sbasket__row-x:hover { background: #fff3f1; border-color: #f4cfc9; color: #c0392b; }

/* ---------- responsive ---------- */
@media (max-width: 992px) {
  .page-top__bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .page-top__bar .trust {
    justify-content: flex-start;
    width: 100%;
  }
}

@media (max-width: 860px) {
  .searchbar__inner { gap: 10px; }
  .search-fields { flex: 1; }
  .search-field { padding: 8px 12px; }
}

@media (max-width: 760px) {
  .page-title { font-size: 26px; }
  .page-top__bar .trust {
    gap: 8px;
  }
  .page-top__bar .trust__item {
    font-size: 11px;
    padding: 7px 10px;
    white-space: normal;
  }
  .room__grid { grid-template-columns: 1fr; }
  .room__media { height: 190px; }
  .rate { grid-template-columns: 1fr; gap: 12px; }
  .rate__buy { align-items: stretch; text-align: left; min-width: 0; }
  .rate__buy .rate__price-wrap { display: flex; align-items: baseline; gap: 8px; }
  .book-btn { justify-content: center; }
  .searchbar__inner { flex-direction: column; align-items: stretch; }
  .search-fields { flex-direction: column; border-radius: var(--radius-sm); }
  .search-field + .search-field::before { left: 16px; right: 16px; top: 0; bottom: auto; width: auto; height: 1px; }
  .search-go { margin: 8px; justify-content: center; padding: 12px; }
  .popover { left: 0; right: 0; width: auto; }
  .sbasket__bar { flex-wrap: wrap; gap: 10px; margin: 0 10px 10px; }
  .sbasket__bar-total { order: 2; margin-left: auto; }
  .sbasket__reserve { order: 3; flex: 1; justify-content: center; }
  .sbasket__panel { margin: 0 10px -4px; }
  .sbasket__list { max-height: 44vh; }
}

/* ============================================================
   PHP integration / bridge styles
   ============================================================ */
.book-online-page.be-redesign .page,
.book-online-page.be-redesign #booking-section {
  background: transparent;
}

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

.search-field.is-active,
.search-field:focus-within {
  background: var(--brand-wash);
}

.search-field__input {
  display: block;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  width: 100%;
  min-width: 0;
  cursor: pointer;
}

.search-field__input:focus { outline: none; }

.search-dates,
.search-guest-wrap {
  position: relative;
  display: flex;
}

.search-guest-wrap .popover {
  right: 0;
  left: auto;
}

.guests-panel { display: none; }
.guests-panel.active { display: block; }

.guest-btn.disabled,
.stepper button:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.child-ages__label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--ink-3);
  font-weight: 800;
  margin-bottom: 8px;
  padding: 0 12px;
}

.child-ages__row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 12px 12px;
}

.child-ages__row select,
.child-ages__select {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 8px;
  font-family: inherit;
  font-size: 13px;
}

.basket__items { padding: 8px 0 12px; }

.basket__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-2);
}

.basket__item:last-child { border-bottom: none; }

.basket__item-main { flex: 1; min-width: 0; }

.basket__item-name { font-size: 15px; font-weight: 600; }

.basket__item-sub { font-size: 12.5px; color: var(--ink-3); margin-top: 2px; }

.basket__item-price { font-size: 16px; font-weight: 800; white-space: nowrap; }

.sbasket__panel[hidden] { display: none !important; }

.room-occupancy-editor {
  padding: 8px 12px 4px;
  font-size: 12.5px;
  color: var(--ink-2);
}

.room-occupancy-editor__title {
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--ink);
}

.room-occupancy-editor__hint {
  margin-bottom: 8px;
  font-size: 12px;
}

.room-occupancy-editor__row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 6px 0;
  border-top: 1px solid var(--line-2);
}

#booking-section {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  margin: 0;
}

.booking-engine-container {
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
  margin: 0;
}

.be-loading,
.be-empty,
.be-message {
  text-align: center;
  padding: 48px 24px;
  color: var(--ink-2);
}

.be-loading__spinner,
.spinner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--brand-wash-2);
  border-top-color: var(--brand);
  margin: 0 auto 16px;
  animation: beSpin .9s linear infinite;
}

@keyframes beSpin { to { transform: rotate(360deg); } }

.be-message__icon {
  font-size: 2.4rem;
  color: var(--brand);
  margin-bottom: 14px;
}

.be-message__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.be-message__cta {
  margin-top: 16px;
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 11px;
  padding: 12px 24px;
  font-weight: 800;
  cursor: pointer;
}

.room__photo img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
}

.room__photo--placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #7d97ab;
}

.rate.restricted {
  opacity: .72;
}

.rate__restriction {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #fff3f1;
  color: #c0392b;
  border-radius: var(--radius-xs);
  padding: 10px 12px;
  font-size: 12.5px;
  font-weight: 700;
  margin-top: 8px;
}

.rate .price-details-trigger {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 600;
  margin: 4px 0 8px;
}

.rate .price-details-help {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  border: 1.5px solid var(--brand);
  color: var(--brand);
  background: #fff;
  font-size: 11px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 0;
}

.rate .price-details-help:hover {
  background: var(--brand);
  color: #fff;
}

.availability-quantity-select {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

#booking-alerts {
  margin-bottom: 14px;
}

#booking-alerts .alert {
  border-radius: var(--radius-xs);
  border: 1px solid var(--line);
}

.restriction-warnings-container {
  margin-bottom: 16px;
}

.restriction-warnings {
  background: var(--amber-wash);
  border: 1px solid #f3dcae;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 13.5px;
  color: var(--amber-ink);
}

.restriction-warning-error {
  color: #c0392b;
}

/* Price details modal (existing popup) */
.price-details-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
}

.price-details-popup--visible { display: flex; }

.price-details-popup__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 30, 42, 0.55);
  backdrop-filter: blur(3px);
}

.price-details-popup__dialog {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: var(--radius);
  width: min(440px, 96vw);
  max-height: 88vh;
  overflow: auto;
  box-shadow: var(--shadow-lg);
}

.price-details-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--line-2);
  color: var(--ink-2);
  font-size: 18px;
  cursor: pointer;
}

.price-details-popup__body { padding: 20px 22px 22px; }

.price-details-popup__header h3 {
  margin: 0 0 6px;
  font-size: 19px;
  font-weight: 800;
}

.price-details-list {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 16px 0;
}

.price-details-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  font-size: 14px;
  border-top: 1px solid var(--line-2);
}

.price-details-row:first-child { border-top: none; }

.price-details-row--total {
  background: var(--brand-wash);
  font-weight: 800;
}

.price-details-cancellation h4 {
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 8px;
}

.booking-room-guests {
  margin-top: 14px;
  padding: 18px;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-sm);
}

.booking-room-guests__title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 8px;
}

.booking-room-guests__assigned {
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  display: inline-block;
  background: var(--amber-wash);
  color: var(--amber-ink);
}

.booking-room-guests__assigned.is-ok {
  background: var(--ok-wash);
  color: var(--ok);
}

.booking-room-guests__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}

.booking-room-guests__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  padding: 14px 15px;
}

.booking-room-guests__head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
}

.booking-room-guests__controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.booking-room-guests__controls label span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--ink-3);
  font-weight: 800;
  margin-bottom: 5px;
}

.booking-room-guests__controls select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 9px 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
}

.book-online-prefill-banner {
  display: none;
  margin-bottom: 16px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
}

body.book-online--has-dates .book-online-prefill-banner.is-visible {
  display: block;
}

.book-online-prefill-banner__cta {
  display: block;
  width: 100%;
  margin-top: 10px;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-weight: 800;
  background: var(--amber-light);
  color: #2b1d00;
  cursor: pointer;
}

.book-online-page .booking-page-loader {
  font-family: "Manrope", sans-serif;
}

#booking-section.book-online-highlight {
  animation: bookOnlineSectionPulse 1.4s ease;
}

@keyframes bookOnlineSectionPulse {
  0%, 100% { box-shadow: none; }
  40% { box-shadow: 0 0 0 3px rgba(32, 119, 186, 0.35); }
}

.view-room-details-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
}

.view-room-details-btn:hover { text-decoration: underline; }

.sbasket.is-visible { display: flex !important; }

#booking-selection-basket.is-visible { display: block !important; }

.book-online-page.be-redesign .search-fields {
  display: flex !important;
  flex-wrap: nowrap;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  overflow: visible;
}

.book-online-page.be-redesign .search-dates.date-input-container {
  position: relative;
  overflow: visible;
  z-index: 2;
}

.book-online-page.be-redesign .search-dates.date-input-container .modern-datepicker {
  z-index: 10050;
}

.book-online-page.be-redesign .search-field {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border: none !important;
  background: #fff !important;
  box-shadow: none !important;
  min-height: 0 !important;
  flex: 1 1 auto;
  text-align: left;
}

.book-online-page.be-redesign .search-go {
  display: inline-flex !important;
  align-items: center;
  gap: 9px;
  flex: 0 0 auto;
  width: auto !important;
  min-height: 0 !important;
  border-radius: 999px !important;
}

.book-online-page.be-redesign .searchbar {
  overflow: visible;
}

.book-online-page.be-redesign .searchbar__inner {
  overflow: visible;
}

.book-online-page.be-redesign .search-dates {
  display: flex;
  flex: 2 1 auto;
  min-width: 0;
}

.book-online-page.be-redesign .search-guest-wrap {
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
}

.book-online-page.be-redesign nav.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  background: transparent;
  padding: 0;
  margin: 0 0 16px;
  list-style: none;
}

.book-online-page.be-redesign nav.breadcrumb a {
  color: var(--ink-3);
  text-decoration: none;
}

.book-online-page.be-redesign nav.breadcrumb a:hover {
  color: var(--brand);
}

.book-online-page.be-redesign .back-link {
  color: var(--brand);
  text-decoration: none;
}

.book-online-page.be-redesign .room__name a {
  color: inherit;
  text-decoration: none;
}

.book-online-page.be-redesign .room__detailslink {
  color: var(--brand);
  text-decoration: none;
}

/* Tablet + mobile: same stacked search card as phone (avoids hybrid with legacy engine-fix) */
@media (max-width: 992px) {
  .book-online-page.be-redesign .searchbar__inner {
    padding: 0 16px 16px;
  }

  .book-online-page.be-redesign .search-fields {
    flex-direction: column;
    border-radius: 18px;
    border: 1px solid #e7edf2;
    box-shadow: 0 1px 2px rgba(20, 34, 46, 0.04), 0 2px 8px rgba(20, 34, 46, 0.04);
    overflow: hidden;
    background: #fff;
  }

  .book-online-page.be-redesign .search-dates {
    flex-direction: column;
    width: 100%;
    border-bottom: 1px solid #e7edf2;
  }

  .book-online-page.be-redesign .search-field {
    width: 100%;
    min-height: 56px;
    padding: 12px 14px 14px;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    border-radius: 0;
    background: #fff !important;
  }

  .book-online-page.be-redesign .search-field > i {
    display: none;
  }

  .book-online-page.be-redesign .search-field + .search-field::before {
    display: none;
  }

  .book-online-page.be-redesign .search-field + .search-field {
    border-top: 1px solid #e7edf2;
  }

  .book-online-page.be-redesign .search-field__label {
    font-size: 10.5px;
    letter-spacing: 0.07em;
    color: #8492a0;
    font-weight: 700;
  }

  .book-online-page.be-redesign .search-field__input,
  .book-online-page.be-redesign .search-field__value {
    display: block;
    width: 100%;
    text-align: center;
    border: 1.5px solid #e7edf2;
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 17px;
    font-weight: 700;
    color: #14222e;
    min-height: 44px;
    box-sizing: border-box;
  }

  .book-online-page.be-redesign .search-field__input::placeholder {
    font-size: 14px;
    font-weight: 600;
    color: #8492a0;
  }

  .book-online-page.be-redesign .search-field__input:placeholder-shown {
    font-size: 14px;
    font-weight: 600;
    color: #8492a0;
  }

  .book-online-page.be-redesign .search-guest-wrap {
    width: 100%;
    border-bottom: 1px solid #e7edf2;
  }

  .book-online-page.be-redesign .search-guest-wrap .search-field {
    border-top: none;
  }

  .book-online-page.be-redesign .search-guest-wrap .search-field__value {
    border: none;
    padding: 0;
    text-align: left;
    font-size: 14.5px;
    font-weight: 600;
    min-height: 0;
  }

  .book-online-page.be-redesign .search-go {
    margin: 0 !important;
    width: 100% !important;
    border-radius: 0 !important;
    justify-content: center;
    min-height: 52px;
    padding: 16px;
    font-size: 16px;
    font-weight: 800;
    background: #2077ba;
  }

  .book-online-page.be-redesign .search-go i {
    display: none;
  }
}

@media (max-width: 768px) {
  body > .modern-datepicker-backdrop {
    z-index: 10099;
  }

  body > .modern-datepicker.modern-datepicker--mobile {
    z-index: 10100;
  }
}

/* Loaded before booking-engine-fix.css: keep book-online search isolated from legacy .date-input-container rules */
@media (max-width: 992px) {
  .book-online-page.be-redesign .search-dates.date-input-container {
    padding: 0;
    gap: 0;
    border: none;
    background: transparent;
    cursor: default;
  }
}
