/* ============================================================
 * Rentz Header v1.0 — pixel-perfect rebuild
 * Color palette:
 *   #EE6B2D  orange brand          #15161C  ink
 *   #6A6B73  muted                 #A8A6A0  faded
 *   #ECE9E0  hairline              #FAF7EF  cream-50
 *   #FFF0E7  cream-100             #ebe7dd  utility-bar bg
 *   #f0eee9  page bg               #d8d3c4  utility-line
 *   #F4F2EC  surface neutral       #C04C12  orange-ink (deep)
 * ============================================================ */

.rh-wrap {
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  color: #15161C;
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  width: 100%;
}

/* Strip padding/margin/max-width from the entire Porto wrapper chain that
 * sits around our shortcode. Mirrors the no_padding="yes" pattern the
 * Footer (porto_builder #3067) uses to span full viewport width. The inner
 * .rh-utility-inner / .rh-mainbar still cap content at 1280px. */
.rh-header-v2-wrap,
.rh-header-v2-wrap > .vc_column_container,
.rh-header-v2-wrap .wpb_wrapper,
.rh-header-v2-wrap .wpb_text_column,
.rh-header-v2-wrap .vc_column-inner,
.porto-block:has(.rh-wrap),
.porto-block:has(.rh-wrap) > .container-fluid,
.vc_row:has(.rh-wrap),
.vc_row:has(.rh-wrap) > .vc_column_container,
.vc_row:has(.rh-wrap) .vc_column-inner,
.vc_row:has(.rh-wrap) .wpb_wrapper,
.vc_row:has(.rh-wrap) .wpb_text_column {
  padding: 0 !important;
  margin: 0 !important;
  max-width: none !important;
  width: 100% !important;
}

/* Logo image — replaces the inline-SVG wordmark. */
.rh-logo-img {
  display: block;
  height: 38px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* Neutralize any Porto wrappers eating padding/borders around us. */
.rh-wrap *,
.rh-wrap *::before,
.rh-wrap *::after {
  box-sizing: border-box;
}
.rh-wrap a {
  text-decoration: none;
  color: inherit;
}
.rh-wrap button {
  font-family: inherit;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  color: inherit;
}
.rh-wrap ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rh-i {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ============================================================
 * Wordmark
 * ============================================================ */
.rh-wm {
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}
.rh-wm-i {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  margin-right: 1px;
}
.rh-wm-pin {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  line-height: 0;
}
.rh-wm-i-hidden { visibility: hidden; }

/* ============================================================
 * Avatar (orange gradient with initials)
 * ============================================================ */
.rh-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #EE6B2D 0%, #c8521f 100%);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  line-height: 1;
}

/* ============================================================
 * Desktop chrome
 * ============================================================ */
.rh-desktop {
  display: block;
  background: #fff;
}

/* Utility bar — soft cream (matches --rpd-soft on property pages) */
.rh-utility {
  background: #FAF7EF;
  border-bottom: 1px solid #ECE9E0;
  color: #5A5B62;
}
.rh-utility-inner {
  /* Match footer pattern: no max-width cap, just side padding gutters. */
  width: 100%;
  padding: 0 40px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
}
.rh-utility-left,
.rh-utility-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.rh-utility-left { gap: 16px; }
.rh-utility-sep {
  width: 1px;
  height: 11px;
  background: #ECE9E0;
  display: inline-block;
}
.rh-utility-text { white-space: nowrap; }
.rh-utility-muted { opacity: 0.85; }
.rh-utility-link {
  color: inherit;
}
.rh-utility-link:hover { color: #15161C; }
.rh-lang {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: inherit;
  font-size: inherit;
  white-space: nowrap;
}
.rh-utility-user,
.rh-utility-signin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #15161C;
  white-space: nowrap;
}
.rh-utility-user strong { color: #15161C; font-weight: 700; }
.rh-utility-signin { gap: 5px; }

/* Main bar wrap holds bar + mega-menu so menus anchor to it */
.rh-mainbar-wrap {
  position: relative;
  border-bottom: 1px solid #ECE9E0;
}
.rh-wrap[data-rh-mega-open] .rh-mainbar-wrap {
  border-bottom-color: transparent;
}

.rh-mainbar {
  /* Match footer pattern: no max-width cap, just side padding gutters. */
  width: 100%;
  padding: 0 40px;
  height: 76px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}
.rh-logo {
  display: inline-flex;
  align-items: center;
  color: #15161C;
}

.rh-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.rh-nav-slot { display: inline-flex; }

.rh-nav-link {
  position: relative;
  color: #6A6B73;
  font-weight: 500;
  font-size: 14.5px;
  padding: 24px 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s;
  white-space: nowrap;
}
.rh-nav-link:hover,
.rh-nav-link.is-active,
.rh-nav-slot.is-hovering .rh-nav-link {
  color: #15161C;
  font-weight: 700;
}
.rh-nav-underline {
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 3px;
  background: #EE6B2D;
  border-radius: 3px 3px 0 0;
}

/* Hot Deals pill */
.rh-hot-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #EE6B2D;
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  margin: 0 6px;
  box-shadow: 0 4px 10px -6px rgba(238,107,45,0.45);
  transition: box-shadow 0.15s, transform 0.15s;
  white-space: nowrap;
}
.rh-hot-pill:hover {
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(238,107,45,0.55);
  transform: translateY(-1px);
}
.rh-hot-pill-count {
  background: rgba(255,255,255,0.22);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 1px 7px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* Right actions */
.rh-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.rh-iconbtn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #ECE9E0;
  color: #15161C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s, background 0.15s;
}
.rh-iconbtn:hover {
  border-color: #15161C;
  color: #15161C;
}
.rh-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: #EE6B2D;
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  line-height: 1;
}
.rh-list-link {
  margin-left: 6px;
  color: #15161C;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  border-bottom: 1px dashed #A8A6A0;
  padding-bottom: 2px;
}
.rh-list-link:hover {
  color: #15161C;
  border-bottom-color: #15161C;
}

/* ============================================================
 * Mega-menu shell
 * ============================================================ */
.rh-mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-top: 1px solid #ECE9E0;
  border-bottom: 1px solid #ECE9E0;
  box-shadow: 0 24px 48px -24px rgba(20,22,30,0.18);
  font-family: "DM Sans", system-ui, sans-serif;
  color: #15161C;
  z-index: 10;
}
.rh-mega[hidden] { display: none; }

.rh-mega-inner {
  /* Match footer pattern: no max-width cap, just side padding gutters. */
  width: 100%;
  padding: 28px 40px;
  display: grid;
  gap: 36px;
}
.rh-mega-properties { grid-template-columns: 2fr 1fr; }
.rh-mega-compounds  { grid-template-columns: 2.4fr 1fr; }

.rh-mega-col-side {
  border-left: 1px solid #ECE9E0;
  padding-left: 32px;
}

.rh-mega-title {
  margin: 0 0 14px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6A6B73;
}
.rh-mega-title-stacked { margin-top: 22px; }
.rh-mega-title-flat    { margin: 0; }

.rh-mega-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}

.rh-viewall {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #EE6B2D;
  font-weight: 700;
  font-size: 13px;
}
.rh-viewall:hover { color: #C04C12; }
.rh-viewall-wrap { margin-top: 22px; }

/* Properties B — type tiles */
.rh-type-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.rh-type-tile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid #ECE9E0;
  border-radius: 10px;
  background: #fff;
  color: #15161C;
  transition: border-color 0.12s, background 0.12s;
}
.rh-type-tile:hover {
  border-color: #EE6B2D;
  background: #FFF8F2;
  color: #15161C;
}
.rh-type-tile-ico {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: #F4F2EC;
  color: #15161C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rh-type-tile-body { min-width: 0; }
.rh-type-tile-label {
  font-weight: 700;
  font-size: 13.5px;
}
.rh-type-tile-hint {
  font-size: 11.5px;
  color: #6A6B73;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Properties B — chip row */
.rh-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.rh-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: #F4F2EC;
  color: #15161C;
  border: 1px solid #ECE9E0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}
.rh-chip:hover {
  border-color: #EE6B2D;
  color: #C04C12;
  background: #FFF0E7;
}

/* Stay-type rows (right column) */
.rh-stay-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rh-stay-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid #ECE9E0;
  border-radius: 10px;
  color: #15161C;
  transition: border-color 0.12s;
}
.rh-stay-row:hover { border-color: #EE6B2D; color: #15161C; }
.rh-stay-ico {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #FFF0E7;
  color: #EE6B2D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rh-stay-label {
  font-weight: 700;
  font-size: 14px;
}
.rh-stay-hint {
  font-size: 12px;
  color: #6A6B73;
}

/* Compounds B — image grid */
.rh-compound-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.rh-cc { display: block; color: #15161C; }
.rh-cc:hover { color: #15161C; }
.rh-cc-photo {
  position: relative;
  height: 92px;
  border-radius: 10px;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, #d9d4c4 0 8px, #cbc5b3 8px 16px);
  background-size: cover;
  background-position: center;
}
.rh-cc-photo.has-thumb {
  background-repeat: no-repeat;
}
.rh-cc-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  color: #fff;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 3px 6px;
  border-radius: 4px;
}
.rh-cc-badge-top   { background: #15161C; }
.rh-cc-badge-trend { background: #EE6B2D; }
.rh-cc-name {
  margin-top: 8px;
  font-weight: 700;
  font-size: 13.5px;
  line-height: 1.25;
}
.rh-cc-count {
  font-size: 11.5px;
  color: #6A6B73;
  margin-top: 1px;
}

/* Region tiles */
.rh-region-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rh-region-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  margin: 0 -10px;
  border-radius: 8px;
  color: #15161C;
  transition: background 0.12s;
}
.rh-region-row:hover { background: #FAF7EF; color: #15161C; }
.rh-region-ico {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: #FFF0E7;
  color: #EE6B2D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rh-region-name {
  font-weight: 600;
  font-size: 13.5px;
  flex: 1;
}
.rh-region-count {
  font-size: 11.5px;
  color: #A8A6A0;
}

/* ============================================================
 * Mobile header + drawer
 * ============================================================ */
.rh-mobile { display: none; }
.rh-drawer { display: none; }

@media (max-width: 980px) {
  .rh-desktop { display: none; }
  .rh-mobile {
    display: flex;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #ECE9E0;
    color: #15161C;
    padding: 12px 16px;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }
  .rh-mobile-logo {
    display: inline-flex;
    align-items: center;
    padding: 4px 0;
    color: #15161C;
  }
  .rh-mobile-right {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .rh-mobile-hot {
    height: 36px;
    padding: 0 12px 0 10px;
    border-radius: 999px;
    background: #EE6B2D;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 4px 10px -6px rgba(238,107,45,0.45);
  }
  .rh-mobile-hot:hover { color: #fff; }
  .rh-mobile-hot-count {
    background: rgba(255,255,255,0.22);
    color: #fff;
    font-size: 10.5px;
    font-weight: 800;
    padding: 1px 6px;
    border-radius: 999px;
    min-width: 18px;
    text-align: center;
  }
  .rh-mobile-burger {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: transparent;
    color: #15161C;
    border: 1px solid #ECE9E0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Mobile drawer overlay */
  .rh-drawer {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 200;
    pointer-events: none;
  }
  .rh-drawer[hidden] { display: none; }
  .rh-drawer-scrim {
    position: absolute;
    inset: 0;
    background: rgba(20,22,30,0.45);
    opacity: 0;
    transition: opacity 0.2s ease-out;
    pointer-events: auto;
  }
  .rh-drawer.is-open .rh-drawer-scrim { opacity: 1; }
  .rh-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 92%;
    max-width: 360px;
    background: #fff;
    box-shadow: -10px 0 32px -8px rgba(20,22,30,0.18);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.25s ease-out;
    pointer-events: auto;
    overflow: hidden;
  }
  .rh-drawer.is-open .rh-drawer-panel { transform: translateX(0); }
  .rh-drawer-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid #ECE9E0;
  }
  .rh-drawer-close {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid #ECE9E0;
    color: #15161C;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Signed-in welcome chip */
  .rh-drawer-welcome {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    border-bottom: 1px solid #ECE9E0;
    background: linear-gradient(135deg, #fdf6ef 0%, #f5ede0 100%);
  }
  .rh-drawer-welcome-text { flex: 1; min-width: 0; }
  .rh-drawer-welcome-eyebrow {
    font-size: 12px;
    color: #6A6B73;
  }
  .rh-drawer-welcome-name {
    font-size: 16px;
    font-weight: 800;
    color: #15161C;
    letter-spacing: -0.01em;
  }
  .rh-drawer-account {
    color: #15161C;
    font-size: 12.5px;
    font-weight: 700;
    padding: 7px 10px;
    border-radius: 999px;
    border: 1px solid #ECE9E0;
    background: #fff;
  }

  /* Wishlist + Trips strip */
  .rh-drawer-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid #ECE9E0;
  }
  .rh-drawer-strip-cell {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #15161C;
    border-right: 1px solid #ECE9E0;
  }
  .rh-drawer-strip-cell:last-child { border-right: none; }
  .rh-drawer-strip-ico { color: #EE6B2D; display: inline-flex; }
  .rh-drawer-strip-eyebrow {
    font-size: 10.5px;
    color: #6A6B73;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .rh-drawer-strip-value {
    font-size: 13.5px;
    font-weight: 700;
  }

  /* Sign-in CTA card (signed-out) */
  .rh-drawer-signin {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid #ECE9E0;
    background: #FAF7EF;
    color: #15161C;
  }
  .rh-drawer-signin-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ECE9E0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #15161C;
    flex-shrink: 0;
  }
  .rh-drawer-signin-text { flex: 1; min-width: 0; }
  .rh-drawer-signin-eyebrow {
    font-size: 12.5px;
    color: #6A6B73;
  }
  .rh-drawer-signin-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #15161C;
  }
  .rh-drawer-signin-cta {
    color: #EE6B2D;
    font-weight: 700;
    font-size: 13px;
  }

  /* Drawer nav */
  .rh-drawer-nav {
    padding: 8px 20px 0;
    flex: 1;
    overflow-y: auto;
  }
  .rh-drawer-hot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #EE6B2D;
    color: #fff;
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    margin: 12px 0;
    box-shadow: 0 4px 12px -6px rgba(238,107,45,0.5);
  }
  .rh-drawer-hot:hover { color: #fff; }
  .rh-drawer-hot-left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .rh-drawer-hot-count {
    background: rgba(255,255,255,0.22);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 999px;
  }

  /* Both <a> and <button> flavours of drawer-row share the same look.
   * Lead with .rh-wrap so the button variant outranks the .rh-wrap button
   * reset (transparent bg + padding:0). */
  .rh-wrap .rh-drawer-row,
  .rh-drawer .rh-drawer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #ECE9E0;
    color: #15161C;
    font-size: 15.5px;
    font-weight: 600;
    min-height: 52px;
    text-align: left;
    background: transparent;
    cursor: pointer;
  }
  .rh-drawer-row-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .rh-drawer-row-caret {
    color: #A8A6A0;
    transform: rotate(-90deg);
    display: inline-flex;
  }

  /* Accordion */
  .rh-acc {
    border-bottom: 1px solid #ECE9E0;
  }
  /* .rh-wrap .rh-acc-head — explicit two-class selector beats the
   * .rh-wrap button {padding:0} reset that would otherwise crush the row
   * height to ~24px (text-only) and make Properties/Compounds look
   * tighter than Home/Contact/About. */
  .rh-wrap .rh-acc-head,
  .rh-drawer .rh-acc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px 0;
    color: #15161C;
    font-size: 15.5px;
    font-weight: 600;
    text-align: left;
    min-height: 52px;   /* belt-and-braces — matches .rh-drawer-row visual height */
  }
  .rh-acc-caret {
    color: #6A6B73;
    transition: transform 0.15s;
    display: inline-flex;
  }
  .rh-acc[data-rh-acc-open="1"] .rh-acc-caret {
    transform: rotate(180deg);
  }
  .rh-acc-body { display: none; padding: 0 0 14px; }
  .rh-acc[data-rh-acc-open="1"] .rh-acc-body { display: block; }

  .rh-acc-group { margin-bottom: 10px; }
  .rh-acc-eyebrow {
    font-size: 10.5px;
    font-weight: 700;
    color: #6A6B73;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 4px 0 6px;
  }
  .rh-acc-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }
  .rh-acc-list a {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 8px 12px;
    margin: 0 -12px;
    border-radius: 8px;
    color: #15161C;
    font-size: 14px;
    font-weight: 500;
  }
  .rh-acc-list a:hover {
    background: #FAF7EF;
    color: #EE6B2D;
  }
  .rh-acc-num {
    font-size: 12px;
    color: #A8A6A0;
  }
  .rh-acc-viewall {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #EE6B2D;
    font-weight: 700;
    font-size: 13px;
    padding: 6px 0 4px;
  }

  /* List your property + lang buttons */
  .rh-drawer-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 6px;
    color: #15161C;
    font-size: 13.5px;
    font-weight: 600;
  }
  .rh-drawer-list-left {
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .rh-drawer-langs {
    display: flex;
    gap: 8px;
    padding: 8px 0 18px;
  }
  .rh-drawer-langbtn {
    flex: 1;
    background: #F4F2EC;
    border: 1px solid #ECE9E0;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #15161C;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  /* Drawer foot */
  .rh-drawer-foot {
    padding: 14px 20px;
    border-top: 1px solid #ECE9E0;
    background: #FAF7EF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12.5px;
    color: #6A6B73;
  }
  .rh-drawer-foot strong { color: #15161C; }
  .rh-drawer-foot-link {
    color: #EE6B2D;
    font-weight: 700;
  }

  /* Lock body scroll when drawer is open */
  body.rh-locked { overflow: hidden; }
}

/* Narrower phone polish — keep utility bar hidden on mobile (already hidden) */
@media (max-width: 480px) {
  .rh-mobile { padding: 10px 12px; }
  .rh-mobile-hot { padding: 0 10px 0 8px; font-size: 12.5px; }
}

/* ============================================================
 * Porto neutralization — outer .header wrapper paddings can bleed in
 * ============================================================ */
.header .rh-wrap,
.site-header .rh-wrap,
#header .rh-wrap {
  padding: 0;
  margin: 0;
}
.header:has(.rh-wrap),
.site-header:has(.rh-wrap),
#header:has(.rh-wrap) {
  background: transparent;
  border: none;
  box-shadow: none;
}
.rh-wrap a:focus,
.rh-wrap button:focus {
  outline: 2px solid #EE6B2D;
  outline-offset: 2px;
}

/* ============================================================
 * SEARCH MODAL — opened by the magnifier in the header.
 * Visual language mirrors the property-page reservation card:
 *   DM Sans, 18px radius, #15161C ink, 11px .14em label caps,
 *   #ECE9E0 hairlines, #EE6B2D brand orange CTA, soft cream surface.
 * ============================================================ */
.rh-search-modal[hidden] { display: none; }
.rh-search-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 72px 24px 24px;
  opacity: 0;
  transition: opacity 200ms ease;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  color: #15161C;
}
.rh-search-modal.is-open { opacity: 1; }
.rh-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 22, 30, .52);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.rh-search-card {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: #fff;
  border-radius: 18px;
  padding: 32px 32px 28px;
  box-shadow:
    0 24px 72px -16px rgba(20, 22, 30, .32),
    0 0 0 1px rgba(20, 22, 30, .04);
  transform: translateY(14px);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}
.rh-search-modal.is-open .rh-search-card {
  transform: translateY(0);
  opacity: 1;
}

/* Close — small round, top-right, faded ink */
.rh-search-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #A8A6A0;
  padding: 0;
  transition: background 120ms ease, color 120ms ease;
}
.rh-search-close:hover {
  background: #FAF7EF;
  color: #15161C;
}

/* Title block — soft cream accent stripe above */
.rh-search-head {
  position: relative;
  margin: 0 0 22px;
  padding-top: 4px;
}
.rh-search-accent {
  display: block;
  width: 36px;
  height: 3px;
  border-radius: 3px;
  background: #EE6B2D;
  margin-bottom: 14px;
}
.rh-search-title {
  margin: 0 0 6px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: #15161C;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.15;
}
.rh-search-title-ico {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: #FFF0E7;
  color: #EE6B2D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rh-search-sub {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: #6A6B73;
}

.rh-search-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.rh-search-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rh-search-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.rh-search-field label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #A8A6A0;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 0;
}
.rh-search-hint {
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: #A8A6A0;
  font-size: 11px;
}
.rh-search-field input[type="text"],
.rh-search-input {
  font: inherit;
  font-family: "DM Sans", system-ui, -apple-system, sans-serif;
  font-size: 14.5px;
  color: #15161C;
  background: #fff;
  border: 1px solid #ECE9E0;
  border-radius: 12px;
  padding: 14px 16px;
  height: 48px;
  width: 100%;
  outline: none;
  transition: border-color 120ms ease, box-shadow 120ms ease;
  box-shadow: none;
}
.rh-search-field input[type="text"]::placeholder,
.rh-search-input::placeholder { color: #A8A6A0; }
.rh-search-field input[type="text"]:hover { border-color: #d8d3c4; }
.rh-search-field input[type="text"]:focus,
.rh-search-input:focus {
  border-color: #15161C;
  box-shadow: 0 0 0 3px rgba(20, 22, 30, .06);
}

/* Native <select> styled to match the text inputs.
 * Strip the OS chrome and paint our own caret via background image. */
.rh-search-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;            /* room for caret */
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236A6B73' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
}
.rh-search-select:hover { border-color: #d8d3c4; }
.rh-search-select:focus { border-color: #15161C; box-shadow: 0 0 0 3px rgba(20, 22, 30, .06); }
.rh-search-field.is-invalid input[type="text"] {
  border-color: #C04C12;
  box-shadow: 0 0 0 3px rgba(192, 76, 18, .12);
}

/* ============================================================
 * DATE CARD — Litepicker-driven, identical look to the property
 * reservation form. Card styles come from bpr-form-v2.css; we
 * just position the calendar correctly inside the modal.
 * ============================================================ */
.rh-search-field-dates .bpr-rform__date-card {
  position: relative;
}
/* Backstop for the inline .bpr-range positioning — keep the
 * Litepicker anchor off-screen but inside the card so the
 * calendar pops out anchored to it. */
.rh-search-field-dates .bpr-range {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
  border: 0;
  padding: 0;
  top: 0;
  left: 0;
}
/* Litepicker calendar must sit above the modal card content but
 * inside the modal stack. */
.rh-search-modal .litepicker { z-index: 250; }

/* ============================================================
 * Brand-orange repaint of the Litepicker calendar inside the
 * search popup. The base styles in bpr-form-v2.css paint endpoints
 * + in-range cells in teal (--rf-teal) because the property
 * reservation form uses teal — but the popup is part of the orange
 * brand surface, so we repaint locally. Scoped strictly to
 * .rh-search-modal so the property page form stays teal.
 * ============================================================ */

/* Tooltip ("X nights") — black pill with white text. */
.rh-search-modal .bpr-rform__date-card .litepicker .container__tooltip {
  background-color: #15161C !important;
  color: #fff !important;
  box-shadow: 0 6px 16px -4px rgba(0,0,0,.32) !important;
}
.rh-search-modal .bpr-rform__date-card .litepicker .container__tooltip:before {
  border-top-color: rgba(0,0,0,.2) !important;
}
.rh-search-modal .bpr-rform__date-card .litepicker .container__tooltip:after {
  border-top-color: #15161C !important;
}

/* Hover on an available day — soft cream wash + orange ring (slightly
 * stronger than the form's default to feel deliberate in the modal). */
.rh-search-modal .bpr-rform__date-card .litepicker .container__days .day-item:hover:not(.is-locked):not(.is-start-date):not(.is-end-date):not(.is-in-range) {
  background: #FFF0E7 !important;
  color: #15161C !important;
  box-shadow: inset 0 0 0 1px #EE6B2D !important;
}

/* Today — orange ring instead of teal. */
.rh-search-modal .bpr-rform__date-card .litepicker .container__days .day-item.is-today {
  box-shadow: inset 0 0 0 1px #EE6B2D !important;
}

/* Endpoints (selected start + end) — solid brand orange. */
.rh-search-modal .bpr-rform__date-card .litepicker .container__days .day-item.is-start-date,
.rh-search-modal .bpr-rform__date-card .litepicker .container__days .day-item.is-end-date,
.rh-search-modal .bpr-rform__date-card .litepicker .container__days .day-item.is-start-date:hover,
.rh-search-modal .bpr-rform__date-card .litepicker .container__days .day-item.is-end-date:hover {
  background: #EE6B2D !important;
  color: #fff !important;
}

/* In-range days — soft cream wash, ink text. */
.rh-search-modal .bpr-rform__date-card .litepicker .container__days .day-item.is-in-range,
.rh-search-modal .bpr-rform__date-card .litepicker .container__days .day-item.is-in-range:hover {
  background: rgba(238,107,45,.16) !important;
  color: #15161C !important;
}

/* The modal card mustn't clip the calendar that pops below the
 * date card. The card itself never scrolls; if it ever needed to,
 * we'd scope overflow:auto to the form area only. */
.rh-search-card { overflow: visible; }

/* Invalid-state ring for the date card (matches text-input style). */
.rh-search-field-dates.is-invalid .bpr-rform__date-card {
  border-color: #C04C12;
  box-shadow: 0 0 0 3px rgba(192, 76, 18, .12);
}

/* ============================================================
 * DESTINATION AJAX SUGGEST — mirrors .wpsps-suggest structure but
 * uses brand tokens (cream surfaces, hairlines, DM Sans, ink text).
 * ============================================================ */
.rh-search-dest-wrap {
  position: relative;
}
.rh-search-suggest {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ECE9E0;
  border-radius: 12px;
  box-shadow:
    0 18px 48px -16px rgba(20, 22, 30, .18),
    0 0 0 1px rgba(20, 22, 30, .04);
  max-height: 320px;
  overflow: auto;
  z-index: 10;
  font-family: "DM Sans", system-ui, sans-serif;
}
.rh-search-suggest[hidden] { display: none; }

.rh-search-group + .rh-search-group { border-top: 1px solid #ECE9E0; }
.rh-search-group-title {
  padding: 10px 14px 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #A8A6A0;
  background: #FAF7EF;
}
.rh-search-sug-item {
  padding: 10px 14px;
  cursor: pointer;
  border-top: 1px solid #F4F2EC;
  transition: background .12s ease;
}
.rh-search-group-title + .rh-search-sug-item { border-top: 0; }
.rh-search-sug-item:hover,
.rh-search-sug-item.is-focus { background: #FFF8F2; }
.rh-search-sug-title {
  font-size: 14px;
  font-weight: 600;
  color: #15161C;
  line-height: 1.3;
}
.rh-search-sug-trail {
  font-size: 12px;
  color: #6A6B73;
  margin-top: 2px;
  letter-spacing: 0;
}

/* ============================================================
 * STEPPER — mirrors the property page guests stepper:
 * 32px round buttons, 1px #ECE9E0 hairline, ink digits.
 * ============================================================ */
.rh-search-stepper-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid #ECE9E0;
  border-radius: 12px;
  height: 48px;
  padding: 0 8px;
}
.rh-search-step-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #ECE9E0;
  background: #fff;
  color: #15161C;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: border-color 120ms ease, color 120ms ease, background 120ms ease;
}
.rh-search-step-btn:hover:not(:disabled) {
  border-color: #15161C;
  color: #15161C;
  background: #FAF7EF;
}
.rh-search-step-btn:disabled {
  opacity: .35;
  cursor: not-allowed;
}
.rh-search-step-val {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #15161C;
  min-width: 28px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

/* Inline error */
.rh-search-error {
  margin: 2px 0 0;
  font-size: 12.5px;
  color: #C04C12;
  background: #FFF0E7;
  border: 1px solid #f3c9b1;
  border-radius: 10px;
  padding: 10px 12px;
}
.rh-search-error[hidden] { display: none; }

/* ============================================================
 * SUBMIT — full-width, 52px, brand orange, no shadow.
 * ============================================================ */
/* Selectors lead with .rh-search-modal so they outrank the .rh-wrap button
 * reset (transparent bg + no border) that would otherwise wash the orange
 * fill out — see the rule near the top of this file. */
.rh-search-modal .rh-search-submit,
.rh-wrap .rh-search-submit {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 52px;
  background: #EE6B2D !important;
  color: #fff !important;
  border: 0;
  border-radius: 12px;
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: background 140ms ease, transform 80ms ease;
  box-shadow: 0 6px 16px -8px rgba(238,107,45,.45);
}
.rh-search-modal .rh-search-submit:hover,
.rh-wrap .rh-search-submit:hover {
  background: #C04C12 !important;
  color: #fff !important;
  box-shadow: 0 10px 24px -10px rgba(192,76,18,.55);
}
.rh-search-modal .rh-search-submit:active,
.rh-wrap .rh-search-submit:active { transform: translateY(1px); }
.rh-search-modal .rh-search-submit:disabled,
.rh-wrap .rh-search-submit:disabled {
  background: #ECE9E0 !important;
  color: #A8A6A0 !important;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.rh-search-modal .rh-search-submit .rh-i,
.rh-wrap .rh-search-submit .rh-i { color: currentColor; }

/* Lock body scroll while open */
body.rh-search-open { overflow: hidden; }

/* Mobile — stack rows, tighten padding */
@media (max-width: 560px) {
  .rh-search-modal { padding: 24px; align-items: stretch; }
  .rh-search-card {
    padding: 26px 22px 22px;
    border-radius: 16px;
  }
  .rh-search-row { grid-template-columns: 1fr; gap: 14px; }
  .rh-search-title { font-size: 20px; }
  .rh-search-head { margin-bottom: 18px; }
}
