:root {
  --teal: #116d63;
  --teal-dark: #06473f;
  --mint: #e9f6f0;
  --gold: #c89537;
  --coral: #e45f4f;
  --ink: #1d2529;
  --muted: #66747b;
  --line: #dbe4e0;
  --paper: #ffffff;
  --soft: #f5f7f4;
  --shadow: 0 18px 45px rgba(16, 34, 31, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--soft);
}

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

button,
input {
  font: inherit;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 16px rgba(15, 31, 30, 0.08);
  display: flex;
  gap: 28px;
  height: 72px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 4vw, 72px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  min-width: max-content;
}

.brand-logo {
  border-radius: 8px;
  height: 48px;
  object-fit: cover;
  width: 48px;
}

.brand-mark {
  align-items: center;
  background: radial-gradient(circle at 30% 25%, #fff4cb, var(--gold) 42%, var(--teal) 44%);
  border-radius: 50%;
  color: white;
  display: inline-flex;
  font-size: 21px;
  font-weight: 900;
  height: 44px;
  justify-content: center;
  width: 44px;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
  line-height: 1;
}

.brand strong {
  color: var(--teal-dark);
  font-size: 19px;
}

.brand small {
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
}

.main-nav,
.header-actions {
  align-items: center;
  display: flex;
  gap: 24px;
}

.main-nav a,
.signin {
  color: #202b2e;
  font-size: 15px;
  font-weight: 600;
}

.main-nav span {
  background: var(--gold);
  border-radius: 10px;
  color: white;
  font-size: 11px;
  margin-left: 4px;
  padding: 1px 6px 2px;
}

.icon-button {
  align-items: center;
  background: #eef2ef;
  border-radius: 8px;
  color: var(--ink);
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.icon-button svg {
  height: 21px;
  width: 21px;
}

.signin {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 10px 0;
}

.signin.signed-in {
  background: var(--mint);
  border-radius: 8px;
  color: var(--teal-dark);
  padding: 10px 12px;
}

.admin-open {
  background: var(--teal);
  border: 0;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font-weight: 800;
  min-height: 40px;
  padding: 0 14px;
}

.hero {
  min-height: 430px;
  overflow: visible;
  position: relative;
}

.hero-media {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.32) 38%, rgba(12, 51, 49, 0.12)),
    url("https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?auto=format&fit=crop&w=1800&q=82") center / cover;
  inset: 0;
  min-height: 430px;
  position: absolute;
}

.hero-content {
  max-width: 570px;
  padding: 70px clamp(18px, 4vw, 72px) 150px;
  position: relative;
  z-index: 2;
}

.sale-note {
  color: var(--teal);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  margin: 0 0 16px;
}

h1 {
  color: var(--teal-dark);
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.92;
  margin: 0 0 18px;
}

.hero-offer {
  color: #2e373a;
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.05;
  margin: 0 0 24px;
  max-width: 500px;
}

.coupon {
  border: 1.5px dashed var(--ink);
  color: #2c3335;
  display: inline-block;
  font-size: 22px;
  margin: 0;
  padding: 10px 18px;
}

.login-card {
  background: white;
  border-radius: 0 0 4px 4px;
  box-shadow: var(--shadow);
  max-width: 410px;
  overflow: hidden;
  position: absolute;
  right: clamp(18px, 4vw, 72px);
  top: 0;
  width: calc(100% - 36px);
  z-index: 3;
}

.login-card > strong,
.login-card > span {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: white;
  display: block;
  padding: 16px 58px 0 22px;
}

.login-card > span {
  color: #ecfffb;
  font-size: 14px;
  padding-bottom: 16px;
  padding-top: 3px;
}

.close-login {
  background: none;
  border: 0;
  color: white;
  cursor: pointer;
  font-size: 26px;
  position: absolute;
  right: 14px;
  top: 11px;
}

.login-card button:last-child {
  align-items: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  gap: 12px;
  margin: 14px;
  padding: 13px 16px;
  width: calc(100% - 28px);
}

.login-card button:last-child:disabled {
  cursor: default;
}

.login-card svg {
  color: var(--muted);
  height: 24px;
  width: 24px;
}

.login-card button:last-child span {
  font-size: 24px;
  margin-left: auto;
}

.booking-panel {
  margin: -54px auto 0;
  max-width: 1200px;
  padding: 0 18px;
  position: relative;
  z-index: 5;
}

.booking-panel form {
  align-items: stretch;
  background: white;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.45fr 0.85fr 0.85fr 1fr 70px;
  min-height: 92px;
  overflow: visible;
  padding: 12px;
}

.field {
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 12px 28px;
  position: relative;
}

.field span {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 5px;
}

.field input,
.guest-toggle {
  background: transparent;
  border: 0;
  color: var(--ink);
  min-width: 0;
  outline: 0;
  padding: 0;
  text-align: left;
}

.field input::placeholder {
  color: #87959a;
}

.search-button {
  align-items: center;
  align-self: center;
  background: var(--teal);
  border: 0;
  border-radius: 14px;
  color: white;
  cursor: pointer;
  display: inline-flex;
  height: 58px;
  justify-content: center;
  margin-left: 12px;
  width: 58px;
}

.search-button svg {
  height: 27px;
  width: 27px;
}

.suggestions,
.guest-menu {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: none;
  left: 22px;
  min-width: min(320px, calc(100vw - 70px));
  padding: 8px;
  position: absolute;
  top: 74px;
  z-index: 10;
}

.suggestions.open,
.guest-menu.open {
  display: block;
}

.suggestions button {
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  gap: 2px;
  padding: 10px 12px;
  text-align: left;
  width: 100%;
}

.suggestions button small {
  color: var(--muted);
  font-size: 0.78rem;
}

.suggestions button:hover {
  background: var(--mint);
}

.guest-menu {
  min-width: 250px;
  padding: 14px;
}

.guest-menu > div {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}

.stepper {
  align-items: center;
  display: flex;
  gap: 12px;
}

.stepper button {
  background: var(--mint);
  border: 1px solid #bdd8d0;
  border-radius: 50%;
  color: var(--teal-dark);
  cursor: pointer;
  height: 30px;
  width: 30px;
}

.quick-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 34px auto 0;
  max-width: 1080px;
  padding: 0 18px;
}

.quick-cities a {
  background: white;
  border-radius: 8px;
  color: #334044;
  padding: 10px 15px;
}

.quick-cities a:last-child {
  background: var(--mint);
  color: var(--teal-dark);
}

.guest-strip {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  margin: 34px auto 0;
  max-width: 1120px;
  overflow: hidden;
  padding: 0 18px;
}

.guest-strip article {
  background: white;
  border: 1px solid var(--line);
  min-height: 104px;
  padding: 20px;
}

.guest-strip strong {
  color: var(--teal-dark);
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.guest-strip span {
  color: var(--muted);
  line-height: 1.45;
}

.hotel-results,
.room-guide {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 18px 0;
}

.results-head {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 8px;
}

.results-head p {
  color: #5d6668;
  font-size: 12px;
  font-weight: 700;
  margin: 0;
}

.sort-box {
  align-items: center;
  display: flex;
  gap: 8px;
  min-width: 0;
}

.sort-box label,
.price-range span {
  color: #1f282b;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.sort-box select,
.dialog-card select,
.dialog-card input,
.dialog-card textarea {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  min-height: 44px;
  padding: 0 12px;
}

.sort-box select {
  border-radius: 0;
  font-size: 12px;
  min-height: 38px;
  min-width: 170px;
}

.map-view-button {
  background: #e6fbf5;
  border: 0;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  min-height: 38px;
  padding: 0 14px;
}

.results-layout {
  align-items: start;
  display: grid;
  gap: 22px;
  grid-template-columns: 308px 1fr;
}

.filter-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 0;
  display: grid;
  gap: 0;
  max-height: calc(100vh - 112px);
  overflow: auto;
  padding: 0;
  position: sticky;
  top: 92px;
}

.filter-title,
.applied-filters,
.filter-group {
  border-bottom: 1px solid var(--line);
  padding: 18px 22px;
}

.filter-title {
  align-items: center;
  display: flex;
  gap: 10px;
}

.filter-title span {
  color: var(--teal);
  font-weight: 900;
}

.filter-panel h3,
.filter-panel h4 {
  margin: 0;
  text-transform: uppercase;
}

.filter-panel h4 {
  color: #4a5254;
  font-size: 13px;
  letter-spacing: 0;
}

.filter-panel h4 span {
  color: var(--muted);
  float: right;
  text-transform: none;
}

.applied-filters {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.applied-filters strong {
  font-size: 13px;
  text-transform: uppercase;
}

.applied-filters button {
  background: transparent;
  border: 0;
  color: var(--teal);
  cursor: pointer;
  font-weight: 800;
}

.filter-group {
  display: grid;
  gap: 11px;
}

.filter-panel label {
  align-items: center;
  color: #687174;
  display: flex;
  font-size: 13px;
  gap: 10px;
  line-height: 1.35;
}

.filter-panel input[type="checkbox"] {
  accent-color: var(--teal);
  height: 18px;
  width: 18px;
}

.filter-panel small,
.group-note {
  color: var(--muted);
}

.filter-search {
  background: #f7faf8;
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 40px;
  padding: 0 11px;
}

.filter-group input[type="range"] {
  accent-color: var(--teal);
  width: 100%;
}

.essential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.essential-row span {
  background: var(--mint);
  border-radius: 999px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 9px;
}

.hotel-list {
  display: grid;
  gap: 0;
}

.signin-points-strip {
  background: #ffedd7;
  color: #4d463a;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 14px;
  padding: 12px 18px;
  text-align: center;
}

.hotel-card {
  background: white;
  border: 0;
  border-radius: 0;
  display: grid;
  grid-template-columns: 285px 1fr 190px;
  min-height: 177px;
  overflow: hidden;
}

.hotel-card:nth-child(odd) {
  background: #ddfbf7;
}

.hotel-image-wrap {
  margin: 20px 24px;
  min-height: 137px;
  overflow: hidden;
  position: relative;
}

.hotel-image-wrap img {
  height: 100%;
  min-height: 137px;
  object-fit: cover;
  width: 100%;
}

.hotel-image-wrap span {
  background: #ffe151;
  color: #142326;
  font-size: 13px;
  font-weight: 1000;
  left: 0;
  line-height: .9;
  padding: 7px 8px;
  position: absolute;
  text-transform: uppercase;
  top: 0;
  width: 48px;
}

.hotel-image-wrap b {
  background: white;
  border-radius: 50%;
  bottom: 9px;
  height: 7px;
  left: 50%;
  position: absolute;
  width: 7px;
}

.hotel-info {
  align-content: start;
  display: grid;
  gap: 9px;
  padding: 28px 0;
}

.hotel-info h3 {
  color: #3d4547;
  font-size: 18px;
  line-height: 1.15;
  margin: 0;
}

.hotel-info p {
  color: #6d7678;
  font-size: 13px;
  margin: 0;
}

.listing-rating-row {
  align-items: center;
  display: flex;
  gap: 10px;
}

.listing-rating-row strong {
  background: var(--teal);
  border-radius: 5px;
  color: white;
  font-size: 13px;
  padding: 7px 10px;
}

.listing-rating-row span {
  color: var(--muted);
  font-size: 13px;
}

.listing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.listing-tags span {
  background: white;
  border-radius: 999px;
  color: #657174;
  font-size: 10px;
  font-weight: 900;
  padding: 8px 12px;
  text-transform: uppercase;
}

.listing-detail-link {
  background: transparent;
  border: 0;
  color: var(--teal);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  justify-self: start;
  padding: 0;
}

.listing-price {
  align-content: start;
  display: grid;
  justify-items: end;
  padding: 28px 18px 16px 0;
  text-align: right;
}

.listing-price strong {
  color: #263033;
  font-size: 18px;
}

.listing-price span {
  color: #f08c00;
  font-size: 12px;
  font-weight: 900;
}

.listing-price s {
  color: #697275;
  font-weight: 600;
}

.listing-price small {
  color: var(--muted);
  font-size: 12px;
  margin: 2px 0 42px;
}

.listing-price button,
.confirm-booking {
  background: var(--teal);
  border: 0;
  border-radius: 3px;
  color: white;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  min-height: 38px;
  padding: 0 24px;
  text-transform: uppercase;
}

.listing-price button:disabled,
.rate-row button:disabled {
  background: #aab6b3;
  cursor: not-allowed;
}

.listing-price em {
  color: #d35a22;
  font-size: 10px;
  font-style: normal;
  margin-top: 14px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.card-actions button:first-child {
  background: white;
  border: 1px solid var(--teal);
  color: var(--teal);
}

.property-detail-page {
  background: #f5f5f5;
  padding: 18px 18px 44px;
}

.property-page-active main > section:not(.booking-panel):not(.property-detail-page) {
  display: none;
}

.property-page-active .booking-panel {
  border-bottom: 1px solid #dce4e1;
  box-shadow: none;
  margin: 0;
  max-width: none;
  position: sticky;
  top: 76px;
  z-index: 20;
}

.detail-shell {
  margin: 0 auto;
  max-width: 1280px;
}

.detail-breadcrumb {
  align-items: center;
  color: #0d8b78;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: 800;
  gap: 8px;
  margin: 8px 0 18px;
}

.detail-breadcrumb button {
  background: transparent;
  border: 0;
  color: #0d8b78;
  cursor: pointer;
  font-weight: 800;
  padding: 0;
}

.detail-breadcrumb strong {
  color: #62706d;
}

.detail-topline {
  align-items: center;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 14px;
}

.detail-topline h2 {
  color: #333b3d;
  font-size: 28px;
  line-height: 1.12;
  margin: 0 0 8px;
}

.detail-topline p {
  align-items: center;
  color: #44504f;
  display: flex;
  flex-wrap: wrap;
  font-size: 16px;
  gap: 8px;
  margin: 0;
}

.detail-topline a {
  color: var(--teal);
  font-weight: 900;
}

.detail-rating {
  align-items: center;
  display: flex;
  gap: 10px;
}

.detail-rating strong {
  background: #0c986d;
  border-radius: 8px;
  color: white;
  font-size: 18px;
  padding: 12px 14px;
}

.detail-rating span {
  color: #49565a;
  font-weight: 900;
  line-height: 1.25;
}

.detail-layout {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 760px) minmax(360px, 450px);
}

.detail-gallery {
  min-width: 0;
}

.detail-main-photo {
  border-radius: 8px;
  height: 462px;
  overflow: hidden;
  position: relative;
}

.detail-main-photo img {
  height: 100%;
  object-fit: cover;
  transition: opacity .25s ease;
  width: 100%;
}

.detail-main-photo span {
  background: linear-gradient(90deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, 0));
  bottom: 0;
  color: white;
  font-size: 15px;
  font-weight: 900;
  left: 0;
  padding: 14px 18px;
  position: absolute;
  right: 0;
}

.gallery-arrow,
.gallery-expand,
.gallery-count {
  position: absolute;
}

.gallery-arrow {
  align-items: center;
  background: rgba(0, 0, 0, .48);
  border: 0;
  border-radius: 50%;
  color: white;
  display: grid;
  font-size: 34px;
  height: 44px;
  place-items: center;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
}

.gallery-prev {
  left: 16px;
}

.gallery-next {
  right: 16px;
}

.gallery-expand {
  background: rgba(0, 0, 0, .55);
  border: 0;
  border-radius: 4px;
  color: white;
  font-size: 20px;
  height: 38px;
  right: 14px;
  top: 14px;
  width: 38px;
}

.gallery-count {
  background: rgba(0, 0, 0, .5);
  border: 1px solid white;
  border-radius: 3px;
  bottom: 22px;
  color: white;
  font-size: 15px;
  font-weight: 900;
  padding: 10px 14px;
  right: 16px;
}

.detail-tabs {
  align-items: end;
  border-bottom: 1px solid #dce4e1;
  display: flex;
  gap: 26px;
  margin: 24px 0 24px;
  max-width: 760px;
  overflow-x: auto;
}

.detail-tabs a {
  color: #5f6968;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 900;
  padding: 0 0 12px;
}

.detail-tabs a:first-child {
  border-bottom: 3px solid var(--teal);
  color: var(--teal);
}

.detail-section {
  background: white;
  border-radius: 16px;
  margin-bottom: 24px;
  max-width: 760px;
  padding: 24px;
}

.detail-section h3 {
  color: #333b3d;
  font-size: 22px;
  margin: 0 0 22px;
}

.detail-rooms {
  display: grid;
  gap: 14px;
  padding-bottom: 18px;
}

.detail-room-card {
  background: #e9fbf7;
  border: 1px solid #37ad99;
  border-radius: 16px;
  display: grid;
  grid-template-columns: 190px 1fr 178px;
  overflow: hidden;
}

.room-card-photo {
  min-height: 164px;
  position: relative;
}

.room-card-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.room-card-photo button {
  background: rgba(0, 0, 0, .54);
  border: 0;
  border-radius: 50%;
  color: white;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
}

.room-card-photo button:first-of-type {
  left: 10px;
}

.room-card-photo button:last-of-type {
  right: 10px;
}

.room-card-photo span {
  background: #e9fbf7;
  border: 1px solid #37ad99;
  border-radius: 999px;
  bottom: 8px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  padding: 5px 9px;
  position: absolute;
  right: 8px;
}

.room-card-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.room-card-body > strong {
  color: #323d3f;
  font-size: 17px;
}

.room-specs,
.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
}

.room-specs span,
.room-amenities span {
  color: #485554;
  font-size: 13px;
  font-weight: 800;
}

.room-amenities button,
.view-all-rooms {
  background: transparent;
  border: 0;
  color: var(--teal);
  cursor: pointer;
  font-weight: 900;
}

.room-card-price {
  align-content: center;
  border-left: 1px solid #a4ddd3;
  display: grid;
  justify-items: end;
  padding: 16px;
  text-align: right;
}

.room-card-price strong {
  color: #2f3d40;
  font-size: 26px;
}

.room-card-price span,
.room-card-price small {
  color: #5f6968;
}

.room-card-price small {
  align-items: center;
  display: flex;
  font-weight: 900;
  gap: 6px;
  margin-top: 36px;
}

.room-card-price small::after {
  background: var(--teal);
  border-radius: 50%;
  color: white;
  content: "✓";
  display: inline-grid;
  font-size: 10px;
  height: 16px;
  place-items: center;
  width: 16px;
}

.view-all-rooms {
  margin-top: 16px;
  padding: 0;
}

.detail-room-box {
  background: #edf9f6;
  border: 1px solid #74bcae;
  border-radius: 8px;
  display: grid;
  gap: 10px;
  padding: 16px;
}

.detail-room-box strong {
  color: #344448;
  font-size: 18px;
}

.detail-room-box span {
  color: #344448;
  font-size: 18px;
  font-weight: 900;
}

.detail-room-box button {
  background: transparent;
  border: 0;
  color: var(--teal);
  font-weight: 900;
  justify-self: end;
}

.detail-savings {
  color: #344448;
  display: grid;
  gap: 8px;
}

.detail-savings strong {
  color: #8c6a2f;
  font-size: 15px;
}

.detail-signin {
  background: #fff1dc;
  border-radius: 8px;
  color: #5d4b2d;
  font-weight: 900;
  padding: 14px;
}

.detail-book-now {
  background: var(--teal);
  border: 0;
  border-radius: 8px;
  color: white;
  display: flex;
  font-size: 18px;
  font-weight: 900;
  justify-content: space-between;
  align-items: center;
  min-height: 62px;
  padding: 0 18px;
}

.detail-book-now:disabled {
  background: #aab6b3;
}

.detail-booking-card {
  background: white;
  border: 1px solid #edf0ef;
  border-radius: 18px;
  box-shadow: none;
  display: grid;
  gap: 14px;
  padding: 18px;
  position: sticky;
  top: 164px;
}

.booking-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.booking-badges span {
  background: #e4f7f4;
  border-radius: 999px;
  color: #4f5d5c;
  font-size: 12px;
  font-weight: 900;
  padding: 9px 14px;
}

.booking-badges span:first-child {
  background: #fff4d8;
}

.booking-addon-grid article {
  border-radius: 8px;
  min-height: 120px;
  position: relative;
}

.booking-addon-grid article button {
  background: transparent;
  border: 0;
  bottom: 14px;
  color: var(--teal);
  font-weight: 900;
  position: absolute;
  right: 14px;
}

.detail-check-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.detail-check-list li {
  color: #3f4a4b;
  line-height: 1.45;
  padding-left: 28px;
  position: relative;
}

.detail-check-list li::before {
  background: var(--teal);
  border-radius: 50%;
  color: white;
  content: "✓";
  display: grid;
  font-size: 11px;
  height: 16px;
  left: 0;
  place-items: center;
  position: absolute;
  top: 3px;
  width: 16px;
}

.detail-section p {
  color: #3f4a4b;
  line-height: 1.55;
  margin: 0;
}

.detail-amenities-list {
  display: grid;
  gap: 22px 32px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.detail-amenities-list span {
  color: #3f4a4b;
  font-size: 14px;
  font-weight: 800;
  padding-left: 32px;
  position: relative;
}

.detail-amenities-list span::before {
  background: #f0f2f2;
  border-radius: 50%;
  content: "";
  height: 24px;
  left: 0;
  position: absolute;
  top: -4px;
  width: 24px;
}

.detail-location-grid {
  display: grid;
  grid-template-columns: 270px 1fr;
  margin-top: 18px;
  min-height: 360px;
}

.detail-location-grid aside {
  background: white;
  border-right: 1px solid #dfe7e5;
  display: grid;
  gap: 14px;
  padding: 16px;
  z-index: 2;
}

.detail-location-grid input {
  border: 1px solid #d7e2df;
  border-radius: 2px;
  min-height: 46px;
  padding: 0 12px;
}

.detail-location-grid aside strong {
  color: #3f4a4b;
  font-size: 13px;
}

.detail-location-grid aside span {
  color: #596564;
  display: flex;
  font-size: 13px;
  justify-content: space-between;
}

.detail-location-grid aside b {
  color: var(--teal);
}

.detail-map {
  align-items: center;
  background:
    linear-gradient(rgba(245, 248, 248, .78), rgba(245, 248, 248, .78)),
    repeating-linear-gradient(45deg, #e9eeee 0 2px, transparent 2px 60px),
    repeating-linear-gradient(-35deg, #e1e8e7 0 2px, transparent 2px 72px);
  display: grid;
  justify-items: center;
  position: relative;
}

.detail-map div {
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .16);
  display: grid;
  gap: 3px;
  padding: 14px 18px;
}

.detail-map a {
  background: white;
  border: 1px solid var(--teal);
  border-radius: 3px;
  bottom: 40px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  padding: 10px 16px;
  position: absolute;
  text-transform: uppercase;
}

.detail-section.compact {
  padding-bottom: 24px;
}

.empty-results {
  background: white;
  border: 1px dashed #b8c9c2;
  border-radius: 8px;
  padding: 32px;
  text-align: center;
}

.empty-results p {
  color: var(--muted);
  margin-bottom: 0;
}

.room-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.room-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.room-grid h3 {
  margin: 0 0 10px;
}

.room-grid p {
  color: var(--muted);
  line-height: 1.5;
}

.room-grid span {
  color: var(--teal-dark);
  font-weight: 800;
}

.admin-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 58px auto 0;
  max-width: 1180px;
  padding: 24px;
}

.admin-panel[hidden] {
  display: none;
}

.admin-head,
.admin-tabs,
.export-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
}

.admin-head p {
  color: var(--teal);
  font-weight: 800;
  margin: 0 0 6px;
}

.admin-head h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin: 0;
}

.admin-head button,
.admin-add button,
.admin-tabs button,
.export-actions button,
.admin-table button {
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  min-height: 38px;
  margin: 2px;
  padding: 0 14px;
}

.admin-head button,
.admin-table button {
  background: #f0dedb;
  color: #9f2f23;
}

.admin-table button[data-edit-property] {
  background: var(--mint);
  color: var(--teal-dark);
}

.delete-row-button,
.delete-property-button {
  background: #f0dedb;
  color: #9f2f23;
}

.property-edit-actions {
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.property-edit-actions button {
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  min-height: 46px;
  padding: 0 20px;
}

.admin-metrics {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  margin: 22px 0;
}

.admin-metrics article {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.admin-metrics span {
  color: var(--muted);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}

.admin-metrics strong {
  color: var(--teal-dark);
  font-size: 26px;
}

.admin-add {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 20px;
  padding: 16px;
}

.admin-add label {
  color: #344448;
  display: grid;
  font-size: 13px;
  font-weight: 800;
  gap: 7px;
}

.admin-add input,
.admin-add select,
.admin-add textarea {
  background: white;
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 42px;
  padding: 0 10px;
}

.admin-add textarea,
.dialog-card textarea {
  min-height: 78px;
  padding: 10px;
  resize: vertical;
}

.admin-add input[type="file"] {
  align-content: center;
  padding: 9px 10px;
}

.admin-add button,
.admin-tabs button.active,
.export-actions button {
  background: var(--teal);
  color: white;
}

.admin-add button {
  align-self: end;
}

.room-category-builder {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-column: 1 / -1;
  padding: 12px;
}

.builder-head {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.builder-head button,
.room-category-row button {
  border-radius: 6px;
  min-height: 38px;
  padding: 0 12px;
}

.room-category-list {
  display: grid;
  gap: 16px;
}

.room-category-row {
  align-items: end;
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.room-category-row label {
  color: #334246;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
  min-width: 0;
  white-space: normal;
}

.room-category-row input {
  font-size: 16px;
  font-weight: 800;
  min-width: 0;
  width: 100%;
}

.room-category-total input {
  background: var(--soft);
}

.room-category-row button {
  align-self: end;
  min-width: 110px;
}

.admin-tabs {
  justify-content: flex-start;
  margin-bottom: 14px;
}

.admin-tabs button {
  background: var(--mint);
  color: var(--teal-dark);
}

.export-actions {
  justify-content: flex-start;
  margin-bottom: 18px;
}

.admin-table-wrap {
  border: 1px solid var(--line);
  border-radius: 8px;
  max-height: 520px;
  overflow: auto;
}

.admin-table {
  border-collapse: collapse;
  min-width: 1050px;
  width: 100%;
}

.property-table-tools {
  background: white;
  caption-side: top;
  padding: 10px 12px;
  text-align: left;
}

.property-table-tools span {
  color: var(--teal-dark);
  font-weight: 900;
  margin-right: 12px;
}

.property-table-tools button {
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  margin-right: 8px;
  min-height: 34px;
  padding: 0 12px;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.admin-room-photo {
  border-radius: 6px;
  height: 54px;
  object-fit: cover;
  width: 72px;
}

.admin-table th {
  background: var(--mint);
  color: var(--teal-dark);
  position: sticky;
  top: 0;
  z-index: 1;
}

.admin-table tr[data-property-row] {
  cursor: pointer;
}

.admin-table tr[data-property-row]:hover td {
  background: #f6fbf8;
}

.admin-table input[type="checkbox"] {
  height: 18px;
  width: 18px;
}

.benefits,
.brand-story,
.offers,
.destinations,
.travel-reads,
.city-links {
  margin: 0 auto;
  max-width: 1180px;
  padding: 58px 18px 0;
}

.benefits h2,
.section-copy h2,
.stats h2,
.city-links h2 {
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.1;
  margin: 0 0 26px;
  text-align: center;
}

.benefit-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(6, 1fr);
}

.benefit-grid article {
  align-items: center;
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}

.benefit-grid svg {
  color: var(--teal);
  height: 58px;
  width: 58px;
}

.benefit-grid h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0;
}

.promo-band {
  align-items: center;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal) 48%, #2f9482);
  color: white;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 58px auto 0;
  max-width: 1120px;
  padding: 24px 32px;
}

.promo-band span {
  color: #d6f8ee;
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.promo-band strong {
  display: block;
  font-size: 26px;
  margin-top: 5px;
}

.promo-band p {
  margin: 6px 0 0;
}

.promo-band button,
.brand-grid a,
.travel-reads a {
  background: var(--gold);
  border: 0;
  border-radius: 4px;
  color: #1e211a;
  cursor: pointer;
  font-weight: 800;
  padding: 12px 20px;
  text-transform: uppercase;
}

.section-copy {
  margin: 0 auto 26px;
  max-width: 760px;
  text-align: center;
}

.section-copy p {
  color: var(--teal);
  font-weight: 800;
  margin: 0 0 8px;
}

.brand-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.brand-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.brand-grid img {
  aspect-ratio: 1.45;
  object-fit: cover;
}

.brand-grid h3,
.brand-grid p {
  margin-left: 18px;
  margin-right: 18px;
}

.brand-grid p {
  color: var(--muted);
  line-height: 1.55;
  min-height: 74px;
}

.brand-grid a {
  display: inline-block;
  margin: 0 18px 18px;
}

.offer-track {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.offer-track article {
  background:
    linear-gradient(135deg, rgba(17, 109, 99, 0.95), rgba(6, 71, 63, 0.86)),
    url("https://images.unsplash.com/photo-1564501049412-61c2a3083791?auto=format&fit=crop&w=700&q=80") center / cover;
  border-radius: 8px;
  color: white;
  min-height: 170px;
  padding: 22px;
}

.offer-track article:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(200, 149, 55, 0.94), rgba(109, 69, 18, 0.82)),
    url("https://images.unsplash.com/photo-1551632436-cbf8dd35adfa?auto=format&fit=crop&w=700&q=80") center / cover;
}

.offer-track article:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(228, 95, 79, 0.92), rgba(102, 42, 34, 0.82)),
    url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=700&q=80") center / cover;
}

.offer-track article:nth-child(4) {
  background:
    linear-gradient(135deg, rgba(29, 37, 41, 0.9), rgba(17, 109, 99, 0.72)),
    url("https://images.unsplash.com/photo-1582719508461-905c673771fd?auto=format&fit=crop&w=700&q=80") center / cover;
}

.offer-track span {
  border: 1px dashed rgba(255, 255, 255, 0.75);
  display: inline-block;
  font-weight: 900;
  padding: 6px 9px;
}

.offer-track strong {
  display: block;
  font-size: 29px;
  line-height: 1;
  margin-top: 22px;
}

.offer-track p {
  margin-bottom: 0;
}

.stats {
  text-align: center;
}

.stats p {
  color: var(--muted);
  margin: -14px 0 24px;
}

.stats strong {
  color: var(--ink);
}

.destination-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.destination-grid a {
  align-items: flex-end;
  aspect-ratio: 1.32;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.62)), var(--image) center / cover;
  border-radius: 8px;
  color: white;
  display: flex;
  overflow: hidden;
  padding: 22px;
}

.destination-grid span {
  font-size: 30px;
  font-weight: 900;
  text-transform: uppercase;
}

.travel-reads {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.travel-reads article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  grid-template-columns: 42% 1fr;
  overflow: hidden;
}

.travel-reads img {
  height: 100%;
  object-fit: cover;
}

.travel-reads div {
  padding: 22px;
}

.travel-reads h3 {
  margin: 0 0 10px;
}

.travel-reads p {
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 22px;
}

.city-links {
  padding-bottom: 54px;
}

.city-links div {
  column-gap: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 12px;
}

.city-links a {
  color: #405054;
}

.site-footer {
  background: #1f2b2d;
  color: #d6dfdc;
  display: grid;
  gap: 28px;
  grid-template-columns: 1.4fr 1fr 1fr;
  padding: 46px clamp(18px, 4vw, 72px) 24px;
}

.footer-brand strong,
.footer-brand small {
  color: white;
}

.site-footer p {
  line-height: 1.6;
  margin: 16px 0 0;
  max-width: 620px;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.app-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 18px;
}

.app-panel p {
  margin-top: 0;
}

.app-panel div {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.app-panel span {
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 5px;
  padding: 8px 11px;
}

.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  grid-column: 1 / -1;
  margin: 4px 0 0 !important;
  max-width: none !important;
  padding-top: 18px;
}

.toast {
  background: var(--ink);
  border-radius: 8px;
  bottom: 22px;
  box-shadow: var(--shadow);
  color: white;
  left: 50%;
  opacity: 0;
  padding: 13px 18px;
  pointer-events: none;
  position: fixed;
  transform: translate(-50%, 20px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 30;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.booking-dialog {
  background: transparent;
  border: 0;
  max-width: min(1180px, calc(100vw - 28px));
  padding: 0;
  width: 100%;
}

.booking-dialog::backdrop {
  background: rgba(11, 25, 27, 0.58);
}

.dialog-card {
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  max-height: min(90vh, 900px);
  overflow: auto;
  padding: 18px;
  position: relative;
}

.booking-experience {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.8fr);
}

.booking-gallery-pane,
.booking-summary-pane {
  display: grid;
  gap: 14px;
}

.booking-title {
  padding-right: 36px;
}

.dialog-card p {
  color: var(--teal);
  font-weight: 800;
  margin: 0 0 4px;
}

.dialog-card h2 {
  margin: 0;
}

.dialog-card label {
  color: #344448;
  display: grid;
  font-weight: 700;
  gap: 7px;
}

.form-grid-2 {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}

.property-edit-dialog {
  max-width: min(760px, calc(100vw - 28px));
}

.property-edit-dialog .dialog-card {
  max-height: min(86vh, 820px);
  overflow: auto;
}

.dialog-close {
  background: transparent;
  border: 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 30px;
  position: absolute;
  right: 18px;
  top: 12px;
}

.selected-stay {
  background: white;
  border: 0;
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 0;
}

.booking-property-head {
  align-items: start;
  display: flex;
  gap: 14px;
  justify-content: space-between;
}

.booking-property-head strong {
  color: #30383a;
  display: block;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
}

.booking-property-head span {
  color: var(--muted);
  display: block;
  font-size: 18px;
  margin-top: 8px;
}

.booking-property-head b {
  background: #3d9360;
  border-radius: 8px;
  color: white;
  min-width: 92px;
  padding: 12px 14px;
  text-align: center;
}

.booking-photo-wrap {
  border-radius: 8px;
  min-height: 360px;
  overflow: hidden;
  position: relative;
}

.booking-photo-wrap img {
  aspect-ratio: 1.55;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.booking-photo-wrap span {
  background: linear-gradient(90deg, rgba(0, 0, 0, .68), rgba(0, 0, 0, 0));
  bottom: 0;
  color: white;
  font-size: 18px;
  font-weight: 800;
  left: 0;
  padding: 18px 20px;
  position: absolute;
  right: 0;
}

.booking-stay-meta,
.booking-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.booking-stay-meta span,
.booking-badges span {
  background: #f5edda;
  border-radius: 999px;
  color: #6e5b33;
  font-weight: 900;
  padding: 9px 14px;
}

.booking-badges span:nth-child(2),
.booking-badges span:nth-child(3) {
  background: #e2f4f1;
  color: var(--teal-dark);
}

.booking-summary-pane {
  background: #fbfcfb;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.checkout-layout {
  background: #eeeeee;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) 372px;
  margin: -18px;
  min-height: 720px;
  padding: 8px 12px;
}

.checkout-steps {
  display: grid;
  gap: 0;
  align-content: start;
}

.checkout-step {
  background: white;
  border: 1px solid #d4d4d4;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .12);
  padding: 22px 34px;
}

.checkout-step.traveller-done {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 96px;
}

.checkout-step + .checkout-step {
  border-top: 0;
}

.checkout-step h2,
.checkout-step h3 {
  align-items: center;
  color: #8b8f91;
  display: flex;
  font-size: 15px;
  gap: 8px;
  letter-spacing: .01em;
  margin: 0;
  text-transform: uppercase;
}

.checkout-step h2 {
  color: var(--teal);
}

.traveller-complete {
  align-items: center;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.traveller-complete[hidden] {
  display: none;
}

.traveller-complete p {
  color: #909295;
  font-size: 17px;
  font-weight: 800;
  margin: 12px 0 0 28px;
}

.traveller-complete button {
  background: white;
  border: 1px solid #ececec;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .14);
  color: #454545;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  min-height: 56px;
  min-width: 148px;
  text-transform: uppercase;
}

.checkout-step.traveller-done .traveller-form-title,
.checkout-step.traveller-done .checkout-fields {
  display: none;
}

.checkout-step h2 span,
.checkout-step h3 span {
  background: var(--teal);
  border-radius: 1px;
  color: white;
  display: inline-grid;
  font-size: 12px;
  height: 18px;
  place-items: center;
  width: 18px;
}

.checkout-step h3 span {
  background: #9a9a9a;
}

.checkout-fields {
  display: grid;
  gap: 24px;
  margin-top: 30px;
  max-width: 620px;
}

.checkout-fields > .checkout-line,
.checkout-fields > .phone-line,
.checkout-fields > .booking-updates,
.checkout-fields > .checkout-continue,
.checkout-fields > .checkout-terms {
  max-width: 340px;
}

.checkout-line {
  gap: 3px;
}

.checkout-line span {
  color: #8d9294;
  font-size: 13px;
}

.dialog-card .checkout-line input {
  border: 0;
  border-bottom: 1px solid #777;
  border-radius: 0;
  min-height: 34px;
  padding: 0;
}

.phone-line {
  display: grid;
  gap: 10px;
  grid-template-columns: 52px 1fr;
}

.gstin-button {
  background: #d8faf1;
  border: 0;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  justify-self: start;
  padding: 10px 14px;
}

.gstin-panel {
  display: grid;
  gap: 24px;
  margin: -4px 0 4px;
  width: min(100%, 620px);
}

.gstin-panel[hidden] {
  display: none;
}

.gstin-remove {
  align-items: center;
  background: #d8faf1;
  border: 0;
  color: var(--teal);
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  gap: 18px;
  justify-self: start;
  min-height: 38px;
  padding: 0 14px;
}

.gstin-panel .checkout-line {
  gap: 3px;
}

.gstin-panel .checkout-line span {
  color: #8d9294;
  font-size: 13px;
  font-weight: 700;
}

.dialog-card .gstin-panel .checkout-line input {
  border-bottom-color: #777;
  min-height: 34px;
}

.booking-updates {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.dialog-card .booking-updates input {
  accent-color: var(--teal);
  min-height: auto;
  width: auto;
}

.checkout-continue {
  background: var(--teal);
  border: 0;
  color: white;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  min-height: 50px;
  text-transform: uppercase;
}

.dialog-card .checkout-terms {
  color: #344448;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  margin: -4px 0 0;
}

.checkout-step.muted .payment-choice-group,
.checkout-step.muted .payment-result,
.checkout-step.muted .confirm-booking,
.checkout-step.muted .payment-shell {
  display: none;
}

.checkout-step.muted.active .payment-choice-group,
.checkout-step.muted.active .payment-result,
.checkout-step.muted.active .confirm-booking,
.checkout-step.muted.active .payment-shell {
  display: grid;
}

.checkout-step.muted.active {
  min-height: 390px;
}

.checkout-summary {
  background: white;
  border: 1px solid #d4d4d4;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .12);
  display: grid;
  gap: 0;
  align-content: start;
}

.checkout-hotel-photo {
  aspect-ratio: 1.9;
  object-fit: cover;
}

.checkout-hotel-info,
.checkout-categories,
.checkout-addons,
.checkout-price-lines {
  border-bottom: 1px solid #dedede;
  padding: 18px;
}

.checkout-hotel-info h3 {
  color: #3e4446;
  font-size: 17px;
  margin: 0 0 8px;
}

.checkout-hotel-info p {
  color: #777;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 14px;
}

.checkout-hotel-info dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.checkout-hotel-info div {
  padding-left: 30px;
  position: relative;
}

.checkout-hotel-info div::before {
  color: #7a7a7a;
  content: "●";
  left: 2px;
  position: absolute;
  top: 1px;
}

.checkout-hotel-info dt {
  color: #777;
  font-size: 11px;
  font-weight: 900;
}

.checkout-hotel-info dd {
  color: #2f3638;
  font-size: 12px;
  font-weight: 800;
  margin: 2px 0 0;
}

.checkout-categories {
  display: grid;
  gap: 12px;
}

.checkout-categories > strong {
  color: #3e4446;
  font-size: 14px;
  font-weight: 900;
}

.booking-category-grid {
  display: grid;
  gap: 10px;
}

.booking-category-card {
  background: white;
  border: 1px solid #d9e6e2;
  border-radius: 8px;
  color: #344448;
  cursor: pointer;
  display: grid;
  gap: 5px;
  padding: 12px;
  text-align: left;
}

.booking-category-card.active {
  background: #e9fbf7;
  border-color: var(--teal);
  box-shadow: inset 3px 0 0 var(--teal);
}

.booking-category-card:disabled {
  cursor: not-allowed;
  opacity: .55;
}

.booking-category-card strong {
  font-size: 14px;
}

.booking-category-card span {
  color: #2f3638;
  font-size: 13px;
  font-weight: 900;
}

.booking-category-card small {
  color: #66747b;
  font-size: 11px;
  font-weight: 700;
}

.booking-category-card em {
  color: var(--teal);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.checkout-addons {
  display: grid;
  gap: 16px;
}

.checkout-addons article {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto;
}

.checkout-addons strong {
  color: #3e4446;
  display: block;
  font-size: 13px;
}

.checkout-addons span,
.checkout-addons small {
  color: #66747b;
  display: block;
  font-size: 11px;
  margin-top: 4px;
}

.checkout-addons button {
  align-self: center;
  background: white;
  border: 1px solid var(--teal);
  border-radius: 3px;
  color: var(--teal);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  min-width: 68px;
  padding: 7px 10px;
}

.checkout-addons b {
  align-self: center;
  color: #2f3638;
}

.checkout-addons small {
  color: var(--teal);
  font-weight: 900;
  justify-self: end;
}

.checkout-price-lines {
  display: grid;
  gap: 14px;
}

.checkout-price-lines div {
  align-items: start;
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.checkout-price-lines span {
  color: #4d5658;
  font-size: 12px;
  font-weight: 800;
}

.checkout-price-lines strong {
  color: #2f3638;
  font-size: 12px;
}

.checkout-price-lines small {
  background: #fff0c8;
  border-radius: 999px;
  color: #6b5b32;
  font-size: 10px;
  font-weight: 900;
  justify-self: start;
  margin-top: -8px;
  padding: 5px 10px;
}

.checkout-price-lines button {
  background: transparent;
  border: 0;
  color: var(--teal);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  justify-self: start;
  padding: 0;
}

.checkout-price-lines .payable {
  border-top: 1px solid #dedede;
  padding-top: 12px;
}

.checkout-price-lines .payable b {
  color: var(--teal);
  display: block;
  font-size: 12px;
}

.checkout-payment-note {
  color: #344448;
  font-size: 12px;
  font-weight: 700;
  padding: 0 18px 18px;
}

.booking-controls-grid,
.guest-details-grid,
.booking-addon-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.booking-price-preview {
  background: #edf9f6;
  border: 1px solid #74bcae;
  border-radius: 8px;
  color: var(--teal-dark);
  display: grid;
  gap: 10px;
  font-weight: 800;
  padding: 15px;
}

.selected-room-rate {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.selected-room-rate strong {
  font-size: 18px;
}

.selected-room-rate span {
  color: #30383a;
  font-size: 20px;
  font-weight: 900;
}

.selected-room-specs {
  color: var(--muted);
  font-weight: 800;
}

.booking-price-preview ul {
  color: #344448;
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 18px;
}

.booking-addon-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 8px;
  min-height: 116px;
  padding: 14px;
}

.booking-addon-grid article:last-child {
  background: #edf9f6;
  border-color: #74bcae;
}

.booking-addon-grid strong {
  color: #344448;
  font-size: 18px;
}

.booking-addon-grid span {
  color: var(--muted);
  font-weight: 700;
}

.booking-addon-grid b {
  color: var(--teal-dark);
  font-size: 18px;
}

.addon-toggle {
  align-items: center;
  color: var(--teal-dark);
  display: flex !important;
  flex-direction: row !important;
  font-weight: 900;
  gap: 8px !important;
}

.selected-stay span {
  color: var(--muted);
}

.selected-stay b {
  color: var(--teal-dark);
}

.payment-choice-group {
  border: 0;
  border-radius: 0;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 24px 28px 22px;
}

.payment-choice-group legend {
  color: var(--teal-dark);
  font-size: 16px;
  font-weight: 900;
  padding: 0 0 12px;
}

.payment-choice-group label {
  align-items: center;
  background: white;
  border-radius: 0;
  display: flex;
  flex-direction: row;
  gap: 12px;
  min-height: 56px;
  padding: 0;
}

.payment-choice-group input {
  accent-color: var(--teal);
  height: 17px;
  width: 17px;
}

.payment-choice-group span {
  color: #696969;
  font-size: 16px;
  font-weight: 700;
}

.payment-shell {
  border: 0;
  border-radius: 0;
  grid-template-columns: 240px 1fr;
  margin-top: 22px;
  overflow: hidden;
}

.payment-tabs {
  background: #eeeeee;
  display: grid;
  grid-template-rows: 94px 1fr;
}

.payment-tabs button {
  align-items: center;
  border: 0;
  cursor: pointer;
  color: #929292;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  padding: 0 26px;
  text-align: left;
}

.payment-tabs .active {
  background: white;
  color: var(--teal);
}

.checkout-submit {
  border-radius: 3px;
  font-size: 16px;
  justify-self: stretch;
  margin: 18px 24px 0 264px;
  min-height: 56px;
}

.payment-choice-group.pay-later-mode label:not(.pay-later-row) {
  display: none;
}

.payment-choice-group:not(.pay-later-mode) .pay-later-row {
  display: none;
}

.payment-choice-group .pay-later-row {
  background: #eaf8f4;
  border-radius: 8px;
  min-height: 72px;
  padding: 0 24px;
}

.payment-result {
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

@media (max-width: 980px) {
  .site-header {
    gap: 14px;
  }

  .main-nav {
    display: none;
  }

  .booking-panel form {
    grid-template-columns: 1fr;
  }

  .field {
    border-bottom: 1px solid var(--line);
    border-right: 0;
  }

  .search-button {
    margin: 14px 0 2px;
    width: 100%;
  }

  .benefit-grid,
  .offer-track,
  .guest-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .brand-grid,
  .destination-grid,
  .site-footer,
  .results-layout,
  .detail-layout,
  .detail-room-card,
  .detail-location-grid,
  .room-grid,
  .booking-experience,
  .admin-add {
    grid-template-columns: 1fr;
  }

  .admin-metrics {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-panel {
    position: static;
  }

  .detail-booking-card {
    position: static;
    top: auto;
  }

  .detail-topline {
    grid-template-columns: 1fr;
  }

  .city-links div {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-section,
  .detail-tabs {
    max-width: none;
  }

  .room-card-price {
    border-left: 0;
    border-top: 1px solid #a4ddd3;
    justify-items: start;
    text-align: left;
  }

  .room-card-price small {
    margin-top: 12px;
  }

  .detail-amenities-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .room-category-row {
    grid-template-columns: 1fr 1fr;
  }

  .booking-summary-pane {
    padding: 14px;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
    margin: -14px;
    min-height: 0;
  }

  .checkout-summary {
    order: -1;
  }

  .checkout-fields {
    max-width: none;
  }

  .booking-photo-wrap,
  .booking-photo-wrap img {
    min-height: 300px;
  }

  .room-category-row button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .site-header {
    height: auto;
    padding-bottom: 12px;
    padding-top: 12px;
  }

  .header-actions .icon-button {
    display: none;
  }

  .brand strong {
    font-size: 17px;
  }

  .brand small {
    font-size: 14px;
  }

  .hero-content {
    padding-bottom: 118px;
    padding-top: 45px;
  }

  .login-card {
    left: 18px;
    right: 18px;
    top: 230px;
  }

  .booking-panel {
    margin-top: 62px;
  }

  .benefit-grid,
  .offer-track,
  .travel-reads,
  .guest-strip {
    grid-template-columns: 1fr;
  }

  .results-head,
  .hotel-title-row,
  .rate-row {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hotel-image-wrap {
    margin: 14px;
  }

  .hotel-card img,
  .hotel-image-wrap img {
    aspect-ratio: 1.55;
    min-height: 0;
  }

  .hotel-info,
  .listing-price {
    padding: 14px;
  }

  .listing-price {
    justify-items: start;
    text-align: left;
  }

  .listing-price small {
    margin-bottom: 14px;
  }

  .rate-row button {
    width: 100%;
  }

  .card-actions,
  .card-actions button,
  .detail-book-now {
    width: 100%;
  }

  .detail-main-photo {
    height: 300px;
  }

  .form-grid-2,
  .room-category-row,
  .booking-controls-grid,
  .guest-details-grid,
  .booking-addon-grid {
    grid-template-columns: 1fr;
  }

  .booking-dialog {
    max-width: calc(100vw - 18px);
  }

  .dialog-card {
    padding: 14px;
  }

  .checkout-layout {
    padding: 6px;
  }

  .checkout-step {
    padding: 18px;
  }

  .checkout-step.traveller-done,
  .traveller-complete {
    align-items: stretch;
    display: grid;
    gap: 14px;
  }

  .traveller-complete p {
    margin-left: 28px;
  }

  .traveller-complete button {
    min-width: 0;
    width: 100%;
  }

  .payment-shell {
    grid-template-columns: 1fr;
  }

  .payment-tabs {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .payment-tabs span {
    min-height: 58px;
    padding: 0 18px;
  }

  .payment-choice-group {
    padding: 22px 14px;
  }

  .payment-choice-group label {
    min-height: 72px;
    padding: 0 18px;
  }

  .payment-choice-group span {
    font-size: 18px;
  }

  .checkout-submit {
    margin: 14px 0 0;
  }

  .phone-line {
    grid-template-columns: 1fr;
  }

  .property-detail-page {
    padding: 14px;
  }

  .property-page-active .booking-panel {
    position: static;
  }

  .detail-topline h2 {
    font-size: 23px;
  }

  .detail-rating {
    justify-content: flex-start;
  }

  .detail-tabs {
    gap: 18px;
  }

  .detail-section {
    border-radius: 12px;
    padding: 18px;
  }

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

  .room-card-photo {
    min-height: 210px;
  }

  .detail-amenities-list {
    grid-template-columns: 1fr;
  }

  .detail-location-grid {
    min-height: 0;
  }

  .detail-map {
    min-height: 280px;
  }

  .booking-property-head {
    align-items: stretch;
    flex-direction: column;
  }

  .booking-property-head strong {
    font-size: 24px;
  }

  .booking-photo-wrap,
  .booking-photo-wrap img {
    min-height: 230px;
  }

  .selected-room-rate {
    align-items: start;
    flex-direction: column;
  }

  .brand-grid p {
    min-height: 0;
  }

  .travel-reads article {
    grid-template-columns: 1fr;
  }

  .travel-reads img {
    aspect-ratio: 1.8;
  }

  .promo-band {
    align-items: stretch;
    flex-direction: column;
    margin-left: 18px;
    margin-right: 18px;
    padding: 22px;
  }

  .city-links div {
    grid-template-columns: 1fr;
  }

  .admin-metrics {
    grid-template-columns: 1fr;
  }

  .admin-panel {
    padding: 18px;
  }
}
