/* Hazelnutz — we're nutz about travel */

:root {
  --brown: #0B2A5B;
  --brown-dark: #061A3D;
  --orange: #FF8A00;
  --orange-dark: #F26A00;
  --cream: #F1F7FF;
  --cream-2: #DDEBFF;
  --sky: #1E88FF;
  --text: #14233F;
  --max: 1180px;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(11,42,91, 0.15);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Poppins', 'Segoe UI', Tahoma, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: 'Baloo 2', 'Poppins', sans-serif;
  color: var(--brown);
  line-height: 1.15;
  margin: 0 0 16px;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 16px; }

.eyebrow {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
  color: var(--orange-dark);
  background: #E6F0FF;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 8px 20px rgba(255,138,0, 0.35);
}
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); }

.btn-secondary {
  background: #fff;
  color: var(--brown);
  border: 2px solid var(--brown);
}
.btn-secondary:hover { background: var(--cream-2); transform: translateY(-2px); }

.btn-block { width: 100%; text-align: center; }

/* ---------- Header ---------- */

header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(241,247,255, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #D3E3FA;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--brown);
}
.brand img { height: 44px; width: auto; }
.brand .nutz { color: var(--orange); }

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

nav.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brown);
  white-space: nowrap;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  background: var(--cream-2);
  color: var(--orange-dark);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-cta .btn { padding: 10px 20px; font-size: 0.9rem; white-space: nowrap; }
.header-cta { flex: none; }

/* Between full-width and the mobile menu the nav gets cramped, so tighten it
   before it starts wrapping. */
@media (max-width: 1180px) {
  nav.main-nav a { padding: 10px 9px; font-size: 0.9rem; }
  .header-cta .btn { padding: 9px 15px; font-size: 0.85rem; }
  .brand img { height: 38px; }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--brown);
  cursor: pointer;
}

@media (max-width: 1080px) {
  nav.main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 24px 20px;
    border-bottom: 1px solid #D3E3FA;
    box-shadow: var(--shadow);
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav a { padding: 12px 10px; }
  .nav-toggle { display: block; }
  .header-cta .btn-secondary { display: none; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 90px;
  background: linear-gradient(180deg, #E6F0FF 0%, var(--cream) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero h1 { margin-bottom: 18px; }
.hero .lead { font-size: 1.15rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

.hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
}

/* ---------- Home search bar ---------- */

.search-bar {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: stretch;
  margin-top: -46px;
  position: relative;
  z-index: 5;
  padding: 8px;
  flex-wrap: wrap;
}
.search-field {
  flex: 1;
  min-width: 180px;
  padding: 10px 20px;
  border-right: 1px solid #D3E3FA;
  position: relative;
}
.search-field:last-of-type { border-right: none; }
.search-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6B7C99;
  margin-bottom: 4px;
}
.search-field input[type="text"] {
  border: none;
  font-size: 0.95rem;
  width: 100%;
  font-family: inherit;
  color: var(--text);
  background: transparent;
}
.search-field input[type="text"]:focus { outline: none; }
.search-dates { display: flex; align-items: center; gap: 8px; }
.search-dates input[type="date"] {
  border: none;
  font-family: inherit;
  font-size: 0.88rem;
  color: var(--text);
  background: transparent;
  width: 100%;
}
.search-dates input[type="date"]:focus { outline: none; }
.occupancy-toggle {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  cursor: pointer;
  padding: 0;
  text-align: left;
  width: 100%;
}
.occupancy-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 18px;
  width: 260px;
  z-index: 10;
}
.occupancy-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; font-weight: 600; }
.stepper { display: flex; align-items: center; gap: 12px; }
.stepper button {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid #D3E3FA;
  background: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--orange-dark);
  cursor: pointer;
  line-height: 1;
}
.stepper button:hover { border-color: var(--orange); }
.stepper span { min-width: 16px; text-align: center; font-weight: 700; }
.search-submit { align-self: center; margin: 8px; white-space: nowrap; }

@media (max-width: 900px) {
  .search-bar { margin-top: 20px; flex-direction: column; }
  .search-field { border-right: none; border-bottom: 1px solid #D3E3FA; }
  .search-field:last-of-type { border-bottom: none; }
  .search-submit { width: calc(100% - 16px); }
}

/* ---------- Category banner (inner pages) ---------- */

.page-banner {
  position: relative;
  padding: 70px 0;
  color: #fff;
  background-size: cover;
  background-position: center;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,26,61,0.55), rgba(6,26,61,0.75));
}
.page-banner .wrap { position: relative; z-index: 1; }
.page-banner h1 { color: #fff; }
.page-banner p { color: #E3EEFF; font-size: 1.1rem; max-width: 60ch; }

/* ---------- Sections ---------- */

section { padding: 70px 0; }
section.alt { background: var(--cream-2); }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 48px; }

/* ---------- Category cards (home) ---------- */

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 980px) { .cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .cat-grid { grid-template-columns: 1fr; } }

.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3/4;
  color: #fff;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  transition: transform 0.2s ease;
}
.cat-card:hover { transform: translateY(-6px); }
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,26,61,0) 40%, rgba(6,26,61,0.85) 100%);
}
.cat-card-body { position: relative; z-index: 1; padding: 22px; }
.cat-card-body h3 { color: #fff; margin-bottom: 6px; }
.cat-card-body span { font-size: 0.9rem; color: #ffe7c2; font-weight: 600; }

/* ---------- Listings grid ---------- */

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .listing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .listing-grid { grid-template-columns: 1fr; } }

.listing-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.listing-card .thumb {
  aspect-ratio: 4/3;
  background: #DDE7F5 center/cover no-repeat;
}
.listing-card .body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.listing-card .loc { font-size: 0.85rem; color: var(--orange-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.listing-card h3 { margin-bottom: 6px; }
.listing-card .summary { color: #56657F; font-size: 0.95rem; flex: 1; }
.listing-card .price-row { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.listing-card .price { font-weight: 800; color: var(--brown); font-size: 1.1rem; }
.listing-card .price small { font-weight: 500; color: #6B7C99; font-size: 0.8rem; }

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #6B7C99;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ---------- Mascot strip ---------- */

.mascot-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.mascot-strip img { border-radius: var(--radius); box-shadow: var(--shadow); }
@media (max-width: 900px) { .mascot-strip { grid-template-columns: 1fr; } .mascot-strip img { max-width: 320px; margin: 0 auto; } }

/* ---------- Why us ---------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }
.feature {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.feature .icon { font-size: 2rem; margin-bottom: 12px; }

/* ---------- Forms ---------- */

.form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; margin-bottom: 6px; font-size: 0.92rem; color: var(--brown); }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #D3E3FA;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background: #FAFCFF;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .field-row { grid-template-columns: 1fr; } }

.form-msg { margin-top: 16px; padding: 14px 16px; border-radius: 10px; font-weight: 600; display: none; }
.form-msg.show { display: block; }
.form-msg.ok { background: #e5f6e9; color: #1c6b34; }
.form-msg.err { background: #fbe6e2; color: #a3341f; }

/* ---------- Contact strip / footer ---------- */

.contact-strip {
  background: var(--brown);
  color: #E3EEFF;
  padding: 50px 0;
}
.contact-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}
.contact-links { display: flex; gap: 22px; flex-wrap: wrap; }
.contact-links a { font-weight: 700; }
.contact-links a:hover { color: var(--orange); }

footer.site-footer {
  background: var(--brown-dark);
  color: #BFD3EE;
  padding: 40px 0 24px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-grid h4 { color: #fff; font-size: 1rem; margin-bottom: 12px; }
.footer-grid a { display: block; margin-bottom: 8px; color: #BFD3EE; }
.footer-grid a:hover { color: var(--orange); }
[data-contact="phone-list"] { display: block; margin-bottom: 8px; }
[data-contact="phone-list"] a { display: inline; margin-bottom: 0; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand img { height: 36px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: #7F93B3;
}

/* ---------- Booking widget ---------- */

.booking-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) { .booking-layout { grid-template-columns: 1fr; } }

.detail-gallery { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); margin-bottom: 24px; }
.booking-card { position: sticky; top: 100px; }

/* WhatsApp float button */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #25D366;
  color: #fff;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  z-index: 200;
}
.whatsapp-float:hover { transform: scale(1.06); }

.whatsapp-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.82rem;
  padding: 8px 14px;
  border-radius: 999px;
  margin: 0 8px 8px 0;
}
.whatsapp-chip:hover { background: #1ebd5a; }

.badge-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0; }
.badge {
  background: #E6F0FF;
  color: var(--orange-dark);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: 999px;
}

/* ---- "list your property" band (home page) ---- */
.host-band {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-dark) 100%);
  color: #fff;
  padding: 56px 0;
}
.host-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.host-band .eyebrow { color: var(--orange); }
.host-band h2 { color: #fff; margin: 8px 0 12px; }
.host-band p { color: #D3E3FA; max-width: 52ch; margin: 0; }
.host-band-cta {
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  text-align: center;
}
.host-band-cta .btn { white-space: nowrap; }
.host-band-link {
  color: #D3E3FA;
  font-size: 0.9rem;
  text-decoration: underline;
}
.host-band-link:hover { color: #fff; }
@media (max-width: 860px) {
  .host-band { padding: 42px 0; }
  .host-band-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .host-band-cta { align-self: stretch; }
}

/* "My bookings" sits in the header buttons on desktop and in the menu on mobile */
nav.main-nav a.nav-mobile-only { display: none; }
@media (max-width: 1080px) {
  nav.main-nav a.nav-mobile-only { display: block; }
}

/* Jump links (#about, #enquire) land below the sticky header */
section[id] { scroll-margin-top: 96px; }

/* Currency picker in the header: "Currency  £ GBP ▾" */
.cur-pick {
  display: inline-flex; align-items: center; gap: 6px;
  border: 1.5px solid #D8E4F5; background: #fff; border-radius: 999px;
  padding: 4px 6px 4px 14px; cursor: pointer; white-space: nowrap;
}
.cur-pick:hover { border-color: var(--orange); }
.cur-pick-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; color: #7A8BA8; }
.cur-pick select {
  appearance: none; -webkit-appearance: none; border: 0; background: transparent; cursor: pointer;
  font-family: inherit; font-weight: 700; font-size: 0.9rem; color: var(--brown);
  padding: 6px 22px 6px 2px;
  background-image: linear-gradient(45deg, transparent 50%, var(--brown) 50%), linear-gradient(135deg, var(--brown) 50%, transparent 50%);
  background-position: calc(100% - 10px) 52%, calc(100% - 5px) 52%;
  background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
}
.cur-pick select:focus { outline: none; }
.cur-pick:focus-within { box-shadow: 0 0 0 3px rgba(255,138,0,.25); }
@media (max-width: 560px) { .cur-pick-label { display: none; } }

/* =====================================================================
   PHONE LAYOUT - most visitors are on a phone, so this is the main view.
   ===================================================================== */

/* The logo must never be squeezed by the buttons beside it. */
.brand { flex: none; }
.brand img { flex: none; max-width: none; object-fit: contain; }

@media (max-width: 760px) {
  /* ---- header: logo | currency | menu ---- */
  .header-inner { padding: 10px 16px; gap: 10px; }
  .brand img { height: 40px; }
  .header-cta { margin-left: auto; order: 2; gap: 8px; }
  .header-cta .btn { display: none; }                 /* My bookings + Add property live in the menu */
  .nav-toggle {
    order: 3; display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 12px;
    border: 1.5px solid #D8E4F5; background: #fff; font-size: 1.35rem; line-height: 1;
  }
  .cur-pick { padding: 2px 4px 2px 10px; }
  .cur-pick select { font-size: 0.88rem; padding: 7px 20px 7px 0; }

  nav.main-nav { padding: 8px 16px 18px; }
  nav.main-nav a { font-size: 1.05rem; padding: 14px 12px; border-radius: 12px; }
  nav.main-nav a.nav-host {
    margin-top: 8px; background: var(--orange); color: #fff; text-align: center; font-weight: 700;
  }

  /* ---- home hero: a warm photo you want to be in, with the search right on it ---- */
  .hero {
    padding: 34px 0 78px;
    background:
      linear-gradient(180deg, rgba(6,26,61,0.25) 0%, rgba(6,26,61,0.55) 55%, rgba(6,26,61,0.78) 100%),
      url('../images/hero-mobile.jpg') center / cover no-repeat;
  }
  .hero-inner { gap: 0; }
  .hero-media { display: none; }
  .hero .eyebrow {
    background: rgba(255,255,255,0.18); color: #E9F2FF; font-size: 0.68rem;
    letter-spacing: 0.08em; padding: 6px 12px; backdrop-filter: blur(4px);
  }
  .hero h1 {
    color: #fff; font-size: 2.05rem; line-height: 1.1; margin: 14px 0 12px;
    text-shadow: 0 2px 18px rgba(0,0,0,0.35);
  }
  .hero .lead { color: #EEF5FF; font-size: 1rem; line-height: 1.55; text-shadow: 0 1px 10px rgba(0,0,0,0.35); }
  .hero-actions { margin-top: 18px; gap: 10px; }
  .hero-actions .btn { flex: 1 1 0; text-align: center; padding: 13px 14px; font-size: 0.95rem; }
  .hero-actions .btn-secondary { background: rgba(255,255,255,0.92); border-color: transparent; }

  /* search card overlaps the photo */
  .search-bar { margin-top: -54px; padding: 6px; border-radius: 18px; }
  .search-field { padding: 12px 14px; min-width: 0; }
  .search-field input[type="text"], .occupancy-toggle { font-size: 1rem; }
  .search-dates input[type="date"] { font-size: 0.95rem; }
  .search-submit { width: calc(100% - 12px); margin: 6px; padding: 15px; font-size: 1.05rem; }
  .occupancy-panel { width: calc(100vw - 64px); max-width: 320px; }

  /* call button: smaller, tucked into the corner */
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.35rem; bottom: 16px; right: 14px; }
}

@media (max-width: 760px) {
  .hide-phone { display: none; }
  .hero { padding-bottom: 70px; }
  .hero-actions { display: none; }                  /* the search card below is the action */
  .search-dates { display: grid; grid-template-columns: 1fr auto 1fr; gap: 6px; }
  .search-dates input[type="date"] { min-width: 0; width: 100%; font-size: 0.92rem; }
}

/* Mascot icons */
.feature .icon .mascot-icon { width: 104px; height: 104px; object-fit: contain; display: block; }
.icon .mascot-hero { width: 170px; height: 170px; object-fit: contain; display: block; margin: 0 auto 10px; }
.transfer-mascot { width: 46px; height: 46px; object-fit: contain; flex: none; margin-top: -4px; }
@media (max-width: 760px) {
  .feature .icon .mascot-icon { width: 92px; height: 92px; }
  .icon .mascot-hero { width: 140px; height: 140px; }
}

/* Phone: mascot beside the text, so the cards are half the height */
@media (max-width: 760px) {
  .feature:has(.mascot-icon) {
    display: grid; grid-template-columns: 84px 1fr; column-gap: 14px; align-items: start; padding: 18px;
  }
  .feature:has(.mascot-icon) .icon { grid-row: span 2; margin: 0; }
  .feature .icon .mascot-icon { width: 84px; height: 84px; }
  .feature:has(.mascot-icon) h3 { margin: 4px 0 6px; font-size: 1.15rem; }
  .feature:has(.mascot-icon) p { margin: 0; font-size: 0.95rem; line-height: 1.55; }
}

/* "Get the app" banner */
#hz-install {
  position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 200; display: flex; align-items: center; gap: 12px;
  background: #fff; border: 1px solid #D6E4F7; border-radius: 18px; padding: 12px 12px 12px 12px;
  box-shadow: 0 12px 34px rgba(6,26,61,.22);
  transform: translateY(140%); transition: transform .3s ease; max-width: 520px; margin: 0 auto;
}
#hz-install.show { transform: translateY(0); }
#hz-install img { width: 48px; height: 48px; border-radius: 12px; flex: none; }
#hz-install .hz-i-text { flex: 1; min-width: 0; font-size: .86rem; line-height: 1.35; color: #45536D; }
#hz-install .hz-i-text b { display: block; font-size: .95rem; color: var(--brown); }
#hz-install .hz-share { width: 17px; height: 17px; vertical-align: -3px; color: #0057E0; }
#hz-install .hz-i-go { background: var(--orange); color: #fff; border: 0; border-radius: 999px; padding: 10px 16px; font-weight: 700; font-family: inherit; cursor: pointer; }
#hz-install .hz-i-x { background: none; border: 0; font-size: 1.5rem; line-height: 1; color: #8393AE; padding: 4px 6px; cursor: pointer; }
body.hz-install-open .whatsapp-float { bottom: calc(96px + env(safe-area-inset-bottom)); }

/* Running as an installed app: respect the notch */
.is-app .site-header { padding-top: env(safe-area-inset-top); }

/* Date boxes: "Check in / Add date" until a date is picked */
.date-box { position: relative; display: block; flex: 1; min-width: 0; cursor: pointer; margin: 0; }
.date-box small { display: block; font-size: .72rem; font-weight: 600; color: #7A8BA8; margin-bottom: 2px; }
.date-box input[type="date"] { min-height: 30px; width: 100%; position: relative; z-index: 1; }
.date-box em { position: absolute; left: 0; bottom: 5px; font-style: normal; color: #8C9AB3; font-size: .95rem; pointer-events: none; }
.date-box:not(.has-date) input[type="date"] { color: transparent; }
.date-box.has-date em { display: none; }
.search-dates { align-items: flex-end; }
.search-field label.date-box { text-transform: none; letter-spacing: 0; font-size: 1rem; font-weight: 400; color: var(--text); margin: 0; }
.search-field label.date-box small { text-transform: none; letter-spacing: 0; font-size: .78rem; }
.search-field label.date-box em { text-transform: none; letter-spacing: 0; font-weight: 400; }


/* Review scores on cards and listing pages. */
.rating { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.rating-score { background: var(--orange, #FF8A00); color: #fff; font-weight: 800; font-size: 0.85rem; border-radius: 8px; padding: 3px 8px; }
.rating-text { font-size: 0.85rem; color: #5A6B88; font-weight: 600; }
.reviews { margin-top: 28px; }
.review { border-top: 1px solid rgba(0, 0, 0, 0.08); padding: 14px 0; }
.review-stars { color: var(--orange, #FF8A00); letter-spacing: 2px; }
.review-who { font-weight: 700; margin: 4px 0 2px; }
.review-note { font-size: 0.85rem; color: #5A6B88; }
