:root {
  --teal: #071a78;
  --teal-dark: #02083f;
  --mint: #eef2ff;
  --gold: #c89537;
  --coral: #e45f4f;
  --ink: #1d2529;
  --muted: #66747b;
  --line: #dbe4e0;
  --paper: #ffffff;
  --soft: #f5f7f4;
  --shadow: 0 18px 45px rgba(6, 14, 70, 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: 11px;
  font-weight: 900;
}

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

.download-app-btn {
  align-items: center;
  appearance: none;
  background: #071a78;
  border: 0;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font: inherit;
  font-size: 15px;
  font-weight: 950;
  gap: 8px;
  justify-content: center;
  max-height: 42px;
  max-width: 150px;
  min-height: 42px;
  padding: 0 14px 0 8px;
  white-space: nowrap;
}

.download-app-btn img {
  aspect-ratio: 1;
  border-radius: 4px;
  display: block;
  flex: 0 0 28px;
  height: 28px !important;
  max-height: 28px !important;
  max-width: 28px !important;
  object-fit: cover;
  width: 28px !important;
}

.download-app-btn:hover {
  background: #0d2496;
}

.download-app-btn:disabled {
  cursor: default;
  opacity: 0.72;
}

.mobile-app-download-btn {
  align-items: center;
  background: #071a78;
  border: 2px solid #c89537;
  border-radius: 999px;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 16px 36px rgba(7, 26, 120, 0.28);
  color: #fff;
  cursor: pointer;
  display: none;
  font-size: 15px;
  font-weight: 950;
  justify-content: center;
  min-height: 48px;
  min-width: 156px;
  padding: 0 18px;
  position: fixed;
  right: 14px;
  text-align: center;
  white-space: nowrap;
  z-index: 240;
}

.mobile-app-download-btn:disabled {
  opacity: 0.72;
}

.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;
}

.guest-account-menu-wrap {
  position: relative;
}

.guest-account-menu {
  background: white;
  border: 1px solid #edf0ef;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .14);
  display: grid;
  gap: 2px;
  min-width: 230px;
  padding: 18px 0;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 30;
}

.guest-account-menu[hidden] {
  display: none;
}

.guest-menu-title,
.guest-account-menu button {
  align-items: center;
  background: white;
  border: 0;
  color: #444;
  display: grid;
  font-size: 17px;
  font-weight: 600;
  gap: 12px;
  grid-template-columns: 28px 1fr;
  min-height: 48px;
  padding: 0 18px;
  text-align: left;
}

.guest-menu-title {
  color: #2f3537;
  font-weight: 800;
}

.guest-account-menu button {
  cursor: pointer;
}

.guest-account-menu button:hover {
  background: #f5faf8;
}

.guest-account-menu svg {
  fill: none;
  height: 24px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 24px;
}

.guest-account-menu .guest-signout {
  color: #ff4b4b;
}

.admin-open {
  align-items: center;
  background: var(--teal);
  border: 0;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  text-decoration: none;
}

.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: min(1180px, calc(100vw - 36px));
  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-title {
  font-size: clamp(30px, 3.8vw, 58px);
  line-height: 1;
  max-width: 100%;
  white-space: nowrap;
}

.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;
}

.hotel-page-window {
  animation: hotelPageSlide .28s ease both;
  display: grid;
  gap: 0;
}

@keyframes hotelPageSlide {
  from {
    opacity: 0;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: translateX(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 {
  align-items: stretch;
  background: white;
  border: 0;
  border-radius: 0;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr) 210px;
  min-height: 220px;
  overflow: hidden;
}

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

.property-pagination {
  align-items: center;
  background: white;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 18px 22px;
}

.property-pagination button {
  background: var(--teal);
  border: 0;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  font-weight: 900;
  min-height: 42px;
  min-width: 132px;
  padding: 0 20px;
  text-transform: uppercase;
}

.property-pagination button:disabled {
  background: #dbe1ef;
  color: #758098;
  cursor: not-allowed;
}

.property-pagination span {
  color: #334044;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.hotel-image-wrap {
  align-self: start;
  height: 177px;
  margin: 20px 24px;
  overflow: hidden;
  position: relative;
}

.hotel-image-wrap img {
  height: 100%;
  min-height: 0;
  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 {
  display: grid;
  gap: 9px;
  padding: 28px 0;
  grid-template-rows: auto auto auto auto 1fr;
  min-width: 0;
}

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

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

.listing-rating-row {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  gap: 10px;
  padding: 0;
  text-align: left;
}

.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-actions {
  align-items: center;
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.listing-share-link {
  border: 1px solid var(--teal);
  border-radius: 999px;
  min-height: 30px;
  padding: 0 13px;
  text-transform: uppercase;
}

.listing-share-link:hover {
  background: var(--teal);
  color: white;
}

.listing-price {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto auto;
  justify-items: end;
  min-width: 0;
  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 0;
}

.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;
}

.guest-otp-panel {
  border: 1px solid #d8e2df;
  border-radius: 8px;
  display: grid;
  justify-items: center;
  padding: 0;
}

.promotion-editor {
  background: #f8fbff;
  border: 1px solid #d8e2df;
  border-radius: 8px;
  display: grid;
  gap: 14px;
  padding: 14px;
}

.promotion-toggle {
  align-items: center;
  display: inline-flex !important;
  flex-direction: row;
  gap: 8px !important;
  justify-self: center;
}

.promotion-toggle input {
  height: 18px;
  width: 18px;
}

.guest-otp-panel strong,
.guest-account-head strong {
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}

.guest-otp-panel span,
.guest-account-head span,
.guest-booking-card span,
.guest-booking-card small {
  color: var(--muted);
  font-weight: 800;
}

.guest-otp-actions {
  align-items: center;
  display: block;
  width: min(550px, 100%);
}

.guest-otp-actions button,
.guest-otp-send,
.guest-booking-actions button {
  background: var(--navy);
  border: 0;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  font-weight: 900;
  min-height: 40px;
  padding: 0 16px;
}

.guest-otp-actions input {
  border: 1px solid #d8e2df;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 800;
  min-height: 40px;
  padding: 0 12px;
  width: 100%;
}

.guest-otp-actions input.otp-verified {
  border-color: var(--navy);
  box-shadow: 0 0 0 2px rgba(10, 28, 126, 0.12);
}

.guest-otp-panel p,
.guest-otp-message {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  margin: 0;
}

.guest-otp-panel p.verified {
  color: var(--navy);
}

.guest-account-panel {
  border-top: 1px solid #d8e2df;
  display: grid;
  gap: 12px;
  margin-top: 8px;
  padding-top: 14px;
}

.guest-profile-intro {
  background: #eef2ff;
  border: 1px solid #a9b7ef;
  border-radius: 8px;
  display: grid;
  gap: 4px;
  padding: 14px;
}

.guest-profile-intro[hidden] {
  display: none;
}

.guest-profile-intro strong {
  color: var(--navy);
  font-size: 18px;
  font-weight: 900;
}

.guest-profile-intro span {
  color: #344448;
  font-size: 13px;
  font-weight: 800;
}

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

.guest-booking-list {
  display: grid;
  gap: 10px;
  max-height: 320px;
  overflow: auto;
}

.guest-booking-card {
  align-items: start;
  background: #f5fbf9;
  border: 1px solid #d8e2df;
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 12px;
}

.guest-booking-card strong {
  color: #1f2b2f;
  display: block;
  font-size: 15px;
  font-weight: 900;
}

.guest-booking-card span,
.guest-booking-card small {
  display: block;
  font-size: 12px;
}

.guest-booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.guest-booking-actions button {
  min-height: 34px;
  padding: 0 12px;
}

.guest-empty-bookings {
  color: var(--muted);
  font-weight: 800;
}

#guestSigninForm.guest-profile-mode {
  background: #f2f2f2;
  border-radius: 0;
  gap: 0;
  max-height: min(94vh, 980px);
  max-width: min(1280px, calc(100vw - 28px));
  padding: 0;
}

#guestSigninForm.guest-profile-mode > div:first-of-type,
#guestSigninForm.guest-profile-mode .guest-profile-intro {
  display: none;
}

#guestSigninForm.guest-profile-mode > label,
#guestSigninForm.guest-profile-mode > [data-guest-send-otp],
#guestSigninForm.guest-profile-mode > .guest-otp-message,
#guestSigninForm.guest-profile-mode > .confirm-booking {
  display: none !important;
}

#guestSigninForm.guest-profile-mode .dialog-close {
  background: white;
  border: 1px solid #dde4e1;
  border-radius: 50%;
  color: var(--teal);
  height: 44px;
  right: 16px;
  top: 14px;
  width: 44px;
  z-index: 3;
}

#guestSigninForm.guest-profile-mode .guest-account-panel {
  border-top: 0;
  margin: 0;
  padding: 0;
}

.guest-account-dashboard {
  min-height: min(820px, 88vh);
  overflow: auto;
}

.guest-account-tabs {
  align-items: center;
  background: #f2f2f2;
  border-bottom: 1px solid #d7d7d7;
  display: flex;
  gap: 18px;
  min-width: 760px;
  padding: 18px 24px 0;
}

.guest-account-tabs button {
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  color: #aaa;
  cursor: pointer;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  gap: 8px;
  min-height: 48px;
  padding: 0 10px;
}

.guest-account-tabs button.active {
  border-bottom-color: var(--gold);
  color: #008678;
}

.guest-account-tabs .guest-account-logout {
  color: #111;
  margin-left: auto;
}

.guest-account-section {
  background: white;
  min-width: 760px;
  padding: 28px 24px;
}

.guest-account-section[hidden] {
  display: none;
}

.guest-profile-section {
  display: grid;
  gap: 22px;
  max-width: none;
}

.guest-profile-section label {
  color: #6f6f6f;
  font-size: 14px;
  font-weight: 700;
  max-width: 600px;
}

.guest-profile-section input,
.guest-phone-readonly {
  background: white;
  border: 1px solid #d7d7d7;
  border-radius: 2px;
  color: #111;
  font-size: 16px;
  font-weight: 500;
  min-height: 44px;
  padding: 0 12px;
  width: 100%;
}

.guest-phone-readonly {
  align-items: center;
  background: #f2f2f2;
  display: grid;
  gap: 12px;
  grid-template-columns: auto 1fr;
}

.guest-phone-readonly span {
  color: #747474;
  font-weight: 800;
  padding-right: 14px;
  position: relative;
}

.guest-phone-readonly span::after {
  background: #d2d2d2;
  content: "";
  height: 22px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

.guest-phone-readonly input {
  background: transparent;
  border: 0;
  color: #747474;
  min-height: 36px;
  padding: 0 8px;
}

.guest-save-profile {
  background: #91c3b9;
  border: 0;
  border-radius: 2px;
  color: white;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  max-width: 600px;
  min-height: 44px;
  text-transform: uppercase;
}

.guest-history-section h3 {
  border-bottom: 1px solid #d7d7d7;
  font-size: 16px;
  margin: 0;
  padding: 0 0 14px;
  text-transform: uppercase;
}

.guest-history-list {
  display: grid;
}

.guest-history-card {
  border-bottom: 1px solid #d7d7d7;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(180px, .75fr) minmax(260px, 1.2fr) minmax(230px, .9fr);
  padding: 28px 4px;
}

.history-place,
.history-stay,
.history-actions {
  display: grid;
  gap: 8px;
}

.history-place {
  grid-template-columns: auto 1fr;
}

.history-place span {
  color: #555;
  font-size: 24px;
  grid-row: span 2;
}

.history-place strong,
.history-stay strong {
  color: #444;
  font-size: 15px;
  font-weight: 900;
}

.history-place small,
.history-stay span {
  color: #979797;
  font-size: 14px;
  font-weight: 800;
}

.history-stay button {
  background: transparent;
  border: 0;
  color: #008678;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  justify-self: start;
  padding: 8px 0 0;
}

.history-actions {
  justify-items: end;
}

.history-status {
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  padding: 7px 12px;
}

.history-status.cancelled {
  background: #fde0d5;
  color: #e80000;
}

.history-status.checked-out {
  background: #dedede;
  color: #757575;
}

.history-status.confirmed {
  background: #e6fbf7;
  color: #008678;
}

.history-actions > button {
  background: white;
  border: 1px solid #008678;
  border-radius: 7px;
  color: #008678;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  min-height: 40px;
  min-width: 210px;
  text-transform: uppercase;
}

.history-doc-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.history-doc-buttons button {
  background: #f7fbfa;
  border: 1px solid #d8e2df;
  border-radius: 6px;
  color: var(--teal);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  min-height: 32px;
  padding: 0 10px;
}

.club-earn-panel {
  background: #ddfbf7;
  display: grid;
  gap: 28px;
  justify-items: center;
  padding: 34px 28px;
}

.club-earn-panel h3 {
  color: #444;
  font-size: 20px;
  margin: 0;
  text-align: center;
}

.club-earn-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}

.club-earn-grid article {
  align-items: center;
  display: grid;
  gap: 10px 16px;
  grid-template-columns: 70px 1fr;
}

.club-earn-grid span {
  align-items: center;
  background: white;
  border-radius: 50%;
  display: grid;
  font-size: 30px;
  height: 70px;
  justify-items: center;
  width: 70px;
}

.club-earn-grid strong,
.club-earn-grid p {
  color: #4a4a4a;
  margin: 0;
}

.club-earn-grid p {
  font-size: 15px;
  font-weight: 700;
}

.club-earn-panel button {
  background: #008678;
  border: 0;
  border-radius: 2px;
  color: white;
  cursor: pointer;
  font-weight: 900;
  min-height: 42px;
  min-width: 150px;
  text-transform: uppercase;
}

.club-summary-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, .7fr);
  padding-top: 26px;
}

.club-transaction-card,
.club-points-card {
  background: white;
  border-radius: 4px;
  padding: 20px;
}

.club-table-head,
.club-row {
  align-items: start;
  border-bottom: 1px solid #e0e0e0;
  display: grid;
  gap: 18px;
  grid-template-columns: 1.4fr .7fr .5fr;
  padding: 12px 0;
}

.club-row span {
  color: #9a9a9a;
  display: grid;
  gap: 6px;
  font-weight: 800;
}

.club-row b {
  color: #9a9a9a;
}

.club-row small {
  color: #aaa;
}

.club-row strong {
  color: #9a9a9a;
  justify-self: end;
}

.club-points-card {
  align-content: center;
  background: #5a408f;
  color: white;
  display: grid;
  justify-items: center;
  min-height: 120px;
  text-align: center;
}

.club-points-card span {
  color: var(--gold);
  font-size: 28px;
}

.club-points-card strong {
  font-size: 32px;
}

.club-points-card p {
  color: white;
  margin: 0;
}

@media (max-width: 820px) {
  #guestSigninForm.guest-profile-mode {
    max-height: 96vh;
    max-width: calc(100vw - 12px);
  }

  .guest-account-dashboard {
    min-height: 86vh;
  }

  .guest-account-tabs {
    gap: 8px;
    min-width: 0;
    overflow-x: auto;
    padding: 14px 12px 0;
    width: 100%;
  }

  .guest-account-tabs button {
    flex: 0 0 auto;
    font-size: 13px;
    min-height: 42px;
    padding: 0 8px;
    white-space: nowrap;
  }

  .guest-account-tabs .guest-account-logout {
    margin-left: 8px;
  }

  .guest-account-section {
    min-width: 0;
    padding: 18px 12px;
  }

  .guest-profile-section label,
  .guest-save-profile {
    max-width: none;
  }

  .guest-history-card {
    gap: 14px;
    grid-template-columns: 1fr;
    padding: 22px 0;
  }

  .history-actions {
    justify-items: stretch;
  }

  .history-actions > button {
    min-width: 0;
    width: 100%;
  }

  .history-doc-buttons {
    justify-content: stretch;
  }

  .history-doc-buttons button {
    flex: 1 1 120px;
  }

  .club-earn-grid,
  .club-summary-grid,
  .club-table-head,
  .club-row {
    grid-template-columns: 1fr;
  }

  .club-earn-panel {
    padding: 24px 14px;
  }

  .club-earn-grid article {
    grid-template-columns: 52px 1fr;
  }

  .club-earn-grid span {
    font-size: 24px;
    height: 52px;
    width: 52px;
  }

  .club-row strong {
    justify-self: start;
  }
}

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

.listing-price em {
  align-self: end;
  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: var(--teal);
  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: var(--teal);
  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;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  gap: 10px;
  padding: 0;
  text-align: left;
}

.detail-rating strong {
  background: var(--teal);
  border-radius: 8px;
  color: white;
  font-size: 18px;
  padding: 12px 14px;
}

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

.review-summary-box {
  align-items: center;
  background: #eef2ff;
  border: 1px solid #a9b7ef;
  border-radius: 8px;
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  padding: 14px;
}

.review-summary-box strong {
  background: var(--teal);
  border-radius: 8px;
  color: white;
  font-size: 20px;
  padding: 10px 12px;
}

.guest-review-list,
.guest-review-form,
.review-admin-tools {
  display: grid;
  gap: 12px;
}

.guest-review-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.guest-review-head {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.guest-review-head span {
  background: var(--teal);
  border-radius: 6px;
  color: white;
  font-weight: 900;
  padding: 6px 10px;
}

.admin-review-reply {
  background: #f5fffc;
  border-left: 4px solid var(--teal);
  margin-top: 12px;
  padding: 10px 12px;
}

.guest-review-form {
  border-top: 1px solid var(--line);
  margin-top: 18px;
  padding-top: 18px;
}

.guest-review-form input,
.guest-review-form select,
.guest-review-form textarea,
.review-admin-tools textarea {
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  padding: 10px 12px;
}

.guest-review-form textarea,
.review-admin-tools textarea {
  min-height: 96px;
  resize: vertical;
}

.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: white;
  border: 1px solid var(--teal);
  border-radius: 4px;
  color: var(--teal);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  min-width: 62px;
  padding: 7px 10px;
  position: static;
}

.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;
}

.rules-intro {
  font-size: 16px;
  margin-bottom: 18px !important;
}

.rules-policy-list {
  display: grid;
  gap: 14px;
}

.rules-policy-list article {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 16px;
}

.rules-policy-list strong {
  color: var(--teal-dark);
  display: block;
  font-size: 15px;
  margin-bottom: 7px;
}

.rules-policy-list p {
  color: #4f5c60;
  font-size: 14px;
}

.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-search-bar {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  grid-template-columns: auto 1fr;
  margin: 18px 0 16px;
  overflow: hidden;
  width: 100%;
}

.admin-search-bar span {
  border-right: 1px solid var(--line);
  color: var(--teal-dark);
  font-size: 16px;
  font-weight: 900;
  padding: 0 18px;
  white-space: nowrap;
}

.admin-search-bar input {
  background: #fff;
  border: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  min-height: 58px;
  outline: 0;
  padding: 0 18px;
  width: 100%;
}

.admin-search-bar input::placeholder {
  color: #777;
}

.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-tabs .staff-access-tab,
.export-actions .staff-access-shortcut {
  background: #fff8e8;
  border: 2px solid #c89537;
  box-shadow: 0 10px 22px rgba(7, 26, 120, 0.12);
  color: var(--brand-navy);
  font-weight: 900;
}

.export-actions .staff-access-shortcut {
  min-height: 54px;
  padding: 0 22px;
}

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

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

.admin-table .staff-save-toolbar {
  align-items: center;
  background: #eaf3ff;
  border: 2px solid #c89537;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(7, 26, 120, 0.14);
  display: grid;
  justify-items: center;
  padding: 16px;
}

.admin-table button.staff-save-main-button,
.admin-table button.credential-inline-save,
.admin-table .staff-action-strip-buttons button:last-child,
.admin-table .staff-credential-actions button:last-child,
.admin-table .staff-bottom-actions button:last-child {
  background: #071a78 !important;
  background-color: #071a78 !important;
  border: 2px solid #c89537 !important;
  border-radius: 8px !important;
  box-shadow: 0 10px 22px rgba(7, 26, 120, 0.22) !important;
  color: #ffffff !important;
  cursor: pointer !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  min-height: 58px !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

.admin-table button.staff-save-main-button {
  align-items: center;
  background: #071a78 !important;
  background-color: #071a78 !important;
  color: #fff !important;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 640px;
  text-align: center;
  width: min(100%, 640px);
}

.admin-table.staff-access-table button.staff-save-main-button {
  min-height: 64px;
}

.admin-table .staff-action-strip-buttons button:first-child,
.admin-table .staff-credential-actions button:first-child,
.admin-table .staff-bottom-actions button:first-child {
  background: #fff;
  border: 2px solid var(--brand-navy);
  color: var(--brand-navy);
}

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

.property-edit-actions {
  background: white;
  border-top: 1px solid var(--line);
  bottom: -18px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin: 8px -18px -18px;
  padding: 18px;
  position: sticky;
  z-index: 5;
}

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

.editable-photo-manager {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  padding: 14px;
}

.editable-photo-manager .builder-head {
  align-items: center;
  border: 0;
  display: flex;
  justify-content: space-between;
  padding: 0;
}

.editable-photo-manager .builder-head span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.editable-photo-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
}

.editable-photo-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
}

.editable-photo-card.main-photo-selected {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(11, 75, 69, 0.14);
}

.editable-photo-card img {
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  width: 100%;
}

.editable-photo-card button {
  background: #f0dedb;
  border: 0;
  color: #9f2f23;
  cursor: pointer;
  font-weight: 900;
  min-height: 38px;
  width: 100%;
}

.editable-photo-card .main-photo-button {
  background: var(--teal);
  color: #fff;
}

.empty-photo-note {
  color: var(--muted);
  font-weight: 700;
  margin: 0;
}

.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;
}

.property-onboarding {
  grid-template-columns: 1fr;
}

.onboarding-head {
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.onboarding-head p {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.onboarding-head h3 {
  color: var(--ink);
  font-size: 22px;
  margin: 0;
}

.onboarding-steps {
  counter-reset: step;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.onboarding-steps li {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  padding: 12px;
}

.onboarding-steps li::before {
  counter-increment: step;
  content: counter(step);
  background: #edf7f4;
  border-radius: 999px;
  color: var(--teal-dark);
  display: inline-grid;
  height: 22px;
  margin-right: 8px;
  place-items: center;
  width: 22px;
}

.onboarding-steps li.active {
  background: var(--mint);
  border-color: var(--teal);
  color: var(--teal-dark);
}

.wizard-step {
  display: none;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wizard-step.active {
  display: grid;
}

.wizard-step h4 {
  color: var(--ink);
  font-size: 18px;
  grid-column: 1 / -1;
  margin: 0;
}

.property-type-grid {
  display: grid;
  gap: 12px;
  grid-column: 1 / -1;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.property-type-grid button {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  display: grid;
  gap: 8px;
  min-height: 112px;
  padding: 16px;
  text-align: left;
}

.property-type-grid button.selected {
  background: var(--mint);
  border-color: var(--teal);
  color: var(--teal-dark);
}

.property-type-grid strong {
  font-size: 18px;
}

.property-type-grid span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.map-location-field {
  position: relative;
  display: grid;
  gap: 8px;
}

.map-location-suggestions {
  background: white;
  border: 1px solid #e4e9e7;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(16, 32, 40, 0.12);
  display: grid;
  gap: 8px;
  left: 0;
  max-height: 190px;
  overflow: auto;
  padding: 10px 12px;
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  width: 100%;
  min-width: min(520px, calc(100vw - 48px));
  z-index: 80;
}

.map-location-suggestions[hidden] {
  display: none;
}

.map-location-option {
  background: var(--teal);
  border: 0;
  border-radius: 6px;
  color: white;
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  text-align: left;
}

.map-location-option:hover {
  background: var(--teal-dark);
}

.map-location-option strong {
  color: white;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-location-option span {
  color: rgba(255, 255, 255, 0.92);
  display: -webkit-box;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.google-powered {
  color: #78858a;
  font-size: 11px;
  font-weight: 800;
  justify-self: end;
  line-height: 1;
  padding: 0 4px 2px;
  text-decoration: none;
}

.google-powered:hover {
  color: var(--teal);
}

.wizard-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.wizard-actions button {
  min-height: 42px;
  padding: 0 18px;
}

.wizard-actions [data-property-wizard-prev] {
  background: white;
  border: 1px solid var(--line);
  color: var(--teal-dark);
}

.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: 10px;
  grid-template-columns: repeat(auto-fit, minmax(190px, 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,
.room-category-row select {
  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: min(70vh, 640px);
  max-width: 100%;
  overflow-x: auto;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: var(--teal) #e8f3f1;
  scrollbar-gutter: stable both-edges;
  scrollbar-width: auto;
  -webkit-overflow-scrolling: touch;
}

.admin-table-wrap::-webkit-scrollbar {
  height: 14px;
  width: 14px;
}

.admin-table-wrap::-webkit-scrollbar-track {
  background: #e8f3f1;
}

.admin-table-wrap::-webkit-scrollbar-thumb {
  background: var(--teal);
  border: 3px solid #e8f3f1;
  border-radius: 999px;
}

.admin-table {
  border-collapse: collapse;
  min-width: 2200px;
  table-layout: fixed;
  width: max-content;
}

.admin-table.staff-access-table {
  min-width: 0;
  table-layout: auto;
  width: 100%;
}

.admin-table.staff-access-table th,
.admin-table.staff-access-table td {
  max-width: none;
  min-width: 0;
  overflow: visible;
  padding: 0;
  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;
}

.review-table-tools {
  white-space: normal;
}

.review-table-tools input,
.review-table-tools select {
  border: 1px solid var(--line);
  border-radius: 6px;
  font: inherit;
  font-size: 13px;
  margin: 4px 8px 4px 0;
  min-height: 34px;
  padding: 0 10px;
}

.review-table-tools [data-admin-review-text] {
  min-width: 260px;
}

.pms-table-tools {
  white-space: normal;
}

.pms-rate-tools {
  align-items: end;
  background: #fff;
  caption-side: top;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(330px, 1.35fr) minmax(250px, 0.9fr) minmax(170px, 0.55fr) minmax(210px, 0.7fr) minmax(180px, 0.6fr) 140px;
  min-width: 1450px;
  padding: 18px 20px;
  text-align: left;
}

.pms-rate-tools span {
  color: var(--brand-navy);
  display: block;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0 0 8px;
  white-space: nowrap;
}

.pms-rate-tools label {
  display: block;
  margin: 0;
}

.pms-rate-row {
  align-items: center;
  display: contents;
}

.pms-table-tools select,
.pms-table-tools input {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #1d2529;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  margin: 0;
  min-height: 48px;
  padding: 0 14px;
}

.pms-table-tools [data-pms-property],
.pms-table-tools [data-pms-category] {
  min-width: 0;
  width: 100%;
}

.pms-table-tools [data-pms-units],
.pms-table-tools [data-pms-pax],
.pms-table-tools [data-pms-rate],
.pms-table-tools [data-pms-inventory] {
  width: 100%;
}

.pms-table-tools button {
  align-self: end;
  background: var(--brand-navy);
  border: 0;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  min-height: 48px;
  padding: 0 24px;
  white-space: nowrap;
}

.pms-table-tools input[readonly] {
  background: #f7faf9;
  color: #58656b;
}

.pms-quick-update {
  align-items: end;
  background: #f7f9ff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-sizing: border-box;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(280px, 1.25fr) minmax(230px, 1fr) minmax(150px, 0.65fr) minmax(210px, 0.95fr) minmax(170px, 0.75fr);
  margin: 0 0 16px;
  min-width: 0;
  padding: 18px 20px;
  width: 100%;
}

.pms-quick-update[hidden] {
  display: none;
}

.pms-quick-update label {
  display: grid;
  gap: 8px;
  margin: 0;
}

.pms-quick-update span {
  color: var(--brand-navy);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.pms-quick-update select,
.pms-quick-update input {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #1d2529;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  min-height: 54px;
  min-width: 0;
  padding: 0 14px;
  width: 100%;
}

.pms-quick-update input[readonly] {
  background: #f7faf9;
  color: #58656b;
}

.pms-quick-update button {
  align-items: center;
  align-self: center;
  background: #071a78;
  border: 2px solid #c89537;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 16px;
  font-weight: 900;
  grid-column: 1 / -1;
  justify-content: center;
  justify-self: center;
  margin: 8px auto 0;
  min-height: 54px;
  padding: 0 24px;
  box-shadow: 0 10px 24px rgba(7, 26, 120, 0.22);
  white-space: nowrap;
  width: min(420px, 100%);
}

.pms-quick-update button:hover {
  background: #02083f;
}

.staff-access-panel {
  display: grid;
  gap: 20px;
  padding: 22px;
}

.staff-access-head {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.staff-access-head p {
  color: var(--brand-navy);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin: 0 0 6px;
}

.staff-access-head h3 {
  color: var(--ink);
  font-size: 28px;
  line-height: 1.15;
  margin: 0;
}

.staff-access-head button,
.access-url-row button {
  background: var(--brand-navy);
  border: 0;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  min-height: 52px;
  padding: 0 24px;
}

.staff-access-head button {
  min-width: 180px;
}

.staff-action-strip {
  align-items: center;
  background: #fff8e8;
  border: 2px solid #c89537;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(7, 26, 120, 0.12);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 18px;
}

.staff-action-strip strong {
  color: var(--brand-navy);
  display: block;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 4px;
}

.staff-action-strip span {
  color: #3d4b52;
  display: block;
  font-size: 15px;
  font-weight: 800;
}

.staff-action-strip-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.staff-action-strip-buttons button {
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  min-height: 58px;
  min-width: 190px;
  padding: 0 22px;
}

.staff-action-strip-buttons button:first-child {
  background: #fff;
  border: 2px solid var(--brand-navy);
  color: var(--brand-navy);
}

.staff-action-strip-buttons button:last-child {
  background: #071a78 !important;
  background-color: #071a78 !important;
  border: 2px solid #c89537 !important;
  color: #ffffff !important;
}

.staff-access-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.staff-access-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px;
}

.credential-inline-save {
  background: #071a78 !important;
  background-color: #071a78 !important;
  border: 2px solid #c89537 !important;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(7, 26, 120, 0.18);
  color: #ffffff !important;
  cursor: pointer;
  font-size: 17px;
  font-weight: 900;
  margin-top: 8px;
  min-height: 56px;
  padding: 0 20px;
  width: 100%;
}

.staff-access-grid h4 {
  color: var(--brand-navy);
  font-size: 20px;
  margin: 0 0 14px;
}

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

.staff-builder-head h4 {
  margin: 0;
}

.staff-builder-head p {
  color: var(--brand-navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin: 0 0 4px;
}

.staff-builder-head button,
.staff-remove-button {
  background: var(--brand-navy);
  border: 0;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  min-height: 44px;
  padding: 0 16px;
}

.staff-credential-actions,
.staff-bottom-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.staff-bottom-actions {
  border-top: 1px solid var(--line);
  margin-top: 16px;
  padding-top: 16px;
}

.staff-credential-actions button:first-child,
.staff-bottom-actions button:first-child {
  background: #eef2ff;
  border: 1px solid var(--brand-navy);
  color: var(--brand-navy);
}

.staff-credential-actions button:last-child,
.staff-bottom-actions button:last-child {
  background: var(--brand-navy);
  color: #fff;
}

.staff-account-list {
  display: grid;
  gap: 14px;
}

.staff-account-row {
  background: #f8fbff;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  gap: 14px;
  padding: 14px;
}

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

.staff-account-head h5 {
  color: var(--brand-navy);
  font-size: 18px;
  margin: 0;
}

.staff-account-head p {
  color: #5f6f77;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  margin: 4px 0 0;
  max-width: 820px;
}

.staff-active-toggle {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  font-weight: 900;
}

.staff-active-toggle input {
  accent-color: var(--brand-navy);
  height: 20px;
  width: 20px;
}

.staff-account-fields {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.staff-feature-list-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.staff-remove-button {
  background: #f0dedb;
  color: #9f2f23;
  justify-self: start;
}

.staff-access-grid label:not(.access-toggle) {
  display: grid;
  gap: 8px;
  margin: 0 0 12px;
}

.staff-access-grid label span {
  color: var(--ink);
  font-weight: 900;
}

.staff-access-grid input[type="text"],
.staff-access-grid input[type="password"],
.staff-access-grid input[type="url"] {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  min-height: 54px;
  padding: 0 14px;
  width: 100%;
}

.access-url-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.access-url-row a {
  align-items: center;
  border: 1px solid var(--brand-navy);
  border-radius: 8px;
  color: var(--brand-navy);
  display: inline-flex;
  font-weight: 900;
  min-height: 50px;
  padding: 0 18px;
  text-decoration: none;
}

.staff-feature-card {
  grid-column: 1 / -1;
}

.staff-feature-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.access-toggle {
  align-items: center;
  background: #f7f9ff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  min-height: 58px;
  padding: 12px 14px;
}

.access-toggle input {
  accent-color: var(--brand-navy);
  flex: 0 0 auto;
  height: 22px;
  width: 22px;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  max-width: 190px;
  min-width: 130px;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
}

.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: 2;
}

.pms-inventory-table {
  min-width: 1720px;
  table-layout: fixed;
}

.pms-inventory-table th {
  background: #eef3ff;
  color: var(--brand-navy);
  font-size: 16px;
}

.pms-inventory-table th:nth-child(1),
.pms-inventory-table td:nth-child(1) {
  min-width: 220px;
  width: 220px;
}

.pms-inventory-table th:nth-child(2),
.pms-inventory-table td:nth-child(2) {
  min-width: 260px;
  width: 260px;
}

.pms-inventory-table th:nth-child(3),
.pms-inventory-table td:nth-child(3) {
  min-width: 320px;
  width: 320px;
}

.pms-inventory-table th:nth-child(4),
.pms-inventory-table td:nth-child(4) {
  min-width: 240px;
  width: 240px;
}

.pms-inventory-table th:nth-child(5),
.pms-inventory-table td:nth-child(5) {
  min-width: 220px;
  width: 220px;
}

.pms-inventory-table th:nth-child(6),
.pms-inventory-table td:nth-child(6) {
  min-width: 170px;
  width: 170px;
}

.pms-inventory-table th:nth-child(7),
.pms-inventory-table td:nth-child(7),
.pms-inventory-table th:nth-child(8),
.pms-inventory-table td:nth-child(8) {
  min-width: 150px;
  width: 150px;
}

.admin-table th:first-child,
.admin-table td:first-child {
  left: 0;
  min-width: 58px;
  position: sticky;
  width: 58px;
  z-index: 3;
}

.admin-table td:first-child {
  background: white;
}

.admin-table th:first-child {
  z-index: 4;
}

.pms-inventory-table th:first-child,
.pms-inventory-table td:first-child {
  left: auto;
  min-width: 220px;
  position: static;
  width: 220px;
  z-index: auto;
}

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

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

.admin-booking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

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

.benefits,
.brand-story,
.offers,
.feature-action-strip,
.why-glitz,
.partner-registration,
.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%, #283ca8);
  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;
}

.offer-track button {
  background: white;
  border: 0;
  border-radius: 4px;
  color: var(--teal);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  margin-top: 16px;
  min-height: 34px;
  padding: 0 14px;
  text-transform: uppercase;
}

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

.feature-action-card {
  appearance: none;
  align-content: start;
  background:
    linear-gradient(135deg, rgba(7, 26, 120, 0.92), rgba(2, 8, 63, 0.74)),
    url("https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=900&q=80") center / cover;
  border: 0;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  display: grid;
  gap: 18px;
  min-height: 240px;
  overflow: hidden;
  padding: 28px;
  text-align: left;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-action-card: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-1556761175-b413da4baf72?auto=format&fit=crop&w=900&q=80") center / cover;
}

.feature-action-card:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(17, 109, 99, 0.92), rgba(5, 56, 51, 0.82)),
    url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=900&q=80") center / cover;
}

.feature-action-card:hover,
.feature-action-card:focus-visible {
  box-shadow: 0 18px 42px rgba(2, 8, 63, 0.24);
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  transform: translateY(-3px);
}

.feature-action-icon {
  align-items: center;
  background: transparent;
  border: 1px dashed rgba(255, 255, 255, 0.86);
  border-radius: 0;
  color: white;
  display: inline-flex;
  font-size: 19px;
  font-weight: 950;
  min-height: 44px;
  justify-content: center;
  justify-self: start;
  letter-spacing: 0;
  padding: 0 16px;
  text-transform: uppercase;
}

.feature-action-card strong {
  color: white;
  display: block;
  font-size: clamp(28px, 3.3vw, 44px);
  line-height: 1;
  max-width: 520px;
}

.feature-action-card small {
  color: white;
  display: block;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  max-width: 520px;
}

.feature-action-card b {
  align-items: center;
  align-self: end;
  background: white;
  border-radius: 4px;
  color: var(--teal);
  display: inline-flex;
  font-size: 15px;
  font-weight: 950;
  justify-self: start;
  min-height: 46px;
  padding: 0 24px;
  text-transform: uppercase;
}

.full-page-dialog {
  background: white;
  border: 0;
  border-radius: 0;
  height: 100dvh;
  inset: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  width: 100vw;
}

.full-page-dialog::backdrop {
  background: rgba(0, 0, 0, 0.45);
}

.full-page-dialog-inner {
  min-height: 100%;
  overflow: auto;
  padding: 68px 24px 42px;
  position: relative;
}

.full-page-dialog .dialog-close {
  align-items: center;
  background: var(--brand-blue);
  border: 0;
  border-radius: 999px;
  color: white;
  cursor: pointer;
  display: inline-flex;
  font-size: 38px;
  font-weight: 900;
  height: 58px;
  justify-content: center;
  position: fixed;
  right: 24px;
  top: 22px;
  width: 58px;
  z-index: 4;
}

.full-page-dialog .guest-marketing-grid,
.full-page-dialog .partner-registration-form,
.full-page-dialog .why-glitz-grid {
  margin: 0 auto;
  max-width: 1120px;
}

.partner-registration-thanks {
  align-content: center;
  background: #eef2ff;
  border: 1px solid #cbd6f8;
  border-radius: 8px;
  color: var(--teal-dark);
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: 760px;
  min-height: 360px;
  padding: 42px;
  text-align: center;
}

.partner-registration-thanks[hidden] {
  display: none;
}

.partner-registration-thanks strong {
  color: var(--brand-blue);
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1;
}

.partner-registration-thanks p {
  color: var(--ink);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
}

.partner-registration-thanks button {
  background: var(--brand-blue);
  border: 0;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  justify-self: center;
  min-height: 52px;
  min-width: 180px;
  padding: 0 24px;
}

.guest-marketing-grid,
.partner-registration-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 20px;
  padding: 24px;
}

.guest-marketing-grid {
  align-items: stretch;
  grid-template-columns: 0.9fr 1.1fr;
}

.marketing-card {
  background: #eef2ff;
  border: 1px solid #b9c5f6;
  border-radius: 8px;
  color: var(--teal-dark);
  display: grid;
  gap: 10px;
  padding: 22px;
}

.marketing-card strong {
  font-size: 28px;
  line-height: 1.05;
}

.marketing-card span,
.marketing-card p {
  color: #4f5d67;
  line-height: 1.5;
  margin: 0;
}

.marketing-form,
.partner-registration-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.marketing-form {
  display: grid;
  gap: 16px;
}

.marketing-form label,
.partner-registration-form label {
  color: var(--ink);
  display: grid;
  font-size: 14px;
  font-weight: 900;
  gap: 8px;
}

.marketing-form input,
.marketing-form select,
.partner-registration-form input,
.partner-registration-form select,
.partner-registration-form textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  min-height: 50px;
  padding: 0 14px;
}

.partner-registration-form textarea {
  min-height: 96px;
  padding: 12px 14px;
}

.marketing-form button,
.partner-registration-form button {
  background: var(--teal);
  border: 0;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  min-height: 52px;
  padding: 0 18px;
}

.marketing-form small {
  color: var(--muted);
  line-height: 1.45;
}

.marketing-form button,
.marketing-form small,
.partner-registration-form .wide,
.partner-registration-form button {
  grid-column: 1 / -1;
}

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

.why-glitz-grid article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  min-height: 180px;
  padding: 22px;
}

.why-glitz-grid strong {
  color: var(--teal-dark);
  font-size: 22px;
  line-height: 1.1;
}

.why-glitz-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.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;
}

.seo-discovery {
  margin: 0 auto 54px;
  max-width: 1180px;
  padding: 28px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  color: var(--ink);
}

.seo-discovery h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.1;
}

.seo-discovery p {
  max-width: 980px;
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

.seo-discovery nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.seo-discovery nav a {
  padding: 10px 14px;
  border-radius: 999px;
  background: #eef2ff;
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
}

.seo-discovery ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
}

.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 {
  align-self: start;
  display: flex;
  justify-content: flex-end;
}

.app-open-pill {
  appearance: none;
  align-items: center;
  background: #dfe8ff;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(7, 26, 120, 0.12);
  color: #5c6470;
  cursor: pointer;
  display: inline-flex;
  gap: 8px;
  font: inherit;
  font-weight: 900;
  line-height: 1;
  padding: 8px 15px 8px 8px;
  white-space: nowrap;
}

.app-open-pill img {
  aspect-ratio: 1;
  border-radius: 2px;
  height: 32px;
  object-fit: cover;
  width: 32px;
}

.app-open-pill span {
  font-size: clamp(18px, 2vw, 25px);
}

.app-open-pill:hover {
  background: #cfddff;
  color: #071a78;
  transform: translateY(-1px);
}

@media (min-width: 800px) {
  .app-panel {
    position: fixed;
    right: 18px;
    top: 10px;
    z-index: 120;
  }
}

@media (max-width: 799px) {
  .mobile-app-download-btn {
    display: inline-flex;
  }

  body.app-installed-mode .mobile-app-download-btn,
  body.admin-download-route .mobile-app-download-btn {
    display: none;
  }

  .download-app-btn {
    font-size: 0;
    gap: 0;
    min-width: 44px;
    padding: 0;
    width: 44px;
  }

  .download-app-btn img {
    height: 30px;
    width: 30px;
  }

  .app-panel {
    justify-content: center;
    grid-column: 1 / -1;
  }

  .app-open-pill {
    padding: 7px 13px 7px 7px;
  }

  .app-open-pill img {
    height: 28px;
    width: 28px;
  }
}

.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);
}

.ios-install-sheet {
  align-items: center;
  background: rgba(7, 26, 120, 0.42);
  inset: 0;
  justify-content: center;
  padding: 18px;
  position: fixed;
  z-index: 80;
}

.ios-install-sheet:not([hidden]) {
  display: flex;
}

.ios-install-card {
  background: white;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  color: var(--ink);
  max-width: 480px;
  padding: 24px;
  width: min(100%, 480px);
}

.ios-install-head {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.ios-install-head h3 {
  color: #071a78;
  font-size: 24px;
  margin: 0;
}

.ios-install-close {
  align-items: center;
  background: #eef2ff;
  border: 1px solid #c8d0ef;
  border-radius: 999px;
  color: #071a78;
  cursor: pointer;
  display: inline-flex;
  font-size: 24px;
  font-weight: 950;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.ios-install-body {
  color: #536168;
  font-size: 16px;
  line-height: 1.55;
  margin-top: 18px;
}

.ios-install-body ol {
  margin: 12px 0 0;
  padding-left: 22px;
}

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

#bookingDialog {
  height: min(96vh, 1040px);
}

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

body.internal-admin-route {
  background: #f5f7fb;
}

body.internal-admin-route .site-header,
body.internal-admin-route main > section:not(.admin-panel),
body.internal-admin-route .site-footer,
body.internal-admin-route #guestSigninDialog,
body.internal-admin-route #bookingDialog {
  display: none !important;
}

body.internal-admin-route #adminLoginDialog::backdrop {
  background: #f5f7fb;
}

body.internal-admin-route #adminLoginDialog .dialog-card {
  box-shadow: 0 16px 46px rgba(2, 8, 63, .14);
}

body.internal-admin-route.internal-admin-signed-in main > .admin-panel {
  display: block;
  margin-top: 24px;
}

body.admin-app-route.internal-admin-signed-in {
  background: #f6f8fb;
  min-height: 100vh;
  overflow: auto;
}

body.admin-app-route.internal-admin-signed-in main {
  display: block;
}

body.admin-app-route.internal-admin-signed-in main > .admin-panel {
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(2, 8, 63, 0.08);
  margin: 16px auto 32px;
  max-width: min(1180px, calc(100% - 24px));
  padding: clamp(16px, 2vw, 24px);
}

body.admin-app-route .admin-head {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  margin: -8px -8px 16px;
  padding: 8px;
  position: sticky;
  top: 0;
  z-index: 12;
}

body.admin-app-route .admin-tabs,
body.admin-app-route .export-actions {
  flex-wrap: nowrap;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

body.admin-app-route .admin-tabs button,
body.admin-app-route .export-actions button {
  flex: 0 0 auto;
}

body.admin-app-route .admin-table-wrap {
  max-height: min(72vh, 760px);
}

body.admin-app-route .admin-table {
  min-width: 1120px;
}

body.admin-app-route .admin-table.staff-access-table {
  min-width: 0;
  width: 100%;
}

body.admin-app-route .admin-add {
  scroll-margin-top: 96px;
}

body.admin-download-route {
  background: #f5f7fb;
}

body.admin-download-route .site-header,
body.admin-download-route .site-footer {
  display: none !important;
}

.admin-app-download-page {
  align-items: center;
  background: linear-gradient(135deg, #f7f9ff 0%, #ffffff 52%, #eef3ff 100%);
  display: flex;
  min-height: 100vh;
  padding: clamp(18px, 4vw, 52px);
}

.admin-app-download-card {
  background: #fff;
  border: 1px solid #d7deea;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(2, 8, 63, 0.12);
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: 860px;
  padding: clamp(24px, 4vw, 48px);
  text-align: center;
  width: 100%;
}

.admin-app-download-card img {
  border-radius: 16px;
  height: 76px;
  justify-self: center;
  object-fit: cover;
  width: 76px;
}

.admin-app-download-card p {
  color: #071a78;
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}

.admin-app-download-button,
.admin-app-login-form button {
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
  min-height: 58px;
  padding: 0 22px;
}

.admin-app-download-button {
  background: #071a78;
  border: 2px solid #c89537;
  box-shadow: 0 16px 34px rgba(7, 26, 120, 0.22);
  color: #fff;
}

.admin-app-footer-download {
  justify-self: center;
  min-width: min(100%, 340px);
}

.admin-app-download-button:hover,
.admin-app-login-form button:hover {
  background: #02083f;
  color: #fff;
}

.admin-app-login-form {
  background: #f7f9ff;
  border: 2px solid #d8e1ff;
  border-radius: 18px;
  display: grid;
  gap: 14px;
  margin-top: 8px;
  padding: clamp(18px, 3vw, 26px);
  text-align: left;
}

.admin-app-login-form > div {
  display: grid;
  gap: 6px;
  text-align: center;
}

.admin-app-login-form > div span {
  color: #071a78;
  font-size: 24px;
  font-weight: 950;
}

.admin-app-login-form > div strong {
  color: #4e5b63;
  font-size: 15px;
  line-height: 1.35;
}

.admin-app-login-form label {
  color: var(--ink);
  display: grid;
  font-size: 15px;
  font-weight: 900;
  gap: 8px;
}

.admin-app-login-form input {
  background: #fff;
  border: 1px solid #d5dedc;
  border-radius: 10px;
  color: var(--ink);
  font: inherit;
  min-height: 54px;
  padding: 0 16px;
}

.admin-app-login-form button {
  background: #071a78;
  border: 2px solid #c89537;
  box-shadow: 0 16px 34px rgba(7, 26, 120, 0.22);
  color: #fff;
  margin-top: 4px;
  width: 100%;
}

.admin-app-login-form p {
  color: #071a78;
  font-weight: 900;
  margin: 0;
  min-height: 20px;
  text-align: center;
}

.admin-app-download-card small {
  color: #334149;
  font-size: 15px;
  font-weight: 800;
}

@media (max-width: 760px) {
  .staff-access-head {
    align-items: stretch;
    flex-direction: column;
  }

  .staff-action-strip {
    align-items: stretch;
    flex-direction: column;
  }

  .staff-action-strip-buttons {
    justify-content: stretch;
  }

  .staff-action-strip-buttons button {
    width: 100%;
  }

  .credential-inline-save {
    min-height: 54px;
  }

  .staff-access-grid,
  .staff-feature-list,
  .staff-account-fields {
    grid-template-columns: 1fr;
  }

}

.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;
  scrollbar-gutter: stable;
}

#guestBookingForm.dialog-card {
  height: 100%;
  max-height: min(96vh, 1040px);
  overflow-y: auto;
}

.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 {
  height: min(94vh, 980px);
  max-width: min(1440px, calc(100vw - 18px));
  width: min(1440px, calc(100vw - 18px));
}

.property-edit-dialog .dialog-card {
  height: min(94vh, 980px);
  max-height: min(94vh, 980px);
  overflow-y: auto;
  padding: 22px 28px;
  scrollbar-gutter: stable;
  width: 100%;
}

.dialog-close {
  align-items: center;
  background: rgba(255, 255, 255, .96);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(8, 14, 48, .18);
  color: var(--teal-dark);
  cursor: pointer;
  display: inline-flex;
  font-size: 30px;
  height: 42px;
  justify-content: center;
  line-height: 1;
  position: sticky;
  right: 14px;
  top: 12px;
  width: 42px;
  z-index: 50;
  justify-self: end;
}

.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: -76px -18px -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;
  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;
}

.category-booking-controls {
  border-top: 1px solid #dce8e5;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 84px;
  margin-top: 8px;
  padding-top: 10px;
}

.category-booking-controls label {
  color: #314044;
  display: grid;
  font-size: 11px;
  font-weight: 900;
  gap: 5px;
}

.category-booking-controls label span {
  align-items: center;
  display: grid;
  grid-template-columns: 32px minmax(42px, 1fr) 32px;
}

.category-booking-controls button,
.category-booking-controls input {
  border: 1px solid #cbdad6;
  color: #071a78;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  height: 34px;
  text-align: center;
}

.category-booking-controls button {
  background: #eef8f6;
  cursor: pointer;
}

.category-booking-controls button:disabled,
.category-booking-controls input:disabled {
  cursor: not-allowed;
  opacity: .55;
}

.category-booking-controls input {
  background: white;
  border-left: 0;
  border-right: 0;
  min-width: 0;
}

.category-booking-controls > label:last-child input {
  border: 1px solid #cbdad6;
  border-radius: 4px;
  width: 100%;
}

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

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

.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 {
  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 {
  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;
  line-height: 1.1;
  min-width: 0;
  white-space: nowrap;
}

.addon-price-row {
  align-items: start;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}

.addon-price-row button {
  align-self: start;
  justify-self: start;
  white-space: nowrap;
}

.booking-addon-grid .addon-price-row button {
  min-width: 96px;
}

.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,
  .why-glitz-grid,
  .feature-action-grid,
  .guest-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .brand-grid,
  .guest-marketing-grid,
  .partner-registration-form,
  .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) {
  .guest-otp-actions,
  .guest-booking-card {
    grid-template-columns: 1fr;
  }

  .guest-booking-actions {
    justify-content: stretch;
  }

  .guest-booking-actions button {
    flex: 1 1 100%;
  }

  .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;
  }

  #hero-title {
    font-size: clamp(28px, 10vw, 42px);
    line-height: 1.05;
    white-space: normal;
  }

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

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

  .benefit-grid,
  .offer-track,
  .marketing-form,
  .why-glitz-grid,
  .feature-action-grid,
  .partner-registration-form,
  .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;
  }

  .addon-price-row {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .addon-price-row button {
    justify-self: start;
  }

  .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;
  }
}

@media (max-width: 680px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  main,
  section,
  article,
  form {
    min-width: 0;
  }

  .site-header {
    align-items: start;
    display: grid;
    grid-template-columns: 1fr;
  }

  .header-actions {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .header-actions .admin-open,
  .header-actions .signin,
  .header-actions .add-property-link {
    min-width: 0;
    padding-left: 8px;
    padding-right: 8px;
    width: 100%;
  }

  .booking-panel {
    margin: 24px auto 16px;
    width: calc(100% - 20px);
  }

  .suggestions {
    left: 0;
    max-height: 60dvh;
    overflow-y: auto;
    right: 0;
    width: 100%;
  }

  .quick-cities {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-left: 12px;
    padding-right: 12px;
  }

  .quick-cities a {
    flex: 0 0 auto;
  }

  .results-layout {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .filter-panel {
    max-height: none;
    overflow: visible;
  }

  .hotel-card {
    grid-template-columns: 1fr;
    margin-left: -2px;
    margin-right: -2px;
    overflow: hidden;
  }

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

  .hotel-info h3,
  .hotel-info p,
  .listing-price strong,
  .listing-price small {
    overflow-wrap: anywhere;
  }

  .listing-actions {
    gap: 8px;
  }

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

  .property-pagination {
    align-items: stretch;
    display: grid;
    gap: 10px;
    padding: 14px;
  }

  .property-pagination span {
    order: -1;
  }

  .listing-price button,
  .property-pagination button,
  .rate-row button,
  .card-actions,
  .card-actions button,
  .detail-book-now {
    width: 100%;
  }

  .booking-dialog,
  .property-edit-dialog {
    height: 100dvh;
    max-height: 100dvh;
    max-width: 100vw;
    width: 100vw;
  }

  .dialog-card,
  #guestBookingForm.dialog-card,
  .property-edit-dialog .dialog-card {
    border-radius: 0;
    height: 100dvh;
    max-height: 100dvh;
    min-width: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 14px;
  }

  .checkout-layout {
    display: flex;
    flex-direction: column;
    margin: -14px;
    min-height: 0;
    padding: 6px;
  }

  .checkout-summary {
    order: -1;
  }

  .checkout-step {
    padding: 18px 14px;
  }

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

  .checkout-hotel-info,
  .checkout-categories,
  .checkout-addons,
  .checkout-price-lines {
    padding-left: 14px;
    padding-right: 14px;
  }

  .checkout-addons,
  .payment-shell,
  .guest-otp-actions,
  .guest-booking-card {
    grid-template-columns: 1fr;
  }

  .payment-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .payment-choice-group label,
  .pay-later-row {
    min-height: 62px;
  }

  .admin-panel {
    padding-left: 12px;
    padding-right: 12px;
  }

  .admin-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .admin-tabs button {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .admin-metrics,
  .onboarding-steps,
  .wizard-step.active,
  .property-type-grid,
  .property-edit-actions {
    grid-template-columns: 1fr;
  }

  .admin-table-wrap {
    max-height: 72dvh;
    margin-left: -8px;
    margin-right: -8px;
    overflow-x: scroll;
    overflow-y: auto;
    width: calc(100% + 16px);
  }

  .admin-table {
    min-width: 1180px;
  }

  .pms-inventory-table {
    min-width: 1720px;
    table-layout: fixed;
  }

  .pms-quick-update {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .admin-table th,
  .admin-table td {
    font-size: 12px;
    min-width: 112px;
    padding: 9px 10px;
  }

  .admin-table th:first-child,
  .admin-table td:first-child {
    min-width: 48px;
    width: 48px;
  }

  .pms-inventory-table th:first-child,
  .pms-inventory-table td:first-child {
    left: auto;
    min-width: 220px;
    position: static;
    width: 220px;
    z-index: auto;
  }

  .property-table-tools,
  .review-table-tools {
    display: grid;
    gap: 8px;
    white-space: normal;
  }

  .pms-rate-tools {
    display: grid;
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .pms-rate-row {
    display: grid;
    gap: 8px;
  }

  .property-table-tools button,
  .review-table-tools input,
  .review-table-tools select,
  .review-table-tools [data-admin-review-text] {
    margin: 0;
    min-width: 0;
    width: 100%;
  }

  .property-edit-actions {
    background: white;
    bottom: 0;
    display: grid;
    gap: 10px;
    padding-top: 10px;
    position: sticky;
    z-index: 4;
  }

  .property-edit-actions button {
    width: 100%;
  }

  .guest-booking-actions {
    justify-content: stretch;
  }

  .guest-booking-actions button {
    flex: 1 1 100%;
  }
}

@media (max-width: 980px) {
  html,
  body {
    overflow-x: auto;
  }

  .hotel-results {
    max-width: none;
    min-width: 1180px;
    padding-left: 12px;
    padding-right: 12px;
    width: max-content;
  }

  .guest-strip {
    grid-template-columns: repeat(4, minmax(220px, 1fr));
    margin-left: 12px;
    margin-right: 12px;
    min-width: 1040px;
    width: max-content;
  }

  .results-head {
    align-items: center;
    flex-direction: row;
    min-width: 1120px;
  }

  .results-layout {
    align-items: start;
    display: grid;
    gap: 22px;
    grid-template-columns: 308px minmax(760px, 1fr);
    min-width: 1120px;
    width: 1120px;
  }

  .filter-panel {
    max-height: calc(100dvh - 24px);
    overflow: auto;
    position: sticky;
    top: 12px;
  }

  .hotel-card {
    align-items: stretch;
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr) 210px;
    margin-left: 0;
    margin-right: 0;
    min-height: 220px;
    overflow: hidden;
  }

  .hotel-image-wrap {
    height: 177px;
    margin: 20px 24px;
  }

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

  .hotel-info {
    grid-template-rows: auto auto auto auto 1fr;
    padding: 28px 0;
  }

  .listing-price {
    grid-template-rows: auto auto auto 1fr auto auto;
    justify-items: end;
    padding: 28px 18px 16px 0;
    text-align: right;
  }

  .listing-price button {
    width: auto;
  }
}

.hotel-card .listing-price button {
  align-items: center;
  display: inline-flex;
  height: 58px;
  justify-content: center;
  max-width: 136px;
  min-height: 58px;
  min-width: 136px;
  padding: 0 14px;
  width: 136px;
}

@media (max-width: 720px) {
  html,
  body {
    overflow-x: auto;
  }

  .hotel-results {
    max-width: none;
    min-width: 1120px;
    padding-left: 6px;
    padding-right: 6px;
    width: max-content;
  }

  .results-head,
  .results-layout,
  .hotel-page-window {
    min-width: 1100px;
    width: 1100px;
  }

  .results-layout {
    align-items: start;
    display: grid !important;
    gap: 0;
    grid-template-columns: 1fr;
  }

  .filter-panel {
    display: none;
  }

  .hotel-card,
  .hotel-page-window .hotel-card {
    align-items: stretch;
    display: grid !important;
    grid-template-columns: 330px minmax(0, 1fr) 210px !important;
    min-height: 236px;
    width: 100%;
  }

  .hotel-image-wrap {
    display: block !important;
    height: 190px !important;
    margin: 22px 26px !important;
    min-height: 190px !important;
    overflow: hidden;
    width: auto !important;
  }

  .hotel-card .hotel-image-wrap img,
  .hotel-image-wrap img {
    display: block !important;
    height: 100% !important;
    min-height: 190px !important;
    object-fit: cover !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100% !important;
  }

  .hotel-info {
    gap: 10px;
    padding: 30px 0 !important;
  }

  .hotel-info h3 {
    font-size: 20px;
  }

  .listing-price {
    justify-items: end !important;
    padding: 30px 22px 18px 0 !important;
    text-align: right !important;
  }

  .listing-price button,
  .hotel-card .listing-price button {
    height: 66px;
    min-height: 66px;
    min-width: 164px;
    width: 164px;
  }
}
