.booking-header {
  background: linear-gradient(135deg, #13222a, #1f3a46);
  color: #fff;
}

/* Minimal header for results & guest-info pages */
.gi-header {
  background: linear-gradient(135deg, #13222a, #1f3a46);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem 2rem;
}
.gi-header .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 600;
  color: #fff; text-decoration: none; letter-spacing: 0.08em;
  text-transform: uppercase;
}

.booking-banner {
  padding: 7.5rem 0 3.5rem;
  text-align: center;
}

.booking-banner h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0 0 0.5rem;
}

.booking-banner p {
  max-width: 45ch;
  margin: 0 auto;
  opacity: 0.85;
}

.booking-banner .eyebrow {
  color: #f3d8a5;
}

.stay-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.4rem 1.5rem;
  margin-top: 1rem;
  font-size: 0.88rem;
  opacity: 0.75;
}

/* ── Results page: stepper positioned at top ── */
.rs-stepper { margin-top: 2rem; }

/* ── Booking summary bar ── */
.rs-summary {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: 10px;
  padding: 0.9rem 1.5rem; margin-bottom: 1.5rem;
  font-family: 'Manrope', sans-serif;
}
.rs-summary-details {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
}
.rs-chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.88rem; color: var(--ink);
}
.rs-chip svg { color: var(--muted); flex-shrink: 0; }
.rs-modify {
  font-family: 'Manrope', sans-serif;
  font-size: 0.85rem; font-weight: 600; color: var(--muted);
  background: none; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.35rem;
  white-space: nowrap; transition: color .2s;
}
.rs-modify:hover { color: var(--gold); }
.rs-modify.open svg { transform: rotate(45deg); }

/* Modify dropdown panel */
.rs-modify-panel {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 1.5rem 1.8rem; margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(23,32,38,0.07);
  animation: rsm-slide 0.2s ease;
}
@keyframes rsm-slide { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* Date display boxes */
.rsm-date-boxes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
  margin-bottom: 1.5rem;
}
.rsm-date-box {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 0.9rem 1rem; cursor: default;
}
.rsm-date-box + .rsm-date-box { border-left: 1px solid var(--line); }
.rsm-date-label {
  font-family: 'Manrope', sans-serif; font-size: 0.68rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted);
  margin-bottom: 0.15rem;
}
.rsm-date-value {
  font-family: 'Manrope', sans-serif; font-size: 0.92rem; font-weight: 700;
  color: var(--ink);
}

/* Mini calendar */
.rsm-cal { margin-bottom: 1rem; margin-top: 0.5rem; }
.rsm-cal-controls {
  display: flex; align-items: flex-start;
}
.rsm-cal-controls > button {
  flex-shrink: 0; width: 30px; height: 30px; margin-top: 0.1rem;
  border: 1px solid var(--line); border-radius: 50%; background: #fff;
  font-size: 1.1rem; color: var(--ink); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s;
}
.rsm-cal-controls > button:hover { border-color: var(--gold); }
.rsm-cal-controls > button:disabled { opacity: 0.3; cursor: default; }

.rsm-cal-grid {
  flex: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  padding: 0 0.8rem;
}

.rsm-cal-title {
  font-family: 'Manrope', sans-serif; font-size: 0.85rem; font-weight: 700;
  color: var(--ink); text-align: center; margin-bottom: 0.7rem;
}
.rsm-cal-weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  text-align: center; margin-bottom: 0.35rem;
}
.rsm-cal-wd {
  font-family: 'Manrope', sans-serif; font-size: 0.68rem; font-weight: 700;
  color: var(--muted); text-transform: uppercase; padding: 0.3rem 0;
}
.rsm-cal-days {
  display: grid; grid-template-columns: repeat(7, 1fr); text-align: center;
}
.rsm-day {
  aspect-ratio: 1; display: flex; align-items: center; justify-content: center;
  font-family: 'Manrope', sans-serif; font-size: 0.85rem; color: var(--ink);
  cursor: pointer; border-radius: 0;
}
@media (hover: hover) {
  .rsm-day:hover { background: rgba(180,139,79,0.08); }
}
.rsm-day.empty { visibility: hidden; cursor: default; }
.rsm-day.past { color: var(--line); cursor: default; pointer-events: none; }
.rsm-day.unavail { color: var(--line); cursor: default; pointer-events: none; text-decoration: line-through; }
.rsm-day.in-range { background: rgba(180,139,79,0.15); }
.rsm-day.endpoint {
  background: var(--gold); color: #fff; border-radius: 4px;
}
@media (hover: hover) {
  .rsm-day.endpoint:hover { background: var(--gold-deep); }
}

.rsm-nights {
  text-align: center; font-family: 'Manrope', sans-serif;
  font-size: 0.85rem; color: var(--gold-deep); font-weight: 600;
  background: rgba(180,139,79,0.08); border-radius: 6px;
  padding: 0.5rem; margin-bottom: 1rem;
}

/* Room rows inside modify panel */
.rsm-room {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  padding: 0.8rem 0; border-top: 1px solid var(--line);
}
.rsm-room-title {
  font-family: 'Manrope', sans-serif; font-size: 0.9rem; font-weight: 700;
  color: var(--ink); min-width: 80px;
}
.rsm-guest-row { display: flex; align-items: center; gap: 1.2rem; flex: 1; }
.rsm-guest-field { display: flex; flex-direction: column; gap: 0.15rem; }
.rsm-guest-field span {
  font-family: 'Manrope', sans-serif; font-size: 0.78rem; font-weight: 600; color: var(--ink);
}
.rsm-guest-field small {
  font-family: 'Manrope', sans-serif; font-size: 0.65rem; color: var(--muted);
}
.rsm-stepper {
  display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 0.2rem;
}
.rsm-stepper button {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--line); background: #fff; color: var(--ink);
  font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: border-color .2s;
}
.rsm-stepper button:hover { border-color: var(--gold); }
.rsm-stepper .rsm-val {
  font-family: 'Manrope', sans-serif; font-size: 0.95rem; font-weight: 600;
  min-width: 1.5rem; text-align: center; color: var(--ink);
}
.rsm-ages-wrap { display: flex; flex-wrap: wrap; gap: 0.4rem 0.8rem; margin-top: 0.4rem; padding-top: 0.4rem; border-top: 1px solid var(--line); }
.rsm-age-row { display: flex; align-items: center; gap: 0.3rem; font-size: 0.75rem; color: var(--muted); }
.rsm-age-row select { padding: 0.2rem 0.3rem; border: 1px solid var(--line); border-radius: 4px; font-size: 0.78rem; }

/* Booking page child ages */
.rr-ages-wrap { grid-column: 1 / -1; }
.rr-ages-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 0.3rem; display: block; }
.rr-ages-row { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.rr-age-sel { padding: 0.5rem 0.4rem; border: 1px solid var(--line); border-radius: 6px; font-size: 0.82rem; background: #fff; min-width: 50px; }
.rsm-rm-room {
  font-family: 'Manrope', sans-serif; font-size: 0.75rem; color: var(--muted);
  background: none; border: none; cursor: pointer; margin-left: auto;
  text-decoration: underline;
}
.rsm-rm-room:hover { color: #c0392b; }

.rsm-add-room {
  padding: 0.5rem 0; text-align: right;
}
.rsm-add-room button {
  font-family: 'Manrope', sans-serif; font-size: 0.82rem; font-weight: 600;
  color: var(--gold-deep); background: none; border: none; cursor: pointer;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.rsm-add-room button:hover { text-decoration: underline; }

.rsm-apply {
  display: block; width: 100%; margin-top: 0.5rem;
  padding: 0.75rem; font-size: 0.9rem; text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Toolbar: heading + count + filter/sort ── */
.rs-toolbar {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.8rem 0 1.2rem; margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
  font-family: 'Manrope', sans-serif;
}
.rs-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem; font-weight: 600; color: var(--ink);
  margin: 0; white-space: nowrap;
}
.rs-count {
  font-size: 0.85rem; color: var(--muted); margin-right: auto;
}
.rs-controls {
  display: flex; align-items: center; gap: 0.5rem;
}

/* ── Booking widget ── */
.booking-form-wrap {
  padding: 3rem 0 6rem;
}

.booking-widget {
  max-width: 1060px;
  margin: 0 auto;
}

/* ── Calendar ── */
.cal-wrap {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 2.2rem 2.5rem 2rem;
  box-shadow: var(--shadow);
}

.cal-controls {
  position: absolute;
  top: 2.2rem;
  left: 2rem;
  right: 2rem;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}

.cal-arrow {
  pointer-events: auto;
  background: none;
  border: 1px solid var(--line);
  color: var(--ink);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background 0.2s ease;
  line-height: 1;
}

.cal-arrow:hover {
  border-color: var(--gold);
  background: rgba(180, 139, 79, 0.06);
}

.cal-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.cal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.cal-month-title {
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1rem;
  line-height: 38px;
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 0.35rem;
}

.cal-wd {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  padding: 0.4rem 0;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.cal-day {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.2rem;
  border-radius: 0.45rem;
  cursor: pointer;
  transition: background 0.15s ease;
  min-height: 62px;
  user-select: none;
  position: relative;
}

/* hover only on devices with a real pointer — on touch screens the
   hover state "sticks" to the tapped day and hides its selection */
@media (hover: hover) {
  .cal-day:hover:not(.past):not(.empty):not(.unavailable):not(.endpoint) {
    background: rgba(180, 139, 79, 0.08);
  }
}

.cal-day.empty { cursor: default; }
.cal-day.past { cursor: default; opacity: 0.3; }

.day-num {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  line-height: 1;
  transition: background 0.15s ease, color 0.15s ease;
}

.day-price {
  font-size: 0.68rem;
  color: var(--muted);
  line-height: 1;
  margin-top: 3px;
  white-space: nowrap;
  font-weight: 500;
}

.cal-day.available .day-num { color: var(--ink); }
.cal-day.endpoint { background: var(--gold); border-radius: 4px; }
.cal-day.endpoint .day-num { background: none; color: #fff; }
.cal-day.endpoint .day-price { color: #fff; font-weight: 600; }
.cal-day.in-range { background: rgba(180, 139, 79, 0.15); }
.cal-day.in-range .day-num { background: none; color: var(--gold-deep); }

/* Best-value dates: the lowest nightly price in the whole window */
.cal-day.cal-lowprice:not(.endpoint):not(.in-range) { background: rgba(31, 138, 76, 0.1); border-radius: 4px; }
.cal-day.cal-lowprice:not(.endpoint) .day-price { color: #1f8a4c; font-weight: 700; }

.cal-day.unavailable { cursor: default; opacity: 0.55; }
.cal-day.unavailable:hover { background: none; }
.cal-day.unavailable .day-num { color: #c0392b; }
.cal-day.unavailable .day-unavail {
  font-size: 0.72rem; font-weight: 700; color: #c0392b;
  line-height: 1; margin-top: 2px;
}

/* ── Legend ── */
.cal-legend {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem 2rem;
  margin-top: 1.5rem;
  padding: 1rem 0;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.legend-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.dot-selected { background: var(--gold); }
.dot-available { background: #3a9a6e; }
.dot-lowprice { background: #1f8a4c; }
.dot-unavailable { background: #c0392b; }

/* ── Room rows ── */
.booking-rooms {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.room-row {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.3rem 2rem;
  box-shadow: var(--shadow);
  margin-bottom: 0.75rem;
}

.room-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.room-row-header h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
}

.room-remove-btn {
  background: none;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
  font-family: inherit;
  line-height: 1.3;
}

.room-remove-btn:hover {
  color: #c0392b;
  border-color: #c0392b;
}

.room-row-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form-field label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.form-field select {
  padding: 0.75rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2359636d'/%3E%3C/svg%3E") no-repeat right 0.75rem center;
  padding-right: 2rem;
  appearance: none;
  -webkit-appearance: none;
  transition: border-color 0.2s ease;
}

.form-field select:focus {
  outline: none;
  border-color: var(--gold);
}

.add-room-btn {
  display: block;
  width: 100%;
  padding: 0.85rem;
  margin-top: 0;
  margin-bottom: 0;
  background: none;
  border: 2px dashed var(--line);
  border-radius: 1rem;
  color: var(--muted);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.add-room-btn:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}

/* ── Selected summary ── */
.selected-summary {
  text-align: center;
  margin-top: 1.5rem;
  min-height: 2.5rem;
}

.summary-hint { color: var(--muted); font-size: 0.85rem; margin: 0; }
.summary-dates { margin: 0; font-size: 0.95rem; color: var(--ink); font-weight: 500; }
.summary-dates strong { color: var(--gold-deep); }

/* ── Find button ── */
.find-room-btn {
  display: block;
  width: 100%;
  margin-top: 1rem;
  padding: 1rem;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.find-room-btn:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none;
}

/* ══════════════════════════
   RESULTS PAGE – REDESIGNED
   ══════════════════════════ */
.results-wrap {
  padding: 1rem 0 6rem;
}

/* ── Filter/Sort Dropdowns ── */
.rt-dropdown { position: relative; }

.rt-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.rt-btn svg { opacity: 0.55; flex-shrink: 0; }
.rt-btn:hover { border-color: var(--gold-deep); color: var(--gold-deep); }
.rt-btn.active { border-color: var(--gold-deep); color: var(--gold-deep); }

.rt-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 40;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.rt-dropdown.open .rt-menu { display: block; }

/* Filter panel */
.rt-filter-panel {
  min-width: 240px;
  padding: 0.6rem 0;
}

.rt-panel-group { padding: 0.3rem 0; }
.rt-panel-group + .rt-panel-group { border-top: 1px solid var(--line); }

.rt-panel-group h4 {
  margin: 0;
  padding: 0.5rem 1.1rem 0.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-deep);
}

.rt-panel-group label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1.1rem;
  font-size: 0.84rem;
  cursor: pointer;
  transition: background 0.12s;
  color: var(--text-primary);
}

.rt-panel-group label:hover { background: rgba(196, 161, 106, 0.06); }

.rt-panel-group input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--gold-deep);
  cursor: pointer;
  flex-shrink: 0;
}

/* Sort panel */
.rt-sort-panel {
  min-width: 200px;
  padding: 0.35rem 0;
}

.rt-sort-opt {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.55rem 1.1rem;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text-primary);
  background: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}

.rt-sort-opt:hover { background: rgba(196, 161, 106, 0.06); }

.rt-sort-opt.active {
  color: var(--gold-deep);
  font-weight: 700;
  background: rgba(196, 161, 106, 0.08);
}

.result-card.hidden-filter { display: none; }

.no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
}
.no-results a { color: var(--gold-deep); }

/* ── Result card ── */
.result-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.result-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(23, 32, 38, 0.16);
}

/* ── Left side: Carousel + Details ── */
.result-left { display: flex; flex-direction: column; }

.rc-wrap {
  position: relative;
  overflow: hidden;
  background: #e9eff2;
}

.rc-img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  display: none;
}

.rc-img.active { display: block; }

.rc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 1.35rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
  z-index: 2;
}

.rc-arrow:hover { background: rgba(0, 0, 0, 0.7); }
.rc-prev { left: 12px; }
.rc-next { right: 12px; }

.result-body {
  padding: 1.4rem 1.8rem 1.6rem;
  flex: 1;
}

.result-body h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.result-desc {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
  margin: 0 0 1.2rem;
}

.result-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.spec {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-right: 0.8rem;
}

.spec-lbl {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.spec span:last-child {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
}

/* ── Right side: Rate options ── */
.result-right {
  border-left: 1px solid var(--line);
  padding: 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  background: rgba(0, 0, 0, 0.015);
}

.rates-heading {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--line);
}

.rate-option {
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.rate-option:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 12px rgba(180, 139, 79, 0.1);
}

.rate-head h4 {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ink);
}

.rate-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.8rem;
}

.rate-per {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-deep);
}

.rate-per small {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
}

.rate-old {
  text-decoration: line-through;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.85em;
  margin-right: 0.3rem;
}

.rate-offer-banner {
  background: #2e7d32;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 0.5rem 0.5rem 0 0;
  margin: -1rem -1.1rem 0.7rem;
  text-align: center;
  letter-spacing: 0.02em;
}

.rate-has-offer {
  border-color: #2e7d32;
}

.rate-has-offer:hover {
  border-color: #2e7d32;
  box-shadow: 0 4px 12px rgba(46, 125, 50, 0.15);
}

.rate-total {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.rate-book-btn {
  align-self: stretch;
  text-align: center;
  padding: 0.65rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.rate-book-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(180, 139, 79, 0.3);
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .result-specs {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
}

@media (max-width: 700px) {
  .booking-banner {
    padding: 6rem 0 2.5rem;
  }
  .cal-wrap { padding: 1.2rem; }
  .cal-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .cal-controls { top: 1.2rem; left: 0.8rem; right: 0.8rem; }
  .cal-day { min-height: 52px; padding: 0.35rem 0.1rem; }
  .day-num { width: 30px; height: 30px; font-size: 0.85rem; }
  .day-price { font-size: 0.58rem; }
  .room-row-fields { grid-template-columns: 1fr; }
  .room-row { padding: 1rem; }
  .cal-legend { gap: 0.4rem 1rem; }

  .rs-toolbar { flex-wrap: wrap; }
  .rs-heading { font-size: 1.15rem; }
  .rs-summary { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .rs-summary-details { gap: 0.8rem; }
  .rsm-cal-grid { grid-template-columns: 1fr; gap: 1rem; }
  .rsm-date-boxes { grid-template-columns: 1fr; }
  .rsm-date-box + .rsm-date-box { border-left: none; border-top: 1px solid var(--line); }
  .rsm-room { flex-direction: column; align-items: flex-start; }
  .rsm-guest-row { width: 100%; }

  .result-card { grid-template-columns: 1fr; }

  .result-right {
    border-left: none;
    border-top: 1px solid var(--line);
    padding: 1.2rem;
  }

  .rc-img { height: 220px; }
  .result-body { padding: 1rem 1.2rem; }

  .result-specs {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
}

/* ============ Guest Info Page ============ */

.gi-section { padding: 2.5rem 0 10rem; }

/* Stepper */
.gi-stepper {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 2.5rem;
}
.gi-step {
  display: flex; flex-direction: column; align-items: center; gap: 0.3rem;
  text-decoration: none; color: var(--muted); position: relative;
}
.gi-step-num {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--line); display: flex; align-items: center; justify-content: center;
  font-family: 'Manrope', sans-serif; font-size: 0.8rem; font-weight: 700;
  color: var(--muted); background: var(--surface); transition: all .25s;
}
.gi-step-label {
  font-family: 'Manrope', sans-serif; font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.06em; font-weight: 600;
}
.gi-step.active .gi-step-num {
  border-color: var(--gold); color: #fff; background: var(--gold);
}
.gi-step.active .gi-step-label { color: var(--ink); }
.gi-step.done .gi-step-num {
  border-color: var(--gold); color: var(--gold); background: var(--surface);
}
.gi-step.done .gi-step-label { color: var(--gold); }
.gi-step-line {
  flex: 0 0 60px; height: 2px; background: var(--line); margin: 0 0.6rem;
  margin-bottom: 1.2rem;
}

/* Title */
.gi-title {
  font-family: 'Cormorant Garamond', serif; font-size: 2.2rem;
  font-weight: 600; color: var(--ink); margin-bottom: 2rem; text-align: center;
}

/* Summary Row */
.gi-summary-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 2.5rem;
}
.gi-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 1.8rem 2rem;
}
.gi-card h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600;
  color: var(--ink); margin-bottom: 1.2rem; padding-bottom: 0.8rem; border-bottom: 1px solid var(--line);
}
.gi-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0.5rem 0; font-family: 'Manrope', sans-serif; font-size: 0.92rem; color: var(--muted);
}
.gi-row span:last-child { font-weight: 600; color: var(--ink); text-align: right; }
.gi-rooms-detail { display: flex; flex-direction: column; margin-top: 0.2rem; }
.gi-rooms-detail small { font-weight: 400; color: var(--muted); font-size: 0.78rem; line-height: 1.5; }

/* ── Multi-room step-by-step selection ── */
.ms-steps {
  display: flex; flex-direction: column; gap: 0.5rem;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 1rem 1.2rem; margin-bottom: 1.4rem;
  font-family: 'Manrope', sans-serif;
}
.ms-step { display: flex; align-items: center; gap: 0.7rem; font-size: 0.9rem; }
.ms-step-num {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 700;
  background: var(--line); color: var(--muted);
}
.ms-step-done .ms-step-num { background: #1f8a4c; color: #fff; }
.ms-step-now .ms-step-num { background: var(--gold); color: #fff; }
.ms-step-txt { color: var(--muted); }
.ms-step-done .ms-step-txt, .ms-step-now .ms-step-txt { color: var(--ink); }
.ms-change {
  margin-left: auto; background: none; border: 1px solid var(--line);
  border-radius: 20px; padding: 0.25rem 0.9rem; font-size: 0.78rem;
  cursor: pointer; color: var(--muted); font-family: inherit;
}
.ms-change:hover { border-color: var(--gold); color: var(--gold-deep); }
@media (max-width: 640px) {
  .ms-step { flex-wrap: wrap; }
}
.gi-row-total { border-top: 1px solid var(--line); margin-top: 0.5rem; padding-top: 0.8rem; }
.gi-row-total span:last-child { font-family: 'Manrope', sans-serif; font-size: 1.1rem; color: var(--gold-deep); font-weight: 700; }
.gi-struck { text-decoration: line-through; opacity: 0.55; }

.gi-rate-policies p {
  font-family: 'Manrope', sans-serif; font-size: 0.9rem; color: var(--muted);
  line-height: 1.65; margin-bottom: 0.5rem;
}
.gi-rate-policies p strong { color: var(--ink); }

/* Form */
.gi-form { margin-bottom: 2rem; }
.gi-form-section {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 1.8rem 2rem; margin-bottom: 1.5rem;
}
.gi-form-section h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 600;
  color: var(--ink); margin-bottom: 1.4rem; padding-bottom: 0.8rem; border-bottom: 1px solid var(--line);
}
.gi-form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 2rem;
}
/* min-width: 0 lets fields shrink below the widest <option> text
   (long country names were pushing the form wider than the screen) */
.gi-field { display: flex; flex-direction: column; gap: 0.35rem; min-width: 0; }
.gi-field input,
.gi-field select { width: 100%; min-width: 0; }
.gi-field label {
  font-family: 'Manrope', sans-serif; font-size: 0.82rem; font-weight: 600;
  color: var(--muted); text-transform: uppercase; letter-spacing: 0.04em;
}
.gi-field input,
.gi-field select {
  font-family: 'Manrope', sans-serif; font-size: 0.95rem;
  padding: 0.7rem 0.9rem; border: 1px solid var(--line); border-radius: 8px;
  background: #fff; color: var(--ink); transition: border-color .2s;
}
.gi-field input:focus,
.gi-field select:focus { outline: none; border-color: var(--gold); }
.gi-invalid { border-color: #c0392b !important; }
.gi-field-full { display: none; }
/* empty cell keeping the phone field alone on its desktop row */
.gi-spacer { visibility: hidden; }

/* Special Requests (collapsible) */
.gi-special { padding: 0; }
.gi-collapse-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 2rem; cursor: pointer; user-select: none;
}
.gi-collapse-header h2 { margin: 0; padding: 0; border: 0; }
.gi-collapse-icon {
  font-size: 1.4rem; color: var(--gold); font-weight: 700; line-height: 1;
}
.gi-collapse-body { padding: 0 2rem 1.8rem; }
.gi-collapse-body textarea {
  width: 100%; font-family: 'Manrope', sans-serif; font-size: 0.95rem;
  padding: 0.8rem 1rem; border: 1px solid var(--line); border-radius: 8px;
  background: #fff; color: var(--ink); resize: vertical;
}
.gi-collapse-body textarea:focus { outline: none; border-color: var(--gold); }

.gi-terms {
  font-family: 'Manrope', sans-serif; font-size: 0.82rem; color: var(--muted);
  text-align: center; line-height: 1.6; margin: 1.5rem 0 1rem;
}
.gi-terms a { color: var(--gold-deep); text-decoration: underline; }

/* Sticky Bottom */
.gi-sticky {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: var(--surface); border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(23,32,38,0.08);
}
.gi-sticky-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 2rem;
}
.gi-sticky-total {
  display: flex; flex-direction: column; gap: 0.1rem;
}
.gi-sticky-total span {
  font-family: 'Manrope', sans-serif; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted);
}
.gi-sticky-total strong {
  font-family: 'Manrope', sans-serif; font-size: 1.25rem;
  font-weight: 700; color: var(--ink);
}
.gi-submit-btn {
  padding: 0.85rem 2.5rem; font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.04em;
}

/* Confirmation */
.gi-confirmation {
  text-align: center; padding: 3rem 1rem;
}
.gi-confirmation svg { margin-bottom: 1.5rem; }
.gi-confirmation h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.8rem;
  font-weight: 600; color: var(--ink); margin-bottom: 1rem;
}
.gi-confirmation p {
  font-family: 'Manrope', sans-serif; font-size: 1rem; color: var(--muted);
  max-width: 500px; margin: 0 auto 2rem; line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .gi-section { padding: 5rem 0 8rem; }
  .gi-summary-row { grid-template-columns: 1fr; }
  .gi-form-grid { grid-template-columns: 1fr; }
  .gi-spacer { display: none; }
  .gi-stepper { gap: 0; padding: 0 0.5rem; }
  .gi-step-num { width: 28px; height: 28px; font-size: 0.7rem; }
  .gi-step-label { font-size: 0.6rem; letter-spacing: 0.03em; }
  .gi-step-line { flex: 0 0 20px; margin: 0 0.3rem; margin-bottom: 1rem; }
  .gi-title { font-size: 1.6rem; }
  .gi-sticky-inner { padding: 0.8rem 1rem; }
  .gi-submit-btn { padding: 0.7rem 1.5rem; font-size: 0.85rem; }
}

/* ── Inline field validation & confirmation extras ── */
.gi-field-error {
  display: block; font-family: 'Manrope', sans-serif;
  font-size: 0.75rem; color: #c0392b; margin-top: 0.3rem;
}
.gi-conf-fallback { font-size: 0.9rem !important; }
.gi-copy-btn { margin-right: 0.8rem; margin-bottom: 0.8rem; }

/* ── Marketing consent checkbox ── */
.gi-consent {
  display: flex; gap: 0.6rem; align-items: flex-start;
  font-family: 'Manrope', sans-serif; font-size: 0.85rem; color: var(--muted, #666);
  margin: 1.2rem 0 0.4rem; cursor: pointer; line-height: 1.5;
}
.gi-consent input { margin-top: 0.25rem; accent-color: var(--gold, #b99256); }

/* Reservation number on confirmation screens */
.gi-ref-no {
  font-family: 'Manrope', sans-serif; font-size: 1.05rem !important;
  color: var(--ink, #222) !important; margin-bottom: 1rem !important;
}
.gi-ref-no strong { color: var(--gold, #b99256); letter-spacing: 0.05em; }

/* Split phone field: country code selector + number */
.gi-phone-row { display: flex; gap: 0.5rem; }
.gi-phone-row select { flex: 0 0 7.5em; min-width: 0; }
.gi-phone-row input { flex: 1; min-width: 0; }

/* ── Sold-out rooms in search results ── */
.result-soldout .result-left { opacity: 0.55; }
.result-soldout .rc-arrow { display: none !important; }
.rate-soldout {
  display: flex; flex-direction: column; justify-content: center; height: 100%;
  padding: 1.2rem; text-align: center;
  background: #faf6f0; border: 1px dashed #d9c9b0; border-radius: 10px;
  font-family: 'Manrope', sans-serif;
}
.rate-soldout h4 {
  margin: 0 0 0.6rem; font-size: 1rem; color: #a05252;
}
.rate-soldout p { margin: 0 0 0.5rem; font-size: 0.88rem; color: #776; line-height: 1.5; }
.rate-soldout strong { color: #a05252; }

/* ── Sold-out warning on guest details page ── */
.gi-soldout-note {
  margin-top: 1.2rem; padding: 1rem 1.2rem; border-radius: 10px;
  background: #fdf1f0; border: 1px solid #e5b8b3;
  font-family: 'Manrope', sans-serif; font-size: 0.9rem; color: #8c3f38; line-height: 1.6;
}
.gi-soldout-note a { color: #8c3f38; font-weight: 700; }
