:root {
  --reservation-bg: #f6f1e7;
  --reservation-surface: #fffdf8;
  --reservation-ink: #1c1712;
  --reservation-muted: #685a4b;
  --reservation-line: rgba(70, 54, 39, 0.12);
  --reservation-accent: #25473d;
  --reservation-shadow: 0 24px 60px rgba(38, 28, 18, 0.08);
}

body.reservation-page {
  background:
    radial-gradient(circle at top left, rgba(198, 148, 82, 0.18), transparent 30%),
    linear-gradient(180deg, #efe4d2 0%, var(--reservation-bg) 36%, #f9f5ee 100%);
  color: var(--reservation-ink);
  font-family: Georgia, "Times New Roman", serif;
}

body.reservation-page .site-header .logo-text {
  font-family: "Playfair Display", Georgia, serif !important;
}

body.reservation-page .site-header .nav-links,
body.reservation-page .site-header .nav-dropdown-menu,
body.reservation-page .site-header .nav-links a,
body.reservation-page .site-header .nav-dropdown-menu a,
body.reservation-page .site-header .nav-cta {
  font-family: "Nunito Sans", Arial, sans-serif !important;
}

.accommodations-shell {
  max-width: 1360px;
  margin: 0 auto;
  padding: 14px 18px 22px;
}

.reservation-hero,
.selection-summary,
.property-panel,
.widget-panel {
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(70, 54, 39, 0.1);
  border-radius: 28px;
  box-shadow: var(--reservation-shadow);
}

.reservation-hero {
  padding: 14px 18px;
  margin-bottom: 10px;
}

.hero-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--reservation-muted);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reservation-hero h1 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
  font-weight: 500;
}

.hero-copy {
  max-width: 720px;
  margin: 6px 0 0;
  color: var(--reservation-muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.progress-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.progress-steps li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(37, 71, 61, 0.08);
  color: var(--reservation-muted);
  white-space: nowrap;
}

.progress-step-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.progress-steps li span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 71, 61, 0.12);
  color: var(--reservation-ink);
}

.progress-steps .is-active {
  background: var(--reservation-accent);
  color: #f8f4ec;
}

.progress-steps .is-active span {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.selection-summary {
  padding: 12px 14px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.selection-summary h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 500;
}

.selection-summary p:last-child {
  margin-bottom: 0;
}

.summary-copy {
  max-width: 430px;
}

.summary-panel {
  display: grid;
  gap: 6px;
  flex: 1;
}

.summary-stats {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 6px;
  flex: 1;
}

.summary-stats div {
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(37, 71, 61, 0.06);
}

.summary-stats dt {
  color: var(--reservation-muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.summary-stats dd {
  margin: 4px 0 0;
  font-size: 0.88rem;
}

.summary-pricing-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.summary-price-card {
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(37, 71, 61, 0.06);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.summary-price-card span {
  color: var(--reservation-muted);
  font-size: 0.72rem;
  line-height: 1.1;
}

.summary-price-card strong {
  font-size: 0.92rem;
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

.summary-price-card--all-in strong {
  color: var(--reservation-accent);
}

.cancellation-policy {
  margin: 0;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(37, 71, 61, 0.06);
  color: var(--reservation-muted);
  font-size: 0.76rem;
  line-height: 1.35;
}

.cancellation-policy strong {
  color: var(--reservation-ink);
  font-weight: 600;
}

.accommodation-layout {
  display: grid;
  grid-template-columns: 380px minmax(0, 1fr);
  gap: 20px;
}

.property-panel,
.widget-panel {
  padding: 24px;
}

.property-image-wrap {
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  margin-bottom: 18px;
  background: rgba(37, 71, 61, 0.08);
}

.property-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-copy h2,
.widget-heading h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.05;
}

.property-copy p,
.widget-note {
  color: var(--reservation-muted);
  line-height: 1.7;
}

#stay-summary-message:empty,
.widget-note:empty {
  display: none;
}

.property-highlights {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}

.property-highlights li {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(37, 71, 61, 0.06);
}

.widget-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.widget-frame-wrap {
  margin-top: 18px;
  min-height: 900px;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--reservation-line);
}

#booking-iframe {
  width: 100%;
  min-height: 900px;
  border: 0;
  background: #fff;
}

.widget-note.is-warning {
  color: #9a512f;
}

@media (max-width: 960px) {
  .selection-summary,
  .hero-row,
  .widget-heading {
    flex-direction: column;
    align-items: stretch;
  }

  .summary-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .summary-pricing-row {
    grid-template-columns: 1fr;
  }

  .accommodation-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .accommodations-shell {
    padding: 8px 10px 18px;
  }

  .reservation-hero,
  .selection-summary,
  .property-panel,
  .widget-panel {
    border-radius: 20px;
  }

  .reservation-hero {
    padding: 10px 12px;
    margin-bottom: 8px;
  }

  .eyebrow {
    margin-bottom: 4px;
  }

  .hero-row {
    gap: 10px;
  }

  .reservation-hero h1 {
    font-size: 1.5rem;
    line-height: 0.98;
  }

  .hero-copy {
    margin-top: 4px;
    font-size: 0.82rem;
    line-height: 1.28;
  }

  .progress-steps {
    gap: 6px;
    flex-wrap: nowrap;
  }

  .progress-steps li {
    flex: 0 1 auto;
    justify-content: center;
    gap: 6px;
    padding: 6px 8px;
    font-size: 0.78rem;
    min-width: 0;
  }

  .progress-steps li:first-child {
    padding-left: 7px;
    padding-right: 7px;
  }

  .progress-steps li.is-active {
    padding-left: 10px;
    padding-right: 10px;
  }

  .progress-step-link {
    justify-content: center;
    gap: 6px;
    min-width: 0;
  }

  .progress-steps li span {
    width: 20px;
    height: 20px;
    font-size: 0.75rem;
  }

  .selection-summary {
    flex-direction: column;
    align-items: stretch;
    padding: 8px 10px 10px;
    margin-bottom: 8px;
    gap: 8px;
  }

  .summary-copy {
    max-width: none;
  }

  .selection-summary h2 {
    font-size: 1.15rem;
  }

  #stay-summary-message {
    margin-top: 2px;
    font-size: 0.8rem;
    line-height: 1.2;
  }

  .summary-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px;
  }

  .summary-stats div {
    padding: 6px 8px;
    border-radius: 10px;
  }

  .summary-stats dt {
    font-size: 0.6rem;
    letter-spacing: 0.06em;
  }

  .summary-stats dd {
    margin-top: 2px;
    font-size: 0.8rem;
    line-height: 1.15;
  }

  .summary-panel {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .summary-pricing-row {
    order: -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
  }

  .summary-price-card {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 3px;
    padding: 6px 7px;
    border-radius: 10px;
  }

  .summary-price-card span {
    font-size: 0.6rem;
    line-height: 1.05;
  }

  .summary-price-card strong {
    font-size: 0.72rem;
    line-height: 1.05;
    text-align: left;
    white-space: normal;
    word-break: break-word;
  }

  .cancellation-policy {
    padding: 6px 7px;
    border-radius: 10px;
    font-size: 0.68rem;
    line-height: 1.2;
  }

  .widget-panel {
    padding: 10px 12px;
  }

  .accommodation-layout {
    gap: 8px;
  }

  .property-panel {
    display: none;
  }

  .widget-heading h2 {
    font-size: 1.2rem;
  }

  .widget-note {
    margin: 6px 0 0;
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .widget-heading,
  .widget-panel {
    gap: 8px;
  }

  .widget-frame-wrap,
  #booking-iframe {
    min-height: 680px;
  }
}
