/* G9GO consumer catalog styles */
:root {
  --ink: #181713;
  --ink-soft: #34322d;
  --paper: #f6f3ed;
  --paper-deep: #ede8de;
  --white: #ffffff;
  --line: #ded9cf;
  --muted: #77736b;
  --accent: #ff5a47;
  --accent-dark: #e8412f;
  --acid: #dfff45;
  --warm: #ffbb53;
  --green: #167356;
  --shadow: 0 20px 60px rgba(42, 37, 29, 0.12);
  --radius: 22px;
  --shell: min(1240px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui,
    -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.announcement {
  min-height: 34px;
  color: #fff;
  background: var(--ink);
  font-size: 12px;
}

.announcement__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.announcement b {
  color: var(--acid);
  letter-spacing: 0.06em;
}

.announcement__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  color: #fff;
  background: none;
  font-size: 12px;
  cursor: pointer;
}

.announcement__link span {
  transition: transform 0.2s ease;
}

.announcement__link:hover span {
  transform: translateX(3px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 74px;
  border-bottom: 1px solid rgba(24, 23, 19, 0.08);
  background: rgba(246, 243, 237, 0.92);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.brand__mark {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  color: #fff;
  background: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.brand__mark span {
  position: relative;
  z-index: 2;
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  transform: skew(-5deg);
}

.brand__mark i {
  position: absolute;
  right: -7px;
  bottom: -8px;
  width: 27px;
  height: 27px;
  border: 5px solid var(--acid);
  border-radius: 50%;
}

.brand__text {
  display: grid;
  gap: 1px;
}

.brand__text strong {
  font-size: 19px;
  letter-spacing: 0.08em;
}

.brand__text small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.45em;
}

.desktop-nav {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: 7%;
}

.desktop-nav a,
.desktop-nav button {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #56534d;
  font-size: 14px;
  cursor: pointer;
}

.desktop-nav a::after,
.desktop-nav button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav button:hover,
.desktop-nav .is-active {
  color: var(--ink);
  font-weight: 700;
}

.desktop-nav a:hover::after,
.desktop-nav button:hover::after,
.desktop-nav .is-active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.city-pill,
.account-button {
  height: 42px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.city-pill {
  gap: 7px;
  padding: 0 13px;
  border-radius: 99px;
  font-size: 13px;
}

.city-pill svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.account-button {
  gap: 8px;
  padding: 0 13px 0 5px;
  border-radius: 99px;
  font-size: 13px;
}

.account-button__avatar {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
}

.account-button__avatar svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.hero {
  position: relative;
  min-height: 570px;
  margin-top: 22px;
}

.hero__visual {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: 28px;
  background: #777;
}

.hero__visual > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}

.hero__visual:hover > img {
  transform: scale(1.035);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 12, 9, 0.75) 0%, rgba(10, 12, 9, 0.28) 48%, rgba(10, 12, 9, 0.08) 100%),
    linear-gradient(0deg, rgba(8, 9, 8, 0.48) 0%, transparent 40%);
}

.hero__copy {
  position: absolute;
  top: 108px;
  left: clamp(40px, 6vw, 84px);
  color: #fff;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 21px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.eyebrow span {
  width: 24px;
  height: 2px;
  background: var(--acid);
}

.hero h1 {
  margin: 0;
  font-family: "Songti SC", SimSun, serif;
  font-size: clamp(54px, 6vw, 82px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.hero h1 em {
  position: relative;
  color: var(--acid);
  font-style: normal;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -5px;
  left: 2px;
  height: 3px;
  background: var(--acid);
  transform: rotate(-2deg);
}

.hero__copy > p {
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.hero__story {
  position: absolute;
  bottom: 32px;
  left: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 13px;
}

.story-play {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.story-play:hover {
  background: var(--accent);
  transform: scale(1.05);
}

.story-play svg {
  width: 22px;
  fill: currentColor;
}

.hero__story > span {
  display: grid;
  gap: 4px;
}

.hero__story small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.hero__partner {
  position: absolute;
  top: 28px;
  right: 28px;
  display: grid;
  justify-items: end;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.hero__partner span {
  font-size: 10px;
  letter-spacing: 0.22em;
}

.hero__partner strong {
  margin-top: 5px;
  font-family: "Songti SC", serif;
  font-size: 19px;
  letter-spacing: 0.12em;
}

.hero-offer {
  position: absolute;
  top: 75px;
  right: 46px;
  z-index: 2;
  width: 330px;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.hero-offer__head {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  color: #fff;
  background: var(--ink);
  font-size: 10px;
}

.hero-offer__head b {
  color: var(--acid);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.live-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 800;
}

.live-dot i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 90, 71, 0.2);
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
  50% {
    box-shadow: 0 0 0 7px rgba(255, 90, 71, 0);
  }
}

.hero-offer__body {
  padding: 24px 24px 20px;
}

.hero-offer__kicker {
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-offer h2 {
  margin: 8px 0 16px;
  font-family: "Songti SC", SimSun, serif;
  font-size: 27px;
  line-height: 1.22;
}

.hero-offer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 11px;
  margin: 0 0 17px;
  padding: 0;
  list-style: none;
  color: #56524b;
  font-size: 11px;
}

.hero-offer li span {
  color: var(--green);
  font-weight: 900;
}

.hero-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
}

.hero-price > span {
  color: var(--muted);
  font-size: 11px;
}

.hero-price strong {
  color: var(--accent);
  font-size: 36px;
  line-height: 1;
}

.hero-price sup {
  font-size: 15px;
}

.hero-price del {
  color: #aaa59d;
  font-size: 11px;
}

.hero-price small {
  color: var(--muted);
  font-size: 11px;
}

.primary-button,
.secondary-button {
  border: 0;
  cursor: pointer;
}

.primary-button {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 12px;
  color: #fff;
  background: var(--accent);
  font-weight: 800;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.primary-button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.hero-offer .primary-button {
  width: 100%;
  margin-top: 16px;
}

.hero-offer__body > p {
  margin: 10px 0 0;
  color: #918c84;
  font-size: 10px;
  text-align: center;
}

.search-wrap {
  position: relative;
  z-index: 4;
  margin-top: -36px;
}

.search-tabs {
  width: fit-content;
  height: 48px;
  display: flex;
  align-items: flex-end;
  gap: 24px;
  padding: 0 26px;
  border-radius: 15px 15px 0 0;
  background: #fff;
}

.search-tabs button {
  position: relative;
  height: 48px;
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 14px;
  cursor: pointer;
}

.search-tabs button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--accent);
  transform: scaleX(0);
}

.search-tabs .is-active {
  color: var(--ink);
  font-weight: 800;
}

.search-tabs .is-active::after {
  transform: scaleX(1);
}

.search-tabs button span {
  position: absolute;
  top: 2px;
  right: -35px;
  padding: 2px 5px;
  border-radius: 4px 4px 4px 0;
  color: #fff;
  background: var(--accent);
  font-size: 8px;
  white-space: nowrap;
}

.search-panel {
  min-height: 102px;
  display: grid;
  grid-template-columns: 1.25fr 1px 0.85fr auto 0.85fr 1px 1fr 170px;
  align-items: center;
  padding: 13px 14px 13px 26px;
  border-radius: 0 18px 18px 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.search-field {
  height: 74px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 3px;
  padding: 0 20px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease;
}

.search-field:hover {
  background: var(--paper);
}

.search-field--destination {
  padding-left: 2px;
}

.field-label {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.search-field strong {
  font-size: 19px;
}

.search-field small {
  color: #9a958d;
  font-size: 10px;
}

.field-separator {
  width: 1px;
  height: 48px;
  background: #e8e3da;
}

.date-arrow {
  position: relative;
  width: 46px;
  height: 24px;
  align-self: center;
  color: var(--muted);
  font-size: 9px;
  text-align: center;
}

.date-arrow::before {
  content: "";
  position: absolute;
  right: 0;
  top: 11px;
  left: 0;
  height: 1px;
  background: var(--line);
}

.date-arrow span {
  position: relative;
  z-index: 1;
  padding: 3px 5px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: #fff;
}

.search-button {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 13px;
  color: #fff;
  background: var(--accent);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.search-button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.search-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 25px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-links > button {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 26px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.quick-links > button:last-child {
  border-right: 0;
}

.quick-links > button:hover {
  background: rgba(255, 255, 255, 0.55);
}

.quick-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--ink);
  background: var(--warm);
  font-size: 18px;
  font-weight: 900;
}

.quick-icon--family {
  background: #bde6dc;
}

.quick-icon--calendar {
  background: #ffc9c2;
}

.quick-icon--member {
  color: #fff;
  background: var(--ink);
}

.quick-links > button > span:last-child {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.quick-links strong {
  font-size: 14px;
}

.quick-links small {
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.deals-section {
  padding: 90px 0 105px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.section-kicker {
  display: block;
  margin-bottom: 9px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.24em;
}

.section-heading h2,
.benefit-intro h2 {
  margin: 0;
  font-family: "Songti SC", SimSun, serif;
  font-size: clamp(34px, 4vw, 48px);
  letter-spacing: -0.055em;
}

.section-heading p,
.benefit-intro p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.section-heading__meta {
  display: flex;
  align-items: center;
  gap: 28px;
}

.refresh-time {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
}

.refresh-time i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #50a773;
  box-shadow: 0 0 0 4px rgba(80, 167, 115, 0.12);
}

.text-button {
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-size: 12px;
  cursor: pointer;
}

.city-tabs {
  display: flex;
  gap: 10px;
  margin: 36px 0 24px;
}

.city-tabs button {
  min-width: 72px;
  height: 38px;
  padding: 0 19px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border 0.2s ease;
}

.city-tabs button:hover,
.city-tabs .is-active {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

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

.hotel-card {
  overflow: hidden;
  border: 1px solid #e4ded4;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border 0.25s ease;
}

.hotel-card:hover {
  border-color: transparent;
  box-shadow: 0 18px 45px rgba(39, 34, 27, 0.13);
  transform: translateY(-5px);
}

.hotel-card__image {
  position: relative;
  aspect-ratio: 1.42;
  overflow: hidden;
  background: #ddd;
}

.hotel-card__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.hotel-card:hover .hotel-card__image img {
  transform: scale(1.045);
}

.hotel-card__identity {
  position: relative;
  aspect-ratio: 1.42;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.2), transparent 26%),
    linear-gradient(135deg, #173d37 0%, #0e2624 62%, #091b1a 100%);
}

.hotel-card__identity::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(30deg, transparent 48%, rgba(255, 255, 255, 0.3) 49%, transparent 50%),
    linear-gradient(150deg, transparent 48%, rgba(255, 255, 255, 0.24) 49%, transparent 50%);
  background-size: 48px 48px;
}

.hotel-card__identity[data-status-tone="preopen"] {
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.2), transparent 26%),
    linear-gradient(135deg, #334766 0%, #1c2b45 62%, #111d31 100%);
}

.hotel-card__identity[data-status-tone="upcoming"] {
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.24), transparent 26%),
    linear-gradient(135deg, #8e6849 0%, #604633 62%, #3a2b22 100%);
}

.hotel-card__identity-copy {
  position: absolute;
  top: 50%;
  left: 22px;
  z-index: 2;
  display: grid;
  transform: translateY(-42%);
}

.hotel-card__identity-copy span,
.hotel-card__identity-copy small,
.hotel-card__source {
  font-size: 9px;
  letter-spacing: 0.14em;
  opacity: 0.72;
}

.hotel-card__identity-copy strong {
  margin: 6px 0;
  font-family: "Songti SC", serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hotel-card__source {
  position: absolute;
  right: 14px;
  bottom: 13px;
  z-index: 2;
}

.hotel-card__badge {
  position: absolute;
  top: 13px;
  left: 13px;
  padding: 7px 9px;
  border-radius: 7px;
  color: #fff;
  background: rgba(24, 23, 19, 0.86);
  backdrop-filter: blur(5px);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.hotel-card__badge--hot {
  color: var(--ink);
  background: var(--acid);
}

.favorite-button {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(24, 23, 19, 0.42);
  backdrop-filter: blur(5px);
  font-size: 18px;
  cursor: pointer;
}

.favorite-button.is-active {
  color: var(--accent);
  background: #fff;
}

.hotel-card__meter {
  position: absolute;
  right: 13px;
  bottom: 13px;
  left: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 9px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.45);
}

.hotel-card__meter i {
  height: 3px;
  flex: 1;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.35);
}

.hotel-card__meter i::after {
  content: "";
  display: block;
  width: var(--sold);
  height: 100%;
  background: var(--acid);
}

.hotel-card__body {
  padding: 17px 18px 18px;
}

.hotel-card__area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 10px;
}

.hotel-card__area strong {
  color: var(--green);
  font-weight: 700;
  white-space: nowrap;
}

.hotel-card__area > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hotel-card h3 {
  margin: 8px 0 6px;
  overflow: hidden;
  font-size: 17px;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hotel-card__package {
  min-height: 20px;
  margin: 0;
  overflow: hidden;
  color: #6e6a62;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hotel-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 13px 0;
}

.hotel-card__tags span {
  padding: 4px 6px;
  border: 1px solid #edc8c3;
  border-radius: 4px;
  color: var(--accent-dark);
  background: #fff5f3;
  font-size: 9px;
}

.hotel-card__footer {
  min-height: 46px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px dashed #ded8cf;
}

.hotel-card__price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.hotel-card__price > span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
}

.hotel-card__price strong {
  color: var(--accent);
  font-size: 27px;
  line-height: 1;
}

.hotel-card__price small {
  color: var(--muted);
  font-size: 9px;
}

.hotel-card__footer > span {
  color: var(--muted);
  font-size: 9px;
}

.hotel-card__availability {
  display: grid;
  gap: 4px;
}

.hotel-card__availability span {
  color: var(--muted);
  font-size: 9px;
}

.hotel-card__availability strong {
  color: var(--ink);
  font-size: 11px;
}

.catalog-loading,
.catalog-error {
  grid-column: 1 / -1;
  min-height: 240px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
}

.catalog-loading span {
  width: 28px;
  height: 28px;
  border: 3px solid #e3ddd3;
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: catalog-spin 0.8s linear infinite;
}

.catalog-loading strong,
.catalog-error strong {
  color: var(--ink);
}

.catalog-loading small,
.catalog-error span {
  font-size: 10px;
}

@keyframes catalog-spin {
  to {
    transform: rotate(360deg);
  }
}

.empty-state {
  padding: 70px 20px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.empty-state > span {
  font-size: 40px;
}

.empty-state h3 {
  margin: 13px 0 6px;
}

.empty-state p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 12px;
}

.secondary-button {
  height: 42px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 99px;
  background: transparent;
  font-weight: 700;
}

.inspiration-section {
  padding: 90px 0;
  color: #fff;
  background: var(--ink);
}

.section-heading--light {
  align-items: end;
}

.section-heading--light h2 {
  color: #fff;
}

.section-heading--light p {
  max-width: 190px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  text-align: right;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  grid-template-rows: 255px 255px;
  gap: 16px;
  margin-top: 38px;
}

.editorial-card {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border-radius: 18px;
}

.editorial-card--large {
  grid-row: 1 / 3;
}

.editorial-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.editorial-card:hover img {
  transform: scale(1.045);
}

.editorial-card__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 13, 11, 0.8), transparent 65%);
}

.editorial-card__content {
  position: absolute;
  right: 26px;
  bottom: 25px;
  left: 26px;
}

.editorial-card__content > span {
  color: var(--acid);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.editorial-card h3 {
  margin: 9px 0 18px;
  font-family: "Songti SC", serif;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.35;
}

.editorial-card:not(.editorial-card--large) h3 {
  margin-bottom: 12px;
  font-size: 23px;
}

.editorial-card button {
  padding: 0;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 11px;
  cursor: pointer;
}

.editorial-quote {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border-radius: 18px;
  color: var(--ink);
  background: var(--acid);
}

.quote-mark {
  height: 31px;
  font-family: Georgia, serif;
  font-size: 58px;
  line-height: 1;
}

.editorial-quote blockquote {
  margin: 0;
  font-family: "Songti SC", serif;
  font-size: clamp(21px, 2.4vw, 29px);
  font-weight: 800;
  line-height: 1.45;
}

.editorial-quote > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 10px;
}

.editorial-quote button {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(24, 23, 19, 0.4);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.benefits-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8%;
  padding: 100px 0;
}

.benefit-intro p {
  max-width: 330px;
  line-height: 1.8;
}

.benefit-list {
  border-top: 1px solid var(--line);
}

.benefit-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.benefit-list article > span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}

.benefit-list h3 {
  margin: 0 0 7px;
  font-size: 17px;
}

.benefit-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.site-footer {
  padding: 60px 0 20px;
  color: #fff;
  background: #0f0e0c;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.75fr;
  gap: 6%;
}

.brand--footer .brand__text small {
  color: rgba(255, 255, 255, 0.42);
}

.footer-brand p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Songti SC", serif;
  font-size: 18px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.footer-links > div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links h4 {
  margin: 0 0 6px;
  font-size: 12px;
}

.footer-links a,
.footer-links button {
  width: fit-content;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.48);
  background: transparent;
  font-size: 10px;
  cursor: pointer;
}

.footer-links a:hover,
.footer-links button:hover {
  color: #fff;
}

.footer-service {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-service span,
.footer-service p {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.footer-service strong {
  display: block;
  margin: 10px 0 7px;
  font-size: 21px;
  letter-spacing: 0.02em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 52px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.32);
  font-size: 9px;
}

.mobile-nav {
  display: none;
}

.app-dialog,
.hotel-dialog {
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
}

.app-dialog::backdrop,
.hotel-dialog::backdrop {
  background: rgba(15, 14, 12, 0.58);
  backdrop-filter: blur(5px);
}

.app-dialog > form {
  width: min(560px, calc(100vw - 30px));
  max-height: min(720px, calc(100vh - 30px));
  overflow: auto;
  padding: 30px;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.app-dialog header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.dialog-kicker {
  color: var(--accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.app-dialog h2 {
  margin: 6px 0 0;
  font-family: "Songti SC", serif;
  font-size: 28px;
}

.dialog-close {
  width: 37px;
  height: 37px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.dialog-search {
  height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 23px 0;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--paper);
}

.dialog-search svg {
  width: 18px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 2;
}

.dialog-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 13px;
}

.city-group > span {
  display: block;
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.city-chip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.city-chip-grid button {
  display: grid;
  justify-items: start;
  gap: 3px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  cursor: pointer;
}

.city-chip-grid button:hover {
  border-color: var(--accent);
  background: #fff7f5;
}

.city-chip-grid b {
  font-size: 13px;
}

.city-chip-grid small {
  color: var(--muted);
  font-size: 9px;
}

.city-group--all {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.city-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.city-list button {
  height: 36px;
  border: 0;
  border-radius: 7px;
  background: var(--paper);
  font-size: 11px;
  cursor: pointer;
}

.city-list button small {
  margin-left: 3px;
  color: var(--muted);
  font-size: 8px;
}

.city-directory-loading {
  grid-column: 1 / -1;
  padding: 24px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.hotel-search-results {
  max-height: min(430px, 55vh);
  overflow-y: auto;
}

.hotel-search-results > header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3px 0 10px;
  color: var(--muted);
  background: #fff;
  font-size: 10px;
}

.hotel-search-results > header strong {
  color: var(--ink);
}

.hotel-search-result {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 13px 12px;
  border: 0;
  border-top: 1px solid var(--line);
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.hotel-search-result:hover,
.hotel-search-result:focus-visible {
  outline: 0;
  background: #fff7f5;
}

.hotel-search-result > span {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.hotel-search-result b,
.hotel-search-result small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hotel-search-result b {
  font-size: 11px;
}

.hotel-search-result small {
  color: var(--muted);
  font-size: 9px;
}

.hotel-search-result em {
  padding: 5px 7px;
  border-radius: 99px;
  color: #236044;
  background: #e4f2e9;
  font-style: normal;
  font-size: 9px;
  white-space: nowrap;
}

.hotel-search-result em[data-status-tone="preopen"] {
  color: #364d76;
  background: #e8edf7;
}

.hotel-search-result em[data-status-tone="upcoming"] {
  color: #76502e;
  background: #f3e9dd;
}

.hotel-search-empty {
  min-height: 180px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  color: var(--muted);
  text-align: center;
}

.hotel-search-empty strong {
  color: var(--ink);
}

.hotel-search-empty span {
  font-size: 10px;
}

.date-inputs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 12px;
  margin: 28px 0 18px;
}

.date-inputs label {
  display: grid;
  gap: 7px;
}

.date-inputs label span {
  color: var(--muted);
  font-size: 10px;
}

.date-inputs input {
  width: 100%;
  height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: var(--paper);
}

.date-inputs__arrow {
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--muted);
}

.date-note {
  margin-bottom: 22px;
  padding: 14px;
  border-radius: 10px;
  background: #f0f6ee;
}

.date-note span {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
}

.date-note p {
  margin: 5px 0 0;
  color: #607068;
  font-size: 10px;
  line-height: 1.6;
}

.date-dialog .primary-button,
.guest-dialog .primary-button {
  width: 100%;
}

.counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.counter-row > span {
  display: grid;
  gap: 4px;
}

.counter-row b {
  font-size: 14px;
}

.counter-row small {
  color: var(--muted);
  font-size: 9px;
}

.counter {
  display: grid;
  grid-template-columns: 34px 32px 34px;
  align-items: center;
  text-align: center;
}

.counter button {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  font-size: 16px;
  cursor: pointer;
}

.counter strong {
  font-size: 13px;
}

.guest-dialog .primary-button {
  margin-top: 22px;
}

.hotel-dialog {
  width: min(920px, calc(100vw - 30px));
  max-width: none;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.hotel-detail {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 540px;
}

.hotel-detail__visual {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 24px 0 0 24px;
}

.hotel-detail__visual img {
  height: 100%;
  object-fit: cover;
}

.hotel-detail__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 14, 12, 0.55), transparent 55%);
}

.hotel-detail__visual--identity {
  color: #fff;
  background:
    radial-gradient(circle at 75% 22%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(145deg, #173d37 0%, #0e2624 60%, #091b1a 100%);
}

.hotel-detail__visual--identity[data-status-tone="preopen"] {
  background:
    radial-gradient(circle at 75% 22%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(145deg, #334766 0%, #1c2b45 60%, #111d31 100%);
}

.hotel-detail__visual--identity[data-status-tone="upcoming"] {
  background:
    radial-gradient(circle at 75% 22%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(145deg, #8e6849 0%, #604633 60%, #3a2b22 100%);
}

.hotel-detail__visual--identity::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(30deg, transparent 48%, rgba(255, 255, 255, 0.3) 49%, transparent 50%),
    linear-gradient(150deg, transparent 48%, rgba(255, 255, 255, 0.25) 49%, transparent 50%);
  background-size: 72px 72px;
}

.hotel-detail__identity {
  position: absolute;
  top: 50%;
  left: 42px;
  z-index: 2;
  display: grid;
  transform: translateY(-60%);
}

.hotel-detail__identity span,
.hotel-detail__identity small {
  font-size: 10px;
  letter-spacing: 0.18em;
  opacity: 0.72;
}

.hotel-detail__identity strong {
  margin: 10px 0;
  font-family: "Songti SC", serif;
  font-size: clamp(52px, 7vw, 82px);
  line-height: 1;
  letter-spacing: 0.08em;
}

.hotel-detail__caption {
  position: absolute;
  right: 28px;
  bottom: 25px;
  left: 28px;
  z-index: 2;
  color: #fff;
}

.hotel-detail__caption span {
  font-size: 10px;
}

.hotel-detail__caption strong {
  display: block;
  margin-top: 5px;
  font-family: "Songti SC", serif;
  font-size: 25px;
}

.hotel-detail__body {
  position: relative;
  padding: 34px 32px 28px;
}

.hotel-detail__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
}

.hotel-detail__brand {
  color: var(--accent);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.hotel-detail__brand[data-status-tone="bookable"] {
  color: var(--green);
}

.hotel-detail__brand[data-status-tone="preopen"] {
  color: #50698f;
}

.hotel-detail__brand[data-status-tone="upcoming"] {
  color: #8a5c35;
}

.hotel-detail h2 {
  margin: 9px 35px 8px 0;
  font-size: 25px;
  line-height: 1.35;
}

.hotel-detail__location {
  color: var(--muted);
  font-size: 10px;
}

.hotel-detail__perks {
  display: grid;
  gap: 8px;
  margin: 24px 0;
  padding: 17px;
  border-radius: 12px;
  background: var(--paper);
}

.hotel-detail__perks span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}

.hotel-detail__perks i {
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: #d9ebdf;
  font-style: normal;
  font-size: 9px;
}

.hotel-detail__coupon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 13px;
  border: 1px dashed #efad9f;
  border-radius: 10px;
  color: var(--accent-dark);
  background: #fff5f2;
  font-size: 10px;
}

.hotel-detail__coupon button {
  padding: 0;
  border: 0;
  color: var(--accent);
  background: transparent;
  font-weight: 800;
  cursor: pointer;
}

.hotel-detail__buy {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 25px;
}

.hotel-detail__price span {
  color: var(--muted);
  font-size: 9px;
}

.hotel-detail__price strong {
  display: block;
  color: var(--accent);
  font-size: 36px;
  line-height: 1.1;
}

.hotel-detail__price small {
  color: var(--muted);
  font-size: 9px;
}

.hotel-detail__status {
  display: grid;
  gap: 4px;
}

.hotel-detail__status span,
.hotel-detail__status small {
  color: var(--muted);
  font-size: 9px;
}

.hotel-detail__status strong {
  color: var(--accent);
  font-size: 23px;
}

.hotel-detail__buy .primary-button {
  min-width: 150px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.hotel-detail__notice {
  margin: 18px 0 0;
  color: #99938b;
  font-size: 9px;
  line-height: 1.6;
}

.auth-dialog {
  width: min(940px, calc(100vw - 30px));
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 26px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.28);
}

.auth-dialog::backdrop {
  background: rgba(15, 14, 12, 0.64);
  backdrop-filter: blur(7px);
}

.auth-shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 610px;
}

.auth-dialog__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(5px);
}

.auth-story {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 36px;
  border-radius: 26px 0 0 26px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 90, 71, 0.92), rgba(24, 23, 19, 0.96)),
    url("assets/images/hotel-lounge.jpg") center / cover;
}

.auth-story::before,
.auth-story::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.auth-story::before {
  top: -105px;
  right: -80px;
  width: 240px;
  height: 240px;
  border: 50px solid rgba(223, 255, 69, 0.12);
}

.auth-story::after {
  right: -35px;
  bottom: -35px;
  width: 120px;
  height: 120px;
  background: var(--acid);
  opacity: 0.88;
}

.brand--auth {
  position: relative;
  z-index: 1;
  color: #fff;
}

.brand--auth .brand__text small {
  color: rgba(255, 255, 255, 0.64);
}

.auth-story__copy {
  position: relative;
  z-index: 1;
  margin-top: 62px;
}

.auth-story__copy .section-kicker {
  color: var(--acid);
}

.auth-story__copy h2 {
  margin: 10px 0 17px;
  font-family: "Songti SC", SimSun, serif;
  font-size: 37px;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.auth-story__copy p {
  max-width: 310px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.8;
}

.auth-bridge {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 9px;
  margin-top: 32px;
  padding: 18px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(8px);
}

.auth-bridge > div {
  display: grid;
  justify-items: center;
  gap: 3px;
}

.auth-bridge > div > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 3px;
  border-radius: 11px;
  color: #fff;
  background: var(--accent);
  font-size: 18px;
  font-weight: 900;
}

.auth-bridge > div:last-child > span {
  color: var(--ink);
  background: var(--acid);
}

.auth-bridge b {
  font-size: 11px;
}

.auth-bridge small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
}

.auth-bridge i {
  display: grid;
  grid-template-columns: 20px auto 20px;
  align-items: center;
  gap: 5px;
  color: var(--acid);
  font-style: normal;
}

.auth-bridge i span {
  height: 1px;
  background: rgba(223, 255, 69, 0.65);
}

.auth-bridge i em {
  font-style: normal;
  font-size: 8px;
  white-space: nowrap;
}

.auth-story__benefits {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 13px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
}

.auth-story__benefits span {
  color: var(--acid);
}

.auth-panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 48px 50px 34px;
}

.auth-panel__heading h2 {
  margin: 6px 0 5px;
  font-family: "Songti SC", SimSun, serif;
  font-size: 29px;
}

.auth-panel__heading p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.auth-tabs {
  display: flex;
  gap: 24px;
  margin: 25px 0 20px;
  border-bottom: 1px solid var(--line);
}

.auth-tabs button {
  position: relative;
  height: 40px;
  padding: 0 2px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
}

.auth-tabs button::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--accent);
  transform: scaleX(0);
}

.auth-tabs button.is-active {
  color: var(--ink);
  font-weight: 800;
}

.auth-tabs button.is-active::after {
  transform: scaleX(1);
}

.auth-message {
  margin: -4px 0 14px;
  padding: 10px 12px;
  border: 1px solid #f0c4bd;
  border-radius: 9px;
  color: #ae3b2d;
  background: #fff3f1;
  font-size: 10px;
  line-height: 1.6;
}

.auth-message[data-kind="success"] {
  border-color: #b8dcca;
  color: var(--green);
  background: #edf8f2;
}

.auth-message[data-kind="info"] {
  border-color: #d8d1c5;
  color: #5d5850;
  background: var(--paper);
}

.auth-form {
  display: grid;
  gap: 14px;
}

.auth-form[hidden],
.auth-account[hidden],
.auth-tabs[hidden],
.auth-message[hidden] {
  display: none !important;
}

.auth-form > label,
.auth-form__row label {
  display: grid;
  gap: 6px;
}

.auth-form label > span,
.auth-form__row label > span {
  color: #5f5a52;
  font-size: 10px;
  font-weight: 700;
}

.auth-form input,
.auth-form select {
  width: 100%;
  height: 46px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: none;
  color: var(--ink);
  background: #fff;
  font-size: 13px;
  transition:
    border 0.2s ease,
    box-shadow 0.2s ease;
}

.auth-form input:focus,
.auth-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 90, 71, 0.1);
}

.auth-form__row {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 10px;
}

.auth-form__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}

.auth-form__meta > button {
  padding: 0;
  border: 0;
  color: var(--accent-dark);
  background: transparent;
  font-size: 10px;
  cursor: pointer;
}

.auth-check {
  display: inline-flex !important;
  align-items: center;
  gap: 7px !important;
  width: fit-content;
  cursor: pointer;
}

.auth-check input {
  width: 15px;
  height: 15px;
  margin: 0;
  accent-color: var(--accent);
}

.auth-check span {
  color: var(--muted) !important;
  font-size: 9px !important;
  font-weight: 400 !important;
}

.auth-check--terms {
  margin-top: -2px;
}

.auth-submit {
  width: 100%;
  margin-top: 2px;
}

.shared-account-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 3px;
  padding: 11px;
  border-radius: 10px;
  background: var(--paper);
}

.shared-account-note > span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
  font-size: 10px;
  font-weight: 900;
}

.shared-account-note p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
}

.shared-account-note b {
  color: var(--ink);
}

.auth-form__redirect {
  margin: -1px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.65;
  text-align: center;
}

.auth-form__redirect a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-account {
  display: grid;
  align-content: start;
  gap: 20px;
}

.auth-account__identity {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px;
  border-radius: 14px;
  background: var(--paper);
}

.auth-account__avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.auth-account__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auth-account__identity > div {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.auth-account__identity small {
  color: var(--green);
  font-size: 9px;
}

.auth-account__identity strong {
  overflow: hidden;
  font-size: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-account__identity div > span {
  overflow: hidden;
  color: var(--muted);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.auth-account__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 12px;
}

.auth-account__stats > div {
  display: grid;
  justify-items: center;
  gap: 5px;
  padding: 14px 7px;
  border-right: 1px solid var(--line);
}

.auth-account__stats > div:last-child {
  border-right: 0;
}

.auth-account__stats span {
  color: var(--muted);
  font-size: 8px;
}

.auth-account__stats strong {
  font-size: 14px;
}

.auth-community-link {
  width: 100%;
}

.auth-logout {
  width: fit-content;
  margin: 0 auto -11px;
  padding: 0 0 3px;
  border: 0;
  border-bottom: 1px solid var(--muted);
  color: var(--muted);
  background: transparent;
  font-size: 10px;
  cursor: pointer;
}

.auth-account > p {
  margin: 0;
  color: #aaa49a;
  font-size: 8px;
  text-align: center;
}

.account-button__avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.account-button__avatar > span {
  font-size: 12px;
  font-weight: 900;
}

.toast {
  position: fixed;
  right: 50%;
  bottom: 35px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 230px;
  padding: 13px 17px;
  border-radius: 12px;
  color: #fff;
  background: var(--ink);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.28);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 20px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

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

.toast__icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
  font-weight: 900;
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 21px;
    margin-left: 2%;
  }

  .account-button > span:last-child {
    display: none;
  }

  .account-button {
    padding-right: 5px;
  }

  .hero-offer {
    right: 26px;
  }

  .search-panel {
    grid-template-columns: 1.15fr 1px 0.8fr auto 0.8fr 1px 0.9fr 145px;
    padding-left: 18px;
  }

  .search-field {
    padding-inline: 11px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 30px, 680px);
  }

  body {
    padding-bottom: 68px;
  }

  .announcement {
    display: none;
  }

  .site-header {
    height: 62px;
  }

  .brand__mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

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

  .desktop-nav {
    display: none;
  }

  .city-pill {
    border: 0;
    background: transparent;
  }

  .hero {
    min-height: 610px;
    margin-top: 12px;
  }

  .hero__visual {
    min-height: 500px;
    border-radius: 20px;
  }

  .hero__copy {
    top: 64px;
    left: 28px;
  }

  .hero__copy > p {
    max-width: 270px;
    font-size: 13px;
  }

  .hero__story {
    bottom: 32px;
    left: 26px;
  }

  .hero-offer {
    top: auto;
    right: 16px;
    bottom: 0;
    left: 16px;
    width: auto;
    display: grid;
    grid-template-columns: 1fr auto;
    border-radius: 16px;
  }

  .hero-offer__head {
    grid-column: 1 / -1;
  }

  .hero-offer__body {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    column-gap: 20px;
    padding: 17px 18px;
  }

  .hero-offer__kicker,
  .hero-offer h2,
  .hero-offer ul {
    grid-column: 1;
  }

  .hero-offer h2 {
    margin: 5px 0 0;
    font-size: 21px;
  }

  .hero-offer ul,
  .hero-offer__body > p {
    display: none;
  }

  .hero-price {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .hero-offer .primary-button {
    grid-column: 2;
    margin-top: 8px;
    min-height: 38px;
  }

  .search-wrap {
    margin-top: 18px;
  }

  .search-tabs {
    width: 100%;
    border-radius: 15px 15px 0 0;
  }

  .search-panel {
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 10px;
    border-radius: 0 0 16px 16px;
  }

  .search-field {
    height: 64px;
    padding: 0 11px;
  }

  .search-field--destination,
  .search-field--guest {
    grid-column: span 2;
  }

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

  .field-separator,
  .date-arrow {
    display: none;
  }

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

  .search-field--date:nth-of-type(3) {
    border-left: 1px solid var(--line);
  }

  .search-button {
    grid-column: span 2;
    height: 52px;
    margin-top: 7px;
  }

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

  .quick-links > button:nth-child(2) {
    border-right: 0;
  }

  .quick-links > button:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .deals-section {
    padding: 70px 0 75px;
  }

  .section-heading {
    align-items: flex-start;
  }

  .section-heading__meta {
    display: none;
  }

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

  .editorial-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 400px 245px;
  }

  .editorial-card--large {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .benefits-section {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    display: none;
  }

  .mobile-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    height: 64px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding: 5px 12px calc(5px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(24, 23, 19, 0.1);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
  }

  .mobile-nav a,
  .mobile-nav button {
    display: grid;
    place-items: center;
    gap: 1px;
    padding: 0;
    border: 0;
    color: #8a857d;
    background: transparent;
    font-size: 9px;
  }

  .mobile-nav span {
    font-size: 19px;
    line-height: 1;
  }

  .mobile-nav .is-active {
    color: var(--accent);
    font-weight: 700;
  }
}

@media (max-width: 560px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .account-button {
    display: none;
  }

  .hero {
    min-height: 560px;
  }

  .hero__visual {
    min-height: 415px;
  }

  .hero__visual > img {
    object-position: 57% center;
  }

  .hero__copy {
    top: 52px;
    left: 24px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero__copy > p {
    max-width: 220px;
  }

  .hero__story {
    bottom: 22px;
    left: 22px;
  }

  .hero__story > span {
    max-width: 190px;
  }

  .hero__partner {
    top: 20px;
    right: 20px;
  }

  .hero-offer {
    right: 8px;
    bottom: 0;
    left: 8px;
  }

  .hero-offer__body {
    column-gap: 12px;
    padding: 15px;
  }

  .hero-offer h2 {
    font-size: 18px;
  }

  .hero-price {
    justify-content: flex-end;
  }

  .hero-price > span,
  .hero-price del {
    display: none;
  }

  .hero-price strong {
    font-size: 29px;
  }

  .hero-offer .primary-button {
    padding: 0 14px;
    font-size: 11px;
  }

  .quick-links {
    margin-top: 18px;
  }

  .quick-links > button {
    gap: 9px;
    padding: 15px 9px;
  }

  .quick-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .section-heading h2,
  .benefit-intro h2 {
    font-size: 34px;
  }

  .city-tabs {
    margin-right: -12px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .city-tabs::-webkit-scrollbar {
    display: none;
  }

  .city-tabs button {
    flex: 0 0 auto;
  }

  .hotel-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .hotel-card__image {
    aspect-ratio: 1.55;
  }

  .inspiration-section {
    padding: 70px 0;
  }

  .section-heading--light p {
    display: none;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 380px 290px 230px;
  }

  .editorial-card--large {
    grid-column: 1;
    grid-row: 1;
  }

  .benefits-section {
    padding: 75px 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-service {
    margin-top: 25px;
    padding: 25px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .footer-bottom {
    display: grid;
  }

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

  .date-inputs {
    grid-template-columns: 1fr;
  }

  .date-inputs__arrow {
    display: none;
  }

  .hotel-dialog {
    width: calc(100vw - 18px);
    max-height: calc(100vh - 18px);
    overflow: auto;
  }

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

  .hotel-detail__visual {
    min-height: 260px;
    border-radius: 20px 20px 0 0;
  }

  .hotel-detail__body {
    padding: 27px 22px 24px;
  }

  .hotel-detail__buy .primary-button {
    min-width: 128px;
  }

  .auth-dialog {
    width: calc(100vw - 18px);
    max-height: calc(100vh - 18px);
    overflow: auto;
    border-radius: 20px;
  }

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

  .auth-story {
    min-height: 220px;
    padding: 24px;
    border-radius: 20px 20px 0 0;
  }

  .auth-story__copy {
    margin-top: 35px;
  }

  .auth-story__copy h2 {
    font-size: 29px;
  }

  .auth-story__copy p,
  .auth-bridge,
  .auth-story__benefits {
    display: none;
  }

  .auth-panel {
    padding: 30px 22px 26px;
  }

  .auth-form__row {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* Account center, booking checkout, and CPS-ready order surfaces */
.auth-account__community {
  width: fit-content;
  margin: -8px auto 0;
  color: var(--accent-dark);
  font-size: 10px;
  font-weight: 700;
}

.member-dialog,
.booking-dialog,
.order-detail-dialog,
.editor-dialog {
  max-width: none;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 35px 110px rgba(0, 0, 0, 0.3);
}

.member-dialog::backdrop,
.booking-dialog::backdrop,
.order-detail-dialog::backdrop,
.editor-dialog::backdrop {
  background: rgba(15, 14, 12, 0.68);
  backdrop-filter: blur(8px);
}

.member-dialog {
  width: min(1180px, calc(100vw - 30px));
  border-radius: 26px;
}

.member-shell {
  height: min(820px, calc(100vh - 34px));
  min-height: 660px;
  overflow: hidden;
  border-radius: 26px;
  background: #fff;
}

.member-topbar {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.member-topbar > div {
  display: flex;
  align-items: center;
  gap: 16px;
}

.member-topbar__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border-radius: 99px;
  color: var(--green);
  background: #edf8f2;
  font-size: 9px;
  font-weight: 800;
}

.member-topbar__status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #27a273;
  box-shadow: 0 0 0 4px rgba(39, 162, 115, 0.12);
}

.member-layout {
  height: calc(100% - 74px);
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
}

.member-sidebar {
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 24px 18px 17px;
  color: #fff;
  background: var(--ink);
}

.member-identity {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 7px 23px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.member-identity__avatar {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
  font-size: 16px;
  font-weight: 900;
}

.member-identity__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-identity > div {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.member-identity small {
  color: var(--acid);
  font-size: 8px;
  letter-spacing: 0.05em;
}

.member-identity strong,
.member-identity span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.member-identity strong {
  font-size: 14px;
}

.member-identity div > span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 8px;
}

.member-nav {
  display: grid;
  gap: 4px;
  margin-top: 18px;
}

.member-nav button,
.member-nav a {
  min-width: 0;
  min-height: 48px;
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  border: 0;
  border-radius: 11px;
  color: rgba(255, 255, 255, 0.64);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.member-nav button:hover,
.member-nav a:hover,
.member-nav button.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.member-nav button.is-active {
  box-shadow: inset 3px 0 var(--acid);
}

.member-nav button > span,
.member-nav a > span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 900;
}

.member-nav button.is-active > span {
  background: var(--acid);
}

.member-nav b {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.member-nav small {
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
}

.member-sidebar__foot {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding: 15px 7px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.member-sidebar__foot span {
  color: rgba(255, 255, 255, 0.36);
  font-size: 8px;
}

.member-sidebar__foot button {
  width: fit-content;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  font-size: 9px;
  cursor: pointer;
}

.member-content {
  min-width: 0;
  overflow-y: auto;
  padding: 30px 34px 45px;
  background: #f8f6f1;
}

.member-content__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 17px;
}

.member-content__heading h2 {
  margin: 5px 0 0;
  font-family: "Songti SC", SimSun, serif;
  font-size: 29px;
  letter-spacing: -0.04em;
}

.member-content__mobile-close {
  display: none;
  padding: 0;
  border: 0;
  color: var(--accent-dark);
  background: transparent;
  font-size: 11px;
}

.cps-demo-banner {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 18px;
  padding: 11px 13px;
  border: 1px solid #eadca3;
  border-radius: 11px;
  color: #635416;
  background: #fff9dc;
}

.cps-demo-banner[hidden] {
  display: none;
}

.cps-demo-banner > span {
  flex: 0 0 auto;
  padding: 4px 7px;
  border-radius: 6px;
  color: #fff;
  background: #8a741f;
  font-size: 8px;
  font-weight: 900;
}

.cps-demo-banner p {
  min-width: 0;
  flex: 1;
  margin: 0;
  font-size: 9px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.member-welcome {
  position: relative;
  min-height: 155px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  overflow: hidden;
  padding: 28px;
  border-radius: 20px;
  color: #fff;
  background:
    linear-gradient(105deg, rgba(24, 23, 19, 0.97), rgba(24, 23, 19, 0.74)),
    url("assets/images/hotel-lounge.jpg") center 55% / cover;
}

.member-welcome::after {
  content: "";
  position: absolute;
  top: -60px;
  right: -35px;
  width: 150px;
  height: 150px;
  border: 26px solid rgba(223, 255, 69, 0.16);
  border-radius: 50%;
}

.member-welcome > div,
.member-welcome > button {
  position: relative;
  z-index: 1;
}

.member-welcome span {
  color: var(--acid);
  font-size: 9px;
  font-weight: 800;
}

.member-welcome h3 {
  margin: 7px 0 6px;
  font-family: "Songti SC", SimSun, serif;
  font-size: 24px;
}

.member-welcome p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 9px;
}

.member-welcome .primary-button {
  min-width: 138px;
  color: var(--ink);
  background: var(--acid);
}

.member-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 11px;
  margin: 16px 0 25px;
}

.member-stat-grid button {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.member-stat-grid button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(42, 37, 29, 0.08);
}

.member-stat-grid span,
.member-stat-grid small {
  color: var(--muted);
  font-size: 8px;
}

.member-stat-grid strong {
  margin: 2px 0;
  font-size: 21px;
}

.member-section {
  margin-top: 22px;
}

.member-section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 12px;
}

.member-section__heading--standalone {
  align-items: center;
  margin-bottom: 20px;
}

.member-section__heading span,
.member-section__heading--standalone span {
  color: var(--accent-dark);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.member-section__heading h3 {
  margin: 4px 0 0;
  font-size: 17px;
}

.member-section__heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 9px;
}

.member-section__heading button {
  padding: 0;
  border: 0;
  color: var(--accent-dark);
  background: transparent;
  font-size: 9px;
  font-weight: 800;
  cursor: pointer;
}

.member-section__heading button.is-primary {
  padding: 10px 13px;
  border-radius: 9px;
  color: #fff;
  background: var(--ink);
}

.member-service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
}

.member-service-strip > div {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 2px 10px;
  padding: 16px;
  border-right: 1px solid var(--line);
}

.member-service-strip > div:last-child {
  border-right: 0;
}

.member-service-strip span {
  grid-row: span 2;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--green);
  background: #edf8f2;
  font-size: 9px;
  font-weight: 900;
}

.member-service-strip b {
  font-size: 9px;
}

.member-service-strip small {
  color: var(--muted);
  font-size: 8px;
}

.order-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 16px;
}

.order-toolbar > span {
  color: var(--muted);
  font-size: 9px;
}

.order-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.order-tabs button {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--muted);
  background: #fff;
  font-size: 9px;
  cursor: pointer;
}

.order-tabs button.is-active {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.order-list {
  display: grid;
  gap: 12px;
}

.order-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.order-card__top {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 14px;
  border-bottom: 1px solid #ebe7df;
  color: var(--muted);
  background: #fbfaf7;
  font-size: 8px;
}

.order-status {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 99px;
  font-size: 8px;
  font-weight: 900;
}

.order-status--success {
  color: var(--green);
  background: #e9f7f0;
}

.order-status--warning {
  color: #a75417;
  background: #fff1df;
}

.order-status--neutral {
  color: #4c5360;
  background: #edf0f4;
}

.order-status--muted {
  color: #817c74;
  background: #efede9;
}

.order-card__body {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  align-items: center;
  gap: 15px;
  padding: 14px;
}

.order-card__body img {
  width: 112px;
  height: 76px;
  border-radius: 10px;
  object-fit: cover;
}

.order-card__identity {
  width: 112px;
  height: 76px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 3px;
  border-radius: 10px;
  color: #fff;
  background: linear-gradient(135deg, #173d37, #091b1a);
}

.order-card__identity span {
  font-size: 6px;
  letter-spacing: 0.14em;
  opacity: 0.72;
}

.order-card__identity strong {
  font-family: "Songti SC", serif;
  font-size: 18px;
}

.order-card__hotel {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.order-card__hotel small,
.order-card__hotel span,
.order-card__price span {
  color: var(--muted);
  font-size: 8px;
}

.order-card__hotel strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.order-card__price {
  display: grid;
  justify-items: end;
  gap: 3px;
}

.order-card__price strong {
  font-size: 15px;
}

.order-card__actions {
  display: flex;
  justify-content: flex-end;
  gap: 7px;
  padding: 0 14px 13px;
}

.order-card__actions button,
.order-detail footer button,
.member-hotel-card footer button {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 8px;
  cursor: pointer;
}

.order-card__actions button.is-primary,
.order-detail footer button.is-primary,
.member-hotel-card footer button.is-primary {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.member-empty {
  min-height: 260px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 7px;
  padding: 35px;
  border: 1px dashed #d7d1c6;
  border-radius: 15px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.member-empty--small {
  min-height: 190px;
}

.member-empty > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 3px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--acid);
  font-size: 14px;
  font-weight: 900;
}

.member-empty h4,
.member-empty p {
  margin: 0;
}

.member-empty h4 {
  color: var(--ink);
  font-size: 13px;
}

.member-empty p {
  max-width: 330px;
  font-size: 9px;
  line-height: 1.6;
}

.member-empty button {
  margin-top: 6px;
  padding: 8px 12px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  font-size: 9px;
  cursor: pointer;
}

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

.member-hotel-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
}

.member-hotel-card__identity {
  height: 155px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  color: #fff;
  background: linear-gradient(135deg, #173d37, #091b1a);
}

.member-hotel-card__identity[data-status-tone="preopen"] {
  background: linear-gradient(135deg, #334766, #111d31);
}

.member-hotel-card__identity[data-status-tone="upcoming"] {
  background: linear-gradient(135deg, #8e6849, #3a2b22);
}

.member-hotel-card__identity > span,
.member-hotel-card__identity > small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  letter-spacing: 0.16em;
}

.member-hotel-card__identity > strong {
  color: #fff;
  font-family: "Songti SC", serif;
  font-size: 34px;
  letter-spacing: 0.08em;
}

.member-hotel-card > div:not(.member-hotel-card__identity) {
  display: grid;
  gap: 6px;
  padding: 14px 15px 11px;
}

.member-hotel-card small,
.member-hotel-card p,
.member-hotel-card div span {
  color: var(--muted);
  font-size: 8px;
}

.member-hotel-card h3,
.member-hotel-card p {
  margin: 0;
}

.member-hotel-card h3 {
  font-size: 13px;
}

.member-hotel-card p {
  min-height: 25px;
  line-height: 1.55;
}

.member-hotel-card div > div {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.member-hotel-card div strong {
  color: var(--accent-dark);
  font-size: 17px;
}

.member-hotel-card footer {
  display: flex;
  justify-content: flex-end;
  gap: 7px;
  padding: 10px 15px 14px;
  border-top: 1px solid #eeeae2;
}

.coupon-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 19px;
  padding: 23px;
  border-radius: 16px;
  color: #fff;
  background: var(--ink);
}

.coupon-intro span {
  color: var(--acid);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.coupon-intro h3,
.coupon-intro p {
  margin: 5px 0 0;
}

.coupon-intro h3 {
  font-family: "Songti SC", SimSun, serif;
  font-size: 20px;
}

.coupon-intro p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
}

.coupon-intro button {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 0;
  border-radius: 9px;
  color: var(--ink);
  background: var(--acid);
  font-size: 9px;
  font-weight: 900;
  cursor: pointer;
}

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

.coupon-card {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  overflow: hidden;
  border: 1px solid #e7d9cd;
  border-radius: 14px;
  background: #fff9f3;
}

.coupon-card > div:first-child {
  display: grid;
  grid-template-columns: auto auto;
  align-content: center;
  justify-content: center;
  align-items: baseline;
  padding: 20px 15px;
  color: var(--accent-dark);
  background: #fff0e9;
}

.coupon-card > div:first-child span {
  grid-column: 1 / -1;
  margin-top: 2px;
  color: #8b5e51;
  font-size: 8px;
}

.coupon-card > div:first-child small {
  font-size: 11px;
}

.coupon-card > div:first-child strong {
  font-size: 28px;
}

.coupon-card > div:nth-child(2) {
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 15px;
}

.coupon-card b {
  font-size: 11px;
}

.coupon-card p,
.coupon-card div small {
  margin: 0;
  color: var(--muted);
  font-size: 8px;
}

.coupon-card > span {
  position: absolute;
  top: 9px;
  right: 9px;
  padding: 3px 6px;
  border-radius: 99px;
  color: var(--accent-dark);
  background: #fff;
  font-size: 7px;
}

.coupon-card--used,
.coupon-card--expired {
  filter: grayscale(1);
  opacity: 0.58;
}

.profile-list {
  display: grid;
  gap: 9px;
}

.profile-row {
  display: grid;
  grid-template-columns: 40px minmax(150px, 1fr) minmax(120px, 0.8fr) auto auto;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.profile-row > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--ink);
  background: var(--acid);
  font-size: 11px;
  font-weight: 900;
}

.profile-row > div {
  display: grid;
  gap: 3px;
}

.profile-row strong {
  font-size: 11px;
}

.profile-row small,
.profile-row p {
  margin: 0;
  color: var(--muted);
  font-size: 8px;
}

.profile-row > button {
  padding: 5px;
  border: 0;
  color: var(--accent-dark);
  background: transparent;
  font-size: 8px;
  cursor: pointer;
}

.privacy-card {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  padding: 15px;
  border-radius: 12px;
  color: #285a48;
  background: #edf8f2;
}

.privacy-card > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 9px;
  color: #fff;
  background: var(--green);
  font-size: 8px;
  font-weight: 900;
}

.privacy-card b {
  font-size: 10px;
}

.privacy-card p {
  margin: 3px 0 0;
  font-size: 8px;
  line-height: 1.6;
}

.support-hero {
  min-height: 150px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 25px;
  border-radius: 17px;
  color: #fff;
  background:
    linear-gradient(110deg, rgba(22, 115, 86, 0.96), rgba(24, 23, 19, 0.84)),
    url("assets/images/hotel-room.jpg") center / cover;
}

.support-hero span {
  color: var(--acid);
  font-size: 9px;
  font-weight: 900;
}

.support-hero h3 {
  margin: 6px 0;
  font-family: "Songti SC", SimSun, serif;
  font-size: 22px;
}

.support-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
}

.support-hero button {
  padding: 10px 13px;
  border: 0;
  border-radius: 9px;
  color: var(--ink);
  background: var(--acid);
  font-size: 9px;
  font-weight: 900;
  cursor: pointer;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 15px 0 24px;
}

.support-grid button,
.support-grid a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 2px 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  text-align: left;
  cursor: pointer;
}

.support-grid span {
  grid-row: span 2;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--ink);
  background: var(--acid);
  font-size: 9px;
  font-weight: 900;
}

.support-grid b {
  font-size: 10px;
}

.support-grid small {
  color: var(--muted);
  font-size: 8px;
}

.faq-list > div {
  margin-bottom: 10px;
}

.faq-list > div span {
  color: var(--accent-dark);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.faq-list > div h3 {
  margin: 3px 0 0;
  font-size: 16px;
}

.faq-list details {
  border-top: 1px solid var(--line);
  background: transparent;
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 13px 0;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.faq-list details p {
  max-width: 720px;
  margin: -3px 0 14px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.75;
}

.booking-dialog {
  width: min(980px, calc(100vw - 30px));
  max-height: calc(100vh - 30px);
  overflow: auto;
  border-radius: 24px;
}

.booking-dialog > form {
  min-height: 630px;
}

.booking-dialog header,
.editor-dialog header,
.order-detail header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 28px 19px;
  border-bottom: 1px solid var(--line);
}

.booking-dialog header h2,
.editor-dialog header h2,
.order-detail header h2 {
  margin: 5px 0 0;
  font-family: "Songti SC", SimSun, serif;
  font-size: 24px;
}

.booking-dialog header p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 9px;
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  min-height: 445px;
}

.booking-summary {
  display: flex;
  flex-direction: column;
  padding: 25px;
  border-right: 1px solid var(--line);
  background: #f8f6f1;
}

.booking-summary__hotel-identity {
  height: 170px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, #173d37, #091b1a);
}

.booking-summary__hotel-identity[data-status-tone="preopen"] {
  background: linear-gradient(135deg, #334766, #111d31);
}

.booking-summary__hotel-identity[data-status-tone="upcoming"] {
  background: linear-gradient(135deg, #8e6849, #3a2b22);
}

.booking-summary__hotel-identity > span,
.booking-summary__hotel-identity > small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  letter-spacing: 0.16em;
}

.booking-summary__hotel-identity > strong {
  font-family: "Songti SC", serif;
  font-size: 36px;
  letter-spacing: 0.08em;
}

.booking-summary > div:not(.booking-summary__hotel-identity) {
  margin: 15px 0 17px;
}

.booking-summary small {
  color: var(--accent-dark);
  font-size: 8px;
  font-weight: 800;
}

.booking-summary h3,
.booking-summary p {
  margin: 5px 0 0;
}

.booking-summary h3 {
  font-size: 16px;
}

.booking-summary p {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
}

.booking-summary dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0;
}

.booking-summary dl > div {
  display: grid;
  gap: 3px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}

.booking-summary dt {
  color: var(--muted);
  font-size: 7px;
}

.booking-summary dd {
  margin: 0;
  font-size: 9px;
  font-weight: 800;
}

.booking-summary__channel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto !important;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.booking-summary__channel span,
.booking-summary__channel b {
  font-size: 8px;
}

.booking-fields {
  padding: 25px 28px;
}

.booking-fields__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.booking-fields__heading span {
  font-size: 11px;
  font-weight: 900;
}

.booking-fields__heading small {
  color: var(--muted);
  font-size: 8px;
}

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

.booking-fields label,
.editor-dialog form > label,
.editor-form-row label {
  display: grid;
  gap: 6px;
}

.booking-fields label > span,
.editor-dialog label > span {
  color: #5f5a52;
  font-size: 9px;
  font-weight: 800;
}

.booking-fields input,
.booking-fields select,
.booking-fields textarea,
.editor-dialog input,
.editor-dialog select {
  width: 100%;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: none;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 11px;
}

.booking-fields input,
.booking-fields select,
.editor-dialog input,
.editor-dialog select {
  height: 43px;
}

.booking-fields input:focus,
.booking-fields select:focus,
.booking-fields textarea:focus,
.editor-dialog input:focus,
.editor-dialog select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 90, 71, 0.1);
}

.booking-request {
  margin-top: 13px;
}

.booking-fields textarea {
  min-height: 70px;
  resize: vertical;
  padding-block: 10px;
}

.booking-invoice-check {
  margin-top: 12px;
}

.booking-policy {
  display: flex;
  gap: 9px;
  margin-top: 15px;
  padding: 11px;
  border-radius: 9px;
  color: #2e6652;
  background: #edf8f2;
}

.booking-policy > span {
  font-size: 10px;
  font-weight: 900;
}

.booking-policy p {
  margin: 0;
  font-size: 8px;
  line-height: 1.55;
}

.booking-footer {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 14px 28px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.booking-footer > div {
  display: grid;
  justify-items: end;
  gap: 1px;
}

.booking-footer span,
.booking-footer small {
  color: var(--muted);
  font-size: 8px;
}

.booking-footer strong {
  color: var(--accent-dark);
  font-size: 20px;
}

.booking-footer .primary-button {
  min-width: 150px;
}

.booking-footer .primary-button:disabled {
  cursor: wait;
  opacity: 0.48;
}

.order-detail-dialog {
  width: min(700px, calc(100vw - 30px));
  max-height: calc(100vh - 30px);
  overflow: auto;
  border-radius: 22px;
}

.order-detail__status {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 20px 28px;
  background: #f8f6f1;
}

.order-detail__status > div {
  display: grid;
  gap: 3px;
}

.order-detail__status > div strong {
  font-size: 12px;
}

.order-detail__status > div span {
  color: var(--muted);
  font-size: 8px;
}

.order-detail__status > b {
  color: var(--accent-dark);
  font-size: 17px;
}

.order-detail__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin: 0;
  padding: 12px 28px;
}

.order-detail__grid > div {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid #eeeae2;
}

.order-detail__grid dt {
  color: var(--muted);
  font-size: 8px;
}

.order-detail__grid dd {
  margin: 0;
  font-size: 9px;
  font-weight: 700;
}

.order-detail > section {
  margin: 0 28px;
  padding: 14px 0;
  border-bottom: 1px solid #eeeae2;
}

.order-detail > section h3 {
  margin: 0 0 7px;
  font-size: 10px;
}

.order-detail > section p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.65;
}

.order-amount-line {
  display: flex;
  justify-content: space-between;
  margin-top: 7px;
  color: var(--muted);
  font-size: 9px;
}

.order-amount-line--total {
  color: var(--ink);
}

.order-detail footer {
  display: flex;
  justify-content: flex-end;
  gap: 7px;
  padding: 17px 28px 23px;
}

.editor-dialog {
  width: min(520px, calc(100vw - 30px));
  max-height: calc(100vh - 30px);
  overflow: auto;
  border-radius: 20px;
}

.editor-dialog form {
  display: grid;
  gap: 14px;
  padding: 0 24px 25px;
}

.editor-dialog label[hidden] {
  display: none !important;
}

.editor-dialog header {
  margin: 0 -24px 5px;
}

.editor-dialog .primary-button {
  width: 100%;
  margin-top: 3px;
}

.editor-privacy-note {
  margin: -2px 0 0;
  padding: 10px;
  border-radius: 8px;
  color: #456a5c;
  background: #edf8f2;
  font-size: 8px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .member-shell {
    min-height: 0;
  }

  .member-layout {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto minmax(0, 1fr);
  }

  .member-sidebar {
    min-width: 0;
    padding: 12px 16px 10px;
  }

  .member-identity {
    padding: 0 4px 10px;
    border-bottom: 0;
  }

  .member-identity__avatar {
    width: 34px;
    height: 34px;
  }

  .member-nav {
    display: flex;
    overflow-x: auto;
    gap: 5px;
    margin-top: 0;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .member-nav::-webkit-scrollbar {
    display: none;
  }

  .member-nav button,
  .member-nav a {
    min-width: 112px;
    min-height: 38px;
    grid-template-columns: 24px auto;
    gap: 7px;
    padding: 5px 8px;
  }

  .member-nav button > span,
  .member-nav a > span {
    width: 24px;
    height: 24px;
    border-radius: 7px;
  }

  .member-nav small {
    display: none;
  }

  .member-sidebar__foot {
    display: none;
  }

  .member-content {
    padding: 24px;
  }

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

  .booking-layout {
    grid-template-columns: 0.85fr 1.15fr;
  }
}

@media (max-width: 620px) {
  .member-dialog,
  .booking-dialog,
  .order-detail-dialog,
  .editor-dialog {
    width: 100vw;
    max-height: none;
    margin: 0;
    border-radius: 0;
  }

  .member-shell {
    height: 100dvh;
    border-radius: 0;
  }

  .member-topbar {
    height: 62px;
    padding: 0 16px;
  }

  .member-topbar__status,
  .member-topbar .dialog-close {
    display: none;
  }

  .member-layout {
    height: calc(100% - 62px);
  }

  .member-sidebar {
    padding: 10px 12px 8px;
  }

  .member-identity {
    display: none;
  }

  .member-nav button,
  .member-nav a {
    min-width: 91px;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 3px;
    text-align: center;
  }

  .member-nav button > span,
  .member-nav a > span {
    display: none;
  }

  .member-nav b {
    font-size: 9px;
  }

  .member-content {
    padding: 17px 14px 90px;
  }

  .member-content__heading {
    align-items: center;
  }

  .member-content__heading h2 {
    font-size: 24px;
  }

  .member-content__mobile-close {
    display: block;
  }

  .cps-demo-banner {
    align-items: flex-start;
  }

  .member-welcome {
    min-height: 175px;
    align-items: start;
    flex-direction: column;
    padding: 22px;
  }

  .member-welcome h3 {
    font-size: 21px;
  }

  .member-welcome .primary-button {
    min-width: 120px;
    min-height: 38px;
  }

  .member-stat-grid {
    gap: 8px;
  }

  .member-stat-grid button {
    padding: 13px;
  }

  .member-service-strip {
    grid-template-columns: 1fr;
  }

  .member-service-strip > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .member-service-strip > div:last-child {
    border-bottom: 0;
  }

  .order-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .order-tabs {
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
  }

  .order-tabs button {
    flex: 0 0 auto;
  }

  .order-card__body {
    grid-template-columns: 90px minmax(0, 1fr);
    gap: 11px;
  }

  .order-card__body img {
    width: 90px;
    height: 70px;
  }

  .order-card__price {
    grid-column: 2;
    justify-items: start;
  }

  .order-card__actions {
    overflow-x: auto;
  }

  .member-hotel-grid,
  .coupon-grid {
    grid-template-columns: 1fr;
  }

  .member-hotel-card footer {
    justify-content: stretch;
  }

  .member-hotel-card footer button {
    min-width: 0;
    flex: 1;
  }

  .coupon-intro,
  .support-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  .coupon-card {
    grid-template-columns: 105px 1fr;
  }

  .profile-row {
    grid-template-columns: 40px 1fr auto auto;
  }

  .profile-row > p {
    grid-column: 2 / -1;
    grid-row: 2;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .booking-dialog {
    height: 100dvh;
  }

  .booking-dialog > form {
    min-height: 100%;
  }

  .booking-dialog header,
  .editor-dialog header,
  .order-detail header {
    padding: 19px 18px 15px;
  }

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

  .booking-summary {
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .booking-summary__hotel-identity {
    height: 155px;
  }

  .booking-summary__channel {
    margin-top: 15px !important;
  }

  .booking-fields {
    padding: 20px 18px;
  }

  .booking-form-grid,
  .editor-form-row {
    grid-template-columns: 1fr;
  }

  .booking-footer {
    position: sticky;
    bottom: 0;
    z-index: 2;
    justify-content: space-between;
    gap: 13px;
    padding: 12px 18px;
    box-shadow: 0 -8px 22px rgba(24, 23, 19, 0.08);
  }

  .booking-footer > div {
    justify-items: start;
  }

  .booking-footer .primary-button {
    min-width: 130px;
  }

  .order-detail-dialog,
  .editor-dialog {
    height: 100dvh;
    overflow-y: auto;
  }

  .order-detail__status {
    grid-template-columns: auto 1fr;
    padding: 17px 18px;
  }

  .order-detail__status > b {
    grid-column: 2;
  }

  .order-detail__grid {
    grid-template-columns: 1fr;
    padding: 10px 18px;
  }

  .order-detail > section {
    margin-inline: 18px;
  }

  .order-detail footer {
    flex-wrap: wrap;
    padding: 16px 18px 25px;
  }

  .editor-dialog form {
    padding: 0 18px 25px;
  }

  .editor-dialog header {
    margin-inline: -18px;
  }
}

/* Mobile web app refinements */
:focus-visible {
  outline: 3px solid rgba(255, 90, 71, 0.42);
  outline-offset: 3px;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  overflow-wrap: anywhere;
}

@media (max-width: 860px) {
  html {
    scroll-padding-top: calc(70px + env(safe-area-inset-top));
    scroll-padding-bottom: calc(82px + env(safe-area-inset-bottom));
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
    overscroll-behavior-y: contain;
  }

  .site-header {
    height: calc(62px + env(safe-area-inset-top));
  }

  .nav-wrap {
    padding-top: env(safe-area-inset-top);
  }

  .brand,
  .city-pill {
    min-height: 44px;
  }

  .city-pill {
    padding-inline: 10px;
  }

  .hero-offer .primary-button,
  .city-tabs button,
  .favorite-button,
  .text-button {
    min-height: 44px;
  }

  .favorite-button {
    width: 44px;
    height: 44px;
  }

  .city-tabs {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }

  .city-tabs button {
    scroll-snap-align: start;
  }

  #inspiration button {
    min-width: 44px;
    min-height: 44px;
  }

  .mobile-nav {
    height: calc(68px + env(safe-area-inset-bottom));
    padding: 5px 10px calc(5px + env(safe-area-inset-bottom));
  }

  .mobile-nav a,
  .mobile-nav button {
    min-height: 48px;
    border-radius: 13px;
    font-size: 10px;
    font-weight: 700;
  }

  .mobile-nav a:active,
  .mobile-nav button:active {
    background: rgba(255, 90, 71, 0.08);
  }

  .mobile-nav b {
    font-size: inherit;
  }

  .toast {
    bottom: calc(82px + env(safe-area-inset-bottom));
    width: min(360px, calc(100vw - 28px));
    min-width: 0;
  }
}

@media (max-width: 620px) {
  .app-dialog,
  .hotel-dialog,
  .auth-dialog,
  .member-dialog,
  .booking-dialog,
  .order-detail-dialog,
  .editor-dialog {
    width: 100vw;
    height: 100dvh;
    max-height: none;
    margin: 0;
    border-radius: 0;
  }

  .app-dialog,
  .hotel-dialog,
  .auth-dialog {
    overflow-y: auto;
    background: #fff;
  }

  .app-dialog > form {
    width: 100vw;
    min-height: 100dvh;
    max-height: none;
    padding:
      calc(22px + env(safe-area-inset-top))
      18px
      calc(24px + env(safe-area-inset-bottom));
    border-radius: 0;
    box-shadow: none;
  }

  .dialog-close,
  .counter button {
    width: 44px;
    height: 44px;
  }

  .city-list button {
    min-height: 44px;
  }

  .city-chip-grid button {
    min-height: 62px;
  }

  .hotel-search-result {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 12px;
    padding: 14px 4px;
  }

  .hotel-search-result > span:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .hotel-search-result > em {
    grid-column: 2;
    grid-row: 1;
  }

  .dialog-search input,
  .date-inputs input,
  .auth-form input,
  .auth-form select,
  .booking-fields input,
  .booking-fields select,
  .booking-fields textarea,
  .editor-dialog input,
  .editor-dialog select {
    font-size: 16px;
  }

  .hotel-detail {
    min-height: 100dvh;
  }

  .hotel-detail__visual {
    min-height: 238px;
    max-height: 300px;
    border-radius: 0;
  }

  .hotel-detail__close {
    top: calc(12px + env(safe-area-inset-top));
    right: 12px;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(24, 23, 19, 0.42);
  }

  .hotel-detail__body {
    min-height: calc(100dvh - 238px);
    padding: 24px 18px calc(22px + env(safe-area-inset-bottom));
  }

  .hotel-detail__buy {
    position: sticky;
    bottom: 0;
    z-index: 2;
    align-items: center;
    gap: 10px;
    margin: 22px -18px calc(-22px - env(safe-area-inset-bottom));
    padding: 13px 18px calc(13px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 -10px 28px rgba(24, 23, 19, 0.08);
    backdrop-filter: blur(16px);
  }

  .hotel-detail__price small {
    display: none;
  }

  .hotel-detail__buy .primary-button {
    min-width: 126px;
    min-height: 48px;
  }

  .auth-shell {
    min-height: 100dvh;
  }

  .auth-dialog__close {
    top: calc(12px + env(safe-area-inset-top));
    right: 12px;
  }

  .auth-story {
    min-height: 182px;
    padding:
      calc(18px + env(safe-area-inset-top))
      22px
      18px;
    border-radius: 0;
  }

  .auth-story__copy {
    margin-top: 24px;
  }

  .auth-story__copy h2 {
    margin-block: 8px 0;
    font-size: 27px;
  }

  .auth-panel {
    min-height: 0;
    padding: 26px 20px calc(28px + env(safe-area-inset-bottom));
  }

  .auth-panel__heading h2 {
    font-size: 27px;
  }

  .auth-tabs button,
  .auth-form__meta > button,
  .auth-check {
    min-height: 44px;
  }

  .auth-tabs button {
    min-width: 44px;
  }

  .auth-check {
    padding-block: 8px;
  }

  .auth-check input {
    width: 20px;
    height: 20px;
  }

  .member-topbar {
    height: calc(62px + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
  }

  .member-layout {
    height: calc(100% - 62px - env(safe-area-inset-top));
  }

  .member-nav button,
  .member-nav a,
  .member-content__mobile-close,
  .member-welcome .primary-button,
  .member-section__heading button,
  .order-tabs button,
  .order-card__actions button,
  .member-hotel-card footer button {
    min-height: 44px;
  }

  .member-content__mobile-close {
    min-width: 44px;
    padding-inline: 10px;
  }

  .booking-dialog header,
  .editor-dialog header,
  .order-detail header {
    padding-top: calc(19px + env(safe-area-inset-top));
  }

  .booking-footer {
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
  }

  .order-detail footer,
  .editor-dialog form {
    padding-bottom: calc(25px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 380px) {
  :root {
    --shell: calc(100% - 20px);
  }

  .brand__text strong {
    font-size: 16px;
  }

  .brand__text small {
    letter-spacing: 0.34em;
  }

  .hero {
    min-height: 540px;
  }

  .hero__visual {
    min-height: 395px;
  }

  .hero__copy {
    top: 44px;
    left: 20px;
  }

  .hero h1 {
    font-size: clamp(40px, 14vw, 47px);
  }

  .hero__story {
    bottom: 76px;
    left: 20px;
  }

  .hero__story > span {
    max-width: 165px;
  }

  .hero__partner {
    top: 17px;
    right: 17px;
  }

  .hero-offer {
    right: 5px;
    left: 5px;
  }

  .hero-offer__body {
    padding: 13px;
  }

  .hero-offer h2 {
    font-size: 17px;
  }

  .hero-price strong {
    font-size: 27px;
  }

  .search-panel {
    padding: 8px;
  }

  .quick-links > button {
    padding-inline: 7px;
  }

  .section-heading h2,
  .benefit-intro h2 {
    font-size: 31px;
  }

  .coupon-card {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .profile-row {
    grid-template-columns: 36px minmax(0, 1fr) auto;
  }

  .profile-row > button:last-child {
    grid-column: 2 / -1;
    justify-self: end;
  }

  .booking-footer {
    gap: 9px;
    padding-inline: 14px;
  }

  .booking-footer .primary-button {
    min-width: 118px;
  }
}

@media (max-width: 860px) and (max-height: 650px) {
  .auth-story {
    min-height: 116px;
    padding-top: calc(10px + env(safe-area-inset-top));
    padding-bottom: 10px;
  }

  .brand--auth .brand__mark {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .brand--auth .brand__text strong {
    font-size: 14px;
  }

  .auth-story__copy {
    margin-top: 8px;
  }

  .auth-story__copy .section-kicker {
    display: none;
  }

  .auth-story__copy h2 {
    font-size: 21px;
    line-height: 1.12;
  }

  .auth-panel {
    padding-top: 18px;
  }

  .auth-panel__heading h2 {
    font-size: 24px;
  }

  .auth-panel__heading p {
    display: none;
  }

  .auth-tabs {
    margin: 14px 0 10px;
  }

  .auth-form {
    gap: 10px;
  }
}

.pwa-install-card {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 47;
  width: min(430px, calc(100vw - 36px));
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 13px 42px 13px 13px;
  border: 1px solid rgba(24, 23, 19, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 55px rgba(24, 23, 19, 0.2);
  backdrop-filter: blur(18px);
}

.pwa-install-card[hidden],
body.dialog-open .pwa-install-card {
  display: none;
}

.pwa-install-card__icon {
  position: relative;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(145deg, #ff6753, #e8412f);
  font-size: 29px;
  font-weight: 900;
  line-height: 1;
}

.pwa-install-card__icon i {
  position: absolute;
  right: -7px;
  bottom: -8px;
  width: 28px;
  height: 28px;
  border: 6px solid var(--acid);
  border-radius: 50%;
}

.pwa-install-card > div {
  min-width: 0;
}

.pwa-install-card strong {
  display: block;
  font-size: 13px;
}

.pwa-install-card p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.pwa-install-card__action {
  min-width: 62px;
  min-height: 42px;
  padding-inline: 14px;
  border: 0;
  border-radius: 11px;
  color: #fff;
  background: var(--accent);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.pwa-install-card__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 50%;
  color: var(--muted);
  background: transparent;
  font-size: 19px;
  cursor: pointer;
}

@media (max-width: 860px) {
  .pwa-install-card {
    right: 12px;
    bottom: calc(78px + env(safe-area-inset-bottom));
    left: 12px;
    width: auto;
  }

  .pwa-install-card__action {
    min-height: 44px;
  }

  .pwa-install-card__close {
    top: 4px;
    right: 4px;
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 380px) {
  .pwa-install-card {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
    padding: 11px 42px 11px 11px;
  }

  .pwa-install-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    font-size: 25px;
  }

  .pwa-install-card__action {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (min-width: 861px) {
  .pwa-install-card {
    display: none !important;
  }
}

@media (display-mode: standalone) {
  .pwa-install-card {
    display: none !important;
  }

  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }
}
