:root {
  --bg-primary: #fafaf8;
  --bg-secondary: #f3f1ec;
  --bg-dark: #0a0f0d;
  --bg-darker: #060a08;
  --bg-card: #ffffff;

  --accent: #0fa090;
  --accent-light: #2dd4c0;
  --accent-dark: #0c8378;
  --accent-glow: rgba(15, 160, 144, 0.35);
  --accent-subtle: rgba(15, 160, 144, 0.08);

  --gold: #d4a853;
  --gold-light: #e8c77b;

  --text-primary: #0a1a14;
  --text-secondary: rgba(10, 26, 20, 0.6);
  --text-tertiary: rgba(10, 26, 20, 0.4);
  --text-inverse: #f5f0e8;
  --text-inverse-muted: rgba(245, 240, 232, 0.55);

  --border-color: rgba(10, 26, 20, 0.08);
  --border-hover: rgba(15, 160, 144, 0.5);

  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-bg-strong: rgba(255, 255, 255, 0.82);
  --glass-border: rgba(255, 255, 255, 0.45);
  --glass-dark: rgba(10, 15, 13, 0.55);

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", monospace;

  --ease-out: cubic-bezier(0.16, 0.8, 0.24, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-full: 999px;

  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 30px var(--accent-glow);

  --section-py: clamp(64px, 8vw, 110px);
  --container-max: 1400px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

select,
input,
textarea {
  font: inherit;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--accent-light);
  color: var(--text-primary);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
  background: #c5d3cc;
  border-radius: 99px;
  border: 2px solid var(--bg-secondary);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 48px);
}

.text-balance {
  text-wrap: balance;
}

.stat-num {
  font-variant-numeric: tabular-nums;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-label--light {
  color: var(--accent-light);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.08;
  color: var(--text-primary);
  margin-top: 10px;
}

.section-title--light {
  color: var(--text-inverse);
}

.section-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 480px;
  margin-top: 14px;
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid var(--glass-border);
}

.glass-strong {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  transition: all 0.35s var(--ease-out);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.btn-primary:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.btn-primary i {
  width: 16px;
  height: 16px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-color);
  transition: all 0.3s var(--ease-out);
}

.btn-secondary:hover {
  border-color: var(--border-hover);
  background: var(--accent-subtle);
}

.btn-secondary i {
  width: 16px;
  height: 16px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(245, 240, 232, 0.8);
  font-size: 13px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.btn-ghost:hover {
  color: var(--accent-light);
}

.btn-ghost i {
  width: 16px;
  height: 16px;
}

/* ═══════ NAVIGATION ═══════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.5s var(--ease-out);
  overflow-x: clip;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  padding: 0 20px;
  height: 64px;
  max-width: 100%;
  min-width: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 30px rgba(10, 26, 20, 0.06);
  transition: all 0.5s var(--ease-out);
}

.nav-inner.scrolled {
  margin-top: 8px;
  height: 58px;
  box-shadow: 0 8px 40px rgba(10, 26, 20, 0.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 1;
  min-width: 0;
  overflow: hidden;
}

.nav-logo img {
  width: 40px;
  height: 40px;
  min-width: 34px;
  border-radius: 10px;
  flex-shrink: 0;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}

.nav-brand-sub {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-left: -4px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-links a {
  position: relative;
  transition: color 0.3s ease;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.current::after {
  transform: scaleX(1);
}

.nav-links a.current {
  color: var(--text-primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  min-width: 0;
}

.currency-wrap {
  position: relative;
}

.currency-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 7px 12px 7px 14px;
  transition: border-color 0.3s ease;
}

.currency-btn:hover {
  border-color: var(--border-hover);
}

.currency-btn i {
  width: 14px;
  height: 14px;
  opacity: 0.5;
}

.currency-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  width: 130px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  padding: 4px 0;
  z-index: 50;
}

.currency-dropdown.hidden {
  display: none;
}

.currency-opt {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  transition: background 0.2s ease;
  text-align: left;
}

.currency-opt:hover {
  background: var(--bg-secondary);
}

.currency-opt span:last-child {
  opacity: 0.35;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--text-primary);
  color: var(--bg-primary);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px 10px 20px;
  border-radius: var(--radius-full);
  transition: all 0.35s var(--ease-out);
  box-shadow: 0 4px 18px rgba(10, 26, 20, 0.2);
}

.nav-cta:hover {
  background: var(--accent-dark);
  color: #fff;
}

.nav-cta i {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.nav-cta:hover i {
  transform: rotate(45deg);
}

.nav-mobile-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  flex-shrink: 0;
  transition: border-color 0.3s ease;
}

.nav-mobile-btn i {
  width: 18px;
  height: 18px;
}

.mobile-menu {
  padding: 8px 20px 20px;
  border-top: 1px solid var(--border-color);
  background: var(--glass-bg-strong);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  backdrop-filter: blur(20px);
}

.mobile-menu.hidden {
  display: none;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border-color);
}

.mobile-menu a:last-child {
  border-bottom: none;
}

@media (max-width: 1080px) {
  .nav-links         { display: none !important; }
  .nav-cta--desktop  { display: none !important; }
  .nav-account-label { display: none; }
  .nav-mobile-btn    { display: flex; }
  .nav-brand-sub     { display: none; }
}

@media (max-width: 1024px) {
  .nav-links       { display: none; }
  .nav-mobile-btn  { display: flex; flex-shrink: 0; }
  .nav-brand-sub   { display: none; }
  .nav-cta--desktop{ display: none; }
  .nav-logo        { flex-shrink: 1; min-width: 0; }
  .nav-brand       { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; font-size: 19px; }
  .nav-account-label { display: none; }
  .nav-account-btn { padding: 7px 10px; }
}

@media (max-width: 768px) {
  .nav-inner       { margin-top: 10px; padding: 0 16px; height: 60px; border-radius: var(--radius-md); }
  .nav-inner.scrolled { margin-top: 6px; height: 54px; }
  .nav-logo img    { width: 36px; height: 36px; min-width: 30px; }
  .nav-brand       { font-size: 18px; letter-spacing: 0.06em; }
  .nav-actions     { gap: 8px; }
  .currency-btn    { padding: 6px 10px 6px 12px; font-size: 11px; }
  .nav-account-btn { padding: 7px 10px; }
}

@media (max-width: 480px) {
  .nav-inner       { margin-top: 8px; padding: 0 12px; height: 56px; border-radius: var(--radius-sm); }
  .nav-inner.scrolled { margin-top: 5px; height: 50px; }
  .nav-logo        { gap: 6px; }
  .nav-logo img    { width: 32px; height: 32px; min-width: 26px; }
  .nav-brand       { font-size: 15px; letter-spacing: 0.04em; }
  .nav-actions     { gap: 6px; }
  .currency-btn    { padding: 5px 8px 5px 10px; gap: 3px; font-size: 11px; }
  .currency-btn i  { width: 11px; height: 11px; }
  .nav-account-btn { padding: 6px 9px; gap: 0; }
  .nav-mobile-btn  { width: 38px; height: 38px; }
  .hamburger-line  { width: 17px; }
}

@media (max-width: 360px) {
  .nav-inner      { padding: 0 10px; height: 52px; }
  .nav-logo img   { width: 28px; height: 28px; min-width: 22px; }
  .nav-brand      { font-size: 13px; letter-spacing: 0.02em; }
  .nav-actions    { gap: 5px; }
  .currency-btn   { padding: 6px 8px; gap: 0; }
  #currency-label { display: none; }
  .currency-btn i { width: 12px; height: 12px; opacity: 0.7; }
  .nav-account-btn{ padding: 6px 8px; }
  .nav-mobile-btn { width: 34px; height: 34px; }
  .hamburger-line { width: 15px; }
}

/* ═══════ REUSABLE FORM COMPONENTS ═══════ */
.form-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.form-input-wrap:focus-within {
  border-color: var(--accent);
  background: var(--accent-subtle);
  box-shadow: 0 0 0 3px rgba(15, 160, 144, 0.08);
}

.form-input-wrap i {
  width: 17px;
  height: 17px;
  color: var(--accent-dark);
  flex-shrink: 0;
}

.form-input-wrap input,
.form-input-wrap select {
  background: transparent;
  outline: none;
  border: none;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}

.form-input-wrap select option {
  background: #fff;
}

.stepper-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 6px 6px 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius-sm);
}

.stepper-input .val {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  min-width: 30px;
  text-align: center;
}

.stepper-input .val-sub {
  font-size: 11px;
  color: var(--text-tertiary);
}

.stepper-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.stepper-btn:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.stepper-btn i {
  width: 15px;
  height: 15px;
}

.tier-grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.choice-card {
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  text-align: left;
  background: var(--bg-card);
}

.choice-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.choice-card.selected {
  border-color: var(--accent);
  background: var(--accent-subtle);
  box-shadow: 0 0 0 1px var(--accent);
}

.choice-card .cc-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  color: var(--accent-dark);
  transition: all 0.3s ease;
}

.choice-card.selected .cc-icon {
  background: var(--accent);
  color: #fff;
}

.choice-card .cc-icon i {
  width: 17px;
  height: 17px;
}

.choice-card h4 {
  font-size: 14px;
  font-weight: 700;
}

.choice-card .cc-price {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--accent-dark);
  font-weight: 600;
  margin-top: 4px;
}

.choice-card p {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 6px;
  line-height: 1.5;
}
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 10, 8, 0.6);
  backdrop-filter: blur(4px);
  z-index: 1300;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

@media (max-width: 900px) {
  .modal-overlay {
    align-items: flex-start;
    padding-top: calc(80px + env(safe-area-inset-top, 0px));
    padding-left: 16px;
    padding-right: 16px;
  }
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  max-width: 720px;
  width: 100%;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  animation: fadeSlideUp 0.35s var(--ease-out) forwards;
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 4vw, 32px);
  border-bottom: 1px solid var(--border-color);
}

.modal-head h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
}

.modal-head p {
  font-size: 12.5px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.modal-close {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.modal-close:hover {
  background: var(--text-primary);
  color: #fff;
}

.modal-close i {
  width: 16px;
  height: 16px;
}

.modal-body {
  padding: clamp(20px, 4vw, 32px);
  overflow-y: auto;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 20px clamp(20px, 4vw, 32px);
  border-top: 1px solid var(--border-color);
}

/* ════════════════════════════════════════════════════════
   HOTEL ADVANCED SEARCH — PAGE-SPECIFIC STYLES
   ════════════════════════════════════════════════════════ */
/* ═══════════════════════ HERO / SEARCH BAR ═══════════════════════ */
.hs-hero {
  position: relative;
  padding: 168px 0 70px;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfaf6 0%, var(--bg-primary) 100%);
}

.hs-hero::before,
.hs-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  z-index: 0;
  animation: hsDrift 16s ease-in-out infinite alternate;
}

.hs-hero::before {
  width: 420px;
  height: 420px;
  background: var(--accent-light);
  top: -160px;
  right: -80px;
}

.hs-hero::after {
  width: 340px;
  height: 340px;
  background: var(--gold-light);
  bottom: -140px;
  left: -100px;
  animation-delay: -8s;
}

@keyframes hsDrift {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(-30px, 24px) scale(1.08);
  }
}

.hs-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0 auto 18px;
  opacity: 0;
  animation: fadeSlideUp 0.6s var(--ease-out) forwards;
}

.hs-eyebrow-line {
  width: 30px;
  height: 1px;
  background: var(--accent);
}

.hs-hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 5.2vw, 58px);
  line-height: 1.08;
  color: var(--text-primary);
  max-width: 780px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeSlideUp 0.6s var(--ease-out) 0.08s forwards;
}

.hs-hero h1 em {
  font-style: italic;
  color: var(--accent-dark);
}

.hs-cycle-wrap {
  display: inline-block;
  position: relative;
  min-width: 1ch;
}

.hs-cycle-word {
  display: inline-block;
  color: var(--accent-dark);
  font-style: italic;
  transition:
    opacity 0.35s var(--ease-out),
    transform 0.35s var(--ease-out);
}

.hs-cycle-word.switching {
  opacity: 0;
  transform: translateY(6px);
}

.hs-hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 18px auto 0;
  opacity: 0;
  animation: fadeSlideUp 0.6s var(--ease-out) 0.16s forwards;
}

/* Search command bar */
.hs-search-bar {
  max-width: 1080px;
  margin: 40px auto 0;
  border-radius: var(--radius-xl);
  padding: 20px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr auto;
  gap: 10px;
  align-items: stretch;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 5;
  opacity: 0;
  animation: fadeSlideUp 0.6s var(--ease-out) 0.24s forwards;
}

.hs-field {
  position: relative;
}

.hs-field-label {
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  display: block;
  margin: 0 0 5px 16px;
}

.hs-field-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  border: 1px solid transparent;
  text-align: left;
  transition: all 0.25s ease;
}

.hs-field-btn:hover,
.hs-field-btn.open {
  border-color: var(--border-hover);
  background: var(--accent-subtle);
}

.hs-field-btn i:first-child {
  width: 16px;
  height: 16px;
  color: var(--accent-dark);
  flex-shrink: 0;
}

.hs-field-btn span {
  flex: 1;
  min-width: 0;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hs-field-btn .chev {
  width: 13px !important;
  height: 13px !important;
  color: var(--text-tertiary) !important;
  transition: transform 0.25s ease;
}

.hs-field-btn.open .chev {
  transform: rotate(180deg);
}

.hs-field input[type="date"] {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  border: 1px solid transparent;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
  transition: all 0.25s ease;
}

.hs-field input[type="date"]:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--accent-subtle);
}

.hs-search-btn {
  height: 52px;
  padding: 0 26px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: all 0.3s var(--ease-out);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.hs-search-btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.hs-search-btn i {
  width: 16px;
  height: 16px;
}

/* Popovers off the search bar fields */
.hs-popover {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 300px;
  max-width: calc(100vw - 32px);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  padding: 16px;
  z-index: 60;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.25s var(--ease-out),
    transform 0.25s var(--ease-out),
    visibility 0.25s;
  text-align: left;
  box-sizing: border-box;
}

.hs-popover.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Small fixed-width variant (used by the Nights popover) — width lives here
   instead of an inline style so the mobile breakpoint below can override it */
.hs-popover--sm {
  width: 230px;
}

.hs-popover-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-tertiary);
  margin-bottom: 10px;
}

#hs-dest-region-list {
  max-height: min(50vh, 360px);
  overflow-y: auto;
  padding-right: 4px;
  -webkit-overflow-scrolling: touch;
}

.hs-region-block + .hs-region-block {
  margin-top: 14px;
}

.hs-region-block h6 {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-dark);
  margin-bottom: 6px;
}

.hs-town-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hs-town-chip {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-color);
  color: var(--text-secondary);
  background: var(--bg-card);
  transition: all 0.2s ease;
}

.hs-town-chip:hover {
  border-color: var(--border-hover);
}

.hs-town-chip.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.hs-guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.hs-guest-row + .hs-guest-row {
  border-top: 1px solid var(--border-color);
}

.hs-guest-row-text b {
  display: block;
  font-size: 13px;
  font-weight: 700;
}

.hs-guest-row-text span {
  font-size: 11px;
  color: var(--text-tertiary);
}

.hs-guest-stepper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hs-guest-stepper .val {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  min-width: 16px;
  text-align: center;
}

.hs-guest-stepper button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.hs-guest-stepper button:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.hs-guest-stepper button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.hs-guest-stepper button i {
  width: 12px;
  height: 12px;
}

.hs-popover-done {
  width: 100%;
  margin-top: 14px;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: var(--text-primary);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  text-align: center;
  transition: background 0.25s ease;
}

.hs-popover-done:hover {
  background: var(--accent-dark);
}

.hs-hero-stats {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 30px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeSlideUp 0.6s var(--ease-out) 0.32s forwards;
}

.hs-hero-stat {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
}

.hs-hero-stat i {
  width: 14px;
  height: 14px;
  color: var(--accent-dark);
}

.hs-hero-stat b {
  color: var(--text-primary);
  font-weight: 700;
}

@media (max-width: 980px) {
  .hs-search-bar {
    grid-template-columns: 1fr 1fr;
  }
  .hs-search-btn {
    grid-column: 1 / -1;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hs-hero {
    padding: 140px 0 50px;
  }
  .hs-search-bar {
    grid-template-columns: 1fr;
    padding: 12px;
  }
  .hs-popover,
  .hs-popover--sm {
    width: 100%;
    left: 0;
    right: 0;
    max-width: 100%;
  }
  #hs-dest-region-list {
    max-height: 42vh;
  }
  .hs-hero-stats {
    gap: 12px;
  }
  .hs-hero-stat {
    font-size: 11px;
  }
  .hs-range-slider input[type="range"]::-webkit-slider-thumb {
    width: 24px;
    height: 24px;
  }
  .hs-range-slider input[type="range"]::-moz-range-thumb {
    width: 24px;
    height: 24px;
  }
}

/* ═══════════════════════ RESULTS LAYOUT ═══════════════════════ */
.hs-results-section {
  padding: 56px 0 var(--section-py);
}

.hs-layout {
  display: grid;
  grid-template-columns: 288px 1fr;
  gap: 36px;
  align-items: start;
}

/* ═══════════════════════ FILTERS SIDEBAR ═══════════════════════ */
.hs-filters {
  position: sticky;
  top: 96px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  max-height: calc(100vh - 116px);
  display: flex;
  flex-direction: column;
}

.hs-filters-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 14px;
  border-bottom: 1px solid var(--border-color);
  flex-shrink: 0;
}

.hs-filters-head h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
}

.hs-clear-all {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hs-clear-all i {
  width: 12px;
  height: 12px;
}

.hs-clear-all:hover {
  color: var(--accent-dark);
}

.hs-filters-body {
  padding: 6px 20px 18px;
  overflow-y: auto;
}

.hs-filter-group {
  border-bottom: 1px solid var(--border-color);
  padding: 16px 0;
}

.hs-filter-group:last-child {
  border-bottom: none;
}

.hs-filter-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
}

.hs-filter-group-head h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.hs-filter-group-head .hs-fg-count {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  border-radius: var(--radius-full);
  padding: 1px 7px;
  margin-left: 6px;
}

.hs-filter-group-head .chev {
  width: 15px;
  height: 15px;
  color: var(--text-tertiary);
  transition: transform 0.3s var(--ease-out);
  flex-shrink: 0;
}

.hs-filter-group.collapsed .hs-filter-group-head .chev {
  transform: rotate(-90deg);
}

.hs-filter-group-content {
  overflow: hidden;
  max-height: 600px;
  opacity: 1;
  transition:
    max-height 0.35s var(--ease-out),
    opacity 0.25s ease,
    margin-top 0.35s var(--ease-out);
  margin-top: 14px;
}

.hs-filter-group.collapsed .hs-filter-group-content {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
}

/* Price range slider */
.hs-price-values {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  color: var(--accent-dark);
  margin-bottom: 14px;
}

.hs-range-slider {
  position: relative;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--border-color);
  margin: 0 4px 6px;
}

.hs-range-fill {
  position: absolute;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--accent);
  top: 0;
}

.hs-range-slider input[type="range"] {
  position: absolute;
  top: -8px;
  left: 0;
  width: 100%;
  height: 20px;
  margin: 0;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}

.hs-range-slider input[type="range"]::-webkit-slider-thumb {
  pointer-events: all;
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--accent);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  margin-top: 0;
}

.hs-range-slider input[type="range"]::-moz-range-thumb {
  pointer-events: all;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--accent);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.hs-range-slider input[type="range"]::-webkit-slider-runnable-track {
  -webkit-appearance: none;
  background: transparent;
  height: 4px;
}

/* Chip-style checkbox rows (tier, property type, amenities, region) */
.hs-chip-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 6px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s ease;
  font-size: 13px;
  color: var(--text-secondary);
}

.hs-chip-check:hover {
  background: var(--bg-secondary);
}

.hs-chip-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.hs-chip-check .hs-cc-icon {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  flex-shrink: 0;
}

.hs-chip-check .hs-cc-icon i {
  width: 13px;
  height: 13px;
}

.hs-chip-check span.hs-cc-label {
  flex: 1;
  font-weight: 500;
  color: var(--text-primary);
}

.hs-chip-check .hs-cc-sub {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-tertiary);
}

.hs-chip-check input:checked ~ .hs-cc-label {
  color: var(--accent-dark);
  font-weight: 700;
}

/* Rating pill row */
.hs-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hs-pill {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 700;
  padding: 8px 13px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-color);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.hs-pill i {
  width: 11px;
  height: 11px;
}

.hs-pill:hover {
  border-color: var(--border-hover);
}

.hs-pill.active {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.hs-filters-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border-color);
  flex-shrink: 0;
  display: none;
}

/* ═══════════════════════ MOBILE FILTER DRAWER ═══════════════════════ */
.hs-filter-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6, 10, 8, 0.55);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hs-filter-scrim.show {
  display: block;
  opacity: 1;
}

.hs-mobile-filter-btn {
  display: none;
  position: fixed;
  bottom: calc(22px + var(--safe-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  align-items: center;
  gap: 8px;
  background: var(--text-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 13px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(10, 26, 20, 0.35);
  transition: bottom 0.3s var(--ease-out);
}

.hs-mobile-filter-btn i {
  width: 15px;
  height: 15px;
}

.hs-mobile-filter-btn .hs-mfb-badge {
  background: var(--accent);
  color: var(--text-primary);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  border-radius: var(--radius-full);
  padding: 1px 6px;
}

@media (max-width: 900px) {
  .hs-layout {
    grid-template-columns: 1fr;
  }

  .hs-filters {
    position: fixed;
    inset: auto 0 0 0;
    top: 8vh;
    max-height: none;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    transform: translateY(100%);
    transition: transform 0.4s var(--ease-out);
    z-index: 1200;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.25);
  }

  .hs-filters.open {
    transform: translateY(0);
  }

  /* Make filter header sticky so "Filters" & "Reset" stay visible */
  .hs-filters-head {
    position: sticky;
    top: 0;
    background: var(--bg-card);
    z-index: 2;
    border-bottom: 1px solid var(--border-color);
  }

  .hs-filters-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .hs-filters-footer {
    display: block;
    padding-bottom: calc(14px + var(--safe-bottom));
  }

  .hs-mobile-filter-btn {
    display: flex;
  }

  /* Both the compare tray and this button are fixed to the same bottom-center
     spot — when the tray is showing (2+ stays picked to compare), push the
     Filters button up so they don't sit on top of each other */
  body.hs-has-compare-tray .hs-mobile-filter-btn {
    bottom: calc(160px + var(--safe-bottom));
  }
}

@media (max-width: 640px) {
  .hs-filters {
    top: 10vh;
  }
}

/* ═══════════════════════ TOOLBAR ═══════════════════════ */
.hs-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hs-toolbar-left {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}

.hs-result-count {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-primary);
}

.hs-result-count b {
  color: var(--accent-dark);
  font-variant-numeric: tabular-nums;
}

.hs-active-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.hs-active-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  padding: 5px 8px 5px 10px;
  border-radius: var(--radius-full);
  background: var(--accent-subtle);
  color: var(--accent-dark);
}

.hs-active-chip button {
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hs-active-chip button i {
  width: 10px;
  height: 10px;
}

.hs-toolbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hs-sort-select {
  height: 40px;
  padding: 0 32px 0 14px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-color);
  background: var(--bg-card)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%230a1a14' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E")
    no-repeat right 12px center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-primary);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.hs-sort-select:hover {
  border-color: var(--border-hover);
}

.hs-view-toggle {
  display: flex;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
}

.hs-view-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-tertiary);
  transition: all 0.2s ease;
}

.hs-view-btn i {
  width: 15px;
  height: 15px;
}

.hs-view-btn.active {
  background: var(--text-primary);
  color: #fff;
}

.hs-wishlist-btn {
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.hs-wishlist-btn:hover,
.hs-wishlist-btn.active {
  border-color: var(--gold);
  color: var(--gold);
}

.hs-wishlist-btn i {
  width: 16px;
  height: 16px;
}

.hs-wishlist-btn .hs-wl-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--gold);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 9.5px;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 640px) {
  .hs-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .hs-toolbar-right {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 10px;
  }
}

/* ═══════════════════════ RESULTS GRID ═══════════════════════ */
.hs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px;
}

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

.hs-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    border-color 0.35s ease;
  opacity: 0;
  animation: fadeSlideUp 0.5s var(--ease-out) forwards;
  display: flex;
  flex-direction: column;
}

.hs-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.hs-grid--list .hs-card {
  flex-direction: row;
}

.hs-card-media {
  position: relative;
  height: 168px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hs-grid--list .hs-card-media {
  width: 240px;
  height: auto;
}

.hs-card-media.tier-comfort {
  background: linear-gradient(135deg, #cfe8c9, #a9d1a0);
}
.hs-card-media.tier-luxury {
  background: linear-gradient(135deg, #f0d9a8, #e0b96e);
}
.hs-card-media.tier-vip {
  background: linear-gradient(135deg, #d7c1ee, #b191d9);
}

.hs-card-media i.hs-media-icon {
  width: 44px;
  height: 44px;
  color: rgba(10, 26, 20, 0.28);
  transition: transform 0.5s var(--ease-out);
}

.hs-card:hover .hs-media-icon {
  transform: scale(1.12) rotate(-4deg);
}

.hs-badge-tier {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

.hs-badge-tier i {
  width: 10px;
  height: 10px;
}

.hs-card-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.25s var(--ease-spring);
}

.hs-card-heart:hover {
  transform: scale(1.12);
}

.hs-card-heart .hs-heart-ico {
  width: 15px;
  height: 15px;
}

.hs-card-heart.active .hs-heart-ico {
  fill: var(--gold);
  stroke: var(--gold);
}

.hs-card-compare-row {
  position: absolute;
  bottom: 10px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  padding: 5px 10px 5px 8px;
  border-radius: var(--radius-full);
}

.hs-card-compare-row input {
  width: 14px;
  height: 14px;
  accent-color: var(--accent);
}

.hs-card-compare-row span {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text-primary);
}

.hs-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.hs-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.hs-card-top h4 {
  font-family: var(--font-display);
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.3;
}

.hs-card-price {
  flex-shrink: 0;
  text-align: right;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  color: var(--accent-dark);
  white-space: nowrap;
}

.hs-card-price small {
  display: block;
  font-size: 9.5px;
  font-weight: 500;
  color: var(--text-tertiary);
  text-transform: uppercase;
}

.hs-card-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: var(--text-tertiary);
  margin-top: 4px;
}

.hs-card-meta i {
  width: 11px;
  height: 11px;
}

.hs-card-meta .dot {
  opacity: 0.5;
}

.hs-card-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  font-size: 12px;
}

.hs-card-rating .stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--gold);
}

.hs-card-rating .stars i {
  width: 12px;
  height: 12px;
  fill: var(--gold);
}

.hs-card-rating b {
  font-weight: 700;
  color: var(--text-primary);
}

.hs-card-rating span.rc {
  color: var(--text-tertiary);
}

.hs-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.hs-am-icon {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
}

.hs-am-icon i {
  width: 13px;
  height: 13px;
}

.hs-am-more {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  padding: 0 6px;
}

.hs-card-actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.hs-card-actions .btn-secondary,
.hs-card-actions .btn-primary {
  flex: 1;
  padding: 10px 14px;
  font-size: 12.5px;
  justify-content: center;
}

.hs-card-actions .btn-primary i,
.hs-card-actions .btn-secondary i {
  width: 13px;
  height: 13px;
}

.hs-card-actions .hs-card-view-btn {
  flex: 0 0 auto;
  width: 40px;
  padding: 10px 0;
  justify-content: center;
}

.hs-card-actions .hs-card-view-btn i {
  width: 15px;
  height: 15px;
}

/* Staggered entrance delays, cycled */
.hs-card:nth-child(9n + 1) {
  animation-delay: 0.02s;
}
.hs-card:nth-child(9n + 2) {
  animation-delay: 0.06s;
}
.hs-card:nth-child(9n + 3) {
  animation-delay: 0.1s;
}
.hs-card:nth-child(9n + 4) {
  animation-delay: 0.14s;
}
.hs-card:nth-child(9n + 5) {
  animation-delay: 0.18s;
}
.hs-card:nth-child(9n + 6) {
  animation-delay: 0.22s;
}
.hs-card:nth-child(9n + 7) {
  animation-delay: 0.26s;
}
.hs-card:nth-child(9n + 8) {
  animation-delay: 0.3s;
}
.hs-card:nth-child(9n + 9) {
  animation-delay: 0.34s;
}

@media (max-width: 560px) {
  .hs-grid {
    grid-template-columns: 1fr;
  }
  .hs-grid--list .hs-card {
    flex-direction: column;
  }
  .hs-grid--list .hs-card-media {
    width: 100%;
    height: 150px;
  }
}

/* ═══════════════════════ SKELETON LOADING ═══════════════════════ */
.hs-skeleton {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hs-skeleton-media {
  height: 168px;
  background: linear-gradient(
    100deg,
    var(--bg-secondary) 30%,
    #eae7de 50%,
    var(--bg-secondary) 70%
  );
  background-size: 200% 100%;
  animation: hsShimmer 1.4s ease-in-out infinite;
}

.hs-skeleton-body {
  padding: 16px 18px;
}

.hs-skeleton-line {
  height: 11px;
  border-radius: 6px;
  background: linear-gradient(
    100deg,
    var(--bg-secondary) 30%,
    #eae7de 50%,
    var(--bg-secondary) 70%
  );
  background-size: 200% 100%;
  animation: hsShimmer 1.4s ease-in-out infinite;
  margin-bottom: 10px;
}

.hs-skeleton-line.w-70 {
  width: 70%;
  height: 15px;
}
.hs-skeleton-line.w-40 {
  width: 40%;
}
.hs-skeleton-line.w-90 {
  width: 90%;
}
.hs-skeleton-line.w-50 {
  width: 50%;
  margin-bottom: 0;
}

@keyframes hsShimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* ═══════════════════════ EMPTY STATE ═══════════════════════ */
.hs-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 70px 20px;
}

.hs-empty i {
  width: 44px;
  height: 44px;
  color: var(--text-tertiary);
  margin: 0 auto 18px;
}

.hs-empty h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.hs-empty p {
  font-size: 13.5px;
  color: var(--text-secondary);
  max-width: 380px;
  margin: 0 auto 20px;
}

/* ═══════════════════════ LOAD MORE ═══════════════════════ */
.hs-load-more-wrap {
  text-align: center;
  margin-top: 36px;
}

.hs-load-progress {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--text-tertiary);
  margin-top: 12px;
}

.hs-load-more-wrap .btn-secondary {
  padding: 13px 30px;
}

/* ═══════════════════════ MAP VIEW ═══════════════════════ */
.hs-map-view {
  height: 640px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  display: none;
}

.hs-map-view.show {
  display: block;
}

@media (max-width: 640px) {
  .hs-map-view {
    height: 62vh;
    min-height: 320px;
  }
}

.hs-compare-thumb.tier-comfort {
  background: linear-gradient(135deg, #cfe8c9, #a9d1a0);
}
.hs-compare-thumb.tier-luxury {
  background: linear-gradient(135deg, #f0d9a8, #e0b96e);
}
.hs-compare-thumb.tier-vip {
  background: linear-gradient(135deg, #d7c1ee, #b191d9);
}

/* ═══════════════════════ COMPARE TRAY ═══════════════════════ */
.hs-compare-tray {
  position: fixed;
  left: 50%;
  bottom: calc(22px + var(--safe-bottom));
  transform: translate(-50%, 140%);
  z-index: 950;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--text-primary);
  color: #fff;
  padding: 12px 14px 12px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 16px 44px rgba(10, 26, 20, 0.4);
  transition: transform 0.4s var(--ease-spring);
  max-width: calc(100vw - 32px);
}

.hs-compare-tray.show {
  transform: translate(-50%, 0);
}

.hs-compare-thumbs {
  display: flex;
  gap: 8px;
}

.hs-compare-thumb {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hs-compare-thumb i.hs-ct-icon {
  width: 16px;
  height: 16px;
  color: rgba(255, 255, 255, 0.85);
}

.hs-compare-thumb .hs-ct-remove {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hs-compare-thumb .hs-ct-remove i {
  width: 9px;
  height: 9px;
  color: var(--text-primary);
}

.hs-compare-text {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  white-space: nowrap;
}

.hs-compare-text b {
  color: #fff;
}

.hs-compare-tray .btn-primary {
  padding: 10px 20px;
  font-size: 12.5px;
  white-space: nowrap;
}

.hs-compare-clear {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.hs-compare-clear:hover {
  color: #fff;
}

@media (max-width: 700px) {
  .hs-compare-tray {
    left: 16px;
    right: 16px;
    transform: translateY(140%);
    max-width: none;
    flex-wrap: wrap;
    justify-content: center;
    padding: 12px 16px;
  }
  .hs-compare-tray.show {
    transform: translateY(0);
  }
  .hs-compare-text {
    width: 100%;
    text-align: center;
    order: 3;
    white-space: normal;
  }
  body.hs-has-compare-tray .hs-mobile-filter-btn {
    bottom: calc(160px + var(--safe-bottom));
  }
}

/* ═══════════════════════ COMPARE MODAL ═══════════════════════ */
.hs-compare-modal .modal-box {
  max-width: 980px;
}

.hs-compare-table {
  display: grid;
  gap: 14px;
}

.hs-compare-cols {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(var(--cmp-cols, 2), 1fr);
}

.hs-compare-col {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
}

.hs-compare-col .hs-card-media {
  height: 110px;
}

.hs-compare-col .hs-cc-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hs-compare-col .hs-cc-remove i {
  width: 13px;
  height: 13px;
}

.hs-compare-col-body {
  padding: 12px 14px;
}

.hs-compare-col-body h5 {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.3;
}

.hs-compare-col-body .price {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 14px;
  margin-top: 4px;
}

.hs-compare-attr {
  border-top: 1px solid var(--border-color);
}

.hs-compare-attr-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-tertiary);
  padding: 12px 14px 4px;
}

.hs-compare-attr-row {
  display: grid;
  grid-template-columns: repeat(var(--cmp-cols, 2), 1fr);
  padding: 0 14px 12px;
  font-size: 12.5px;
  color: var(--text-primary);
}

.hs-compare-amenity-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 14px 12px;
}

.hs-compare-amenity-list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}

.hs-compare-amenity-list li i {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.hs-compare-amenity-list li.yes {
  color: var(--text-primary);
}

.hs-compare-amenity-list li.yes i {
  color: var(--accent-dark);
}

.hs-compare-amenity-list li.no {
  color: var(--text-tertiary);
  opacity: 0.55;
}

@media (max-width: 700px) {
  .hs-compare-cols,
  .hs-compare-attr-row {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 220px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }
  .hs-compare-col,
  .hs-compare-attr-row > * {
    scroll-snap-align: start;
  }
}

/* ═══════════════════════ DETAIL MODAL ═══════════════════════ */
.hs-detail-modal .modal-box {
  max-width: 660px;
}

.hs-detail-media {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hs-detail-media i {
  width: 60px;
  height: 60px;
  color: rgba(10, 26, 20, 0.28);
}

.hs-detail-media .hs-badge-tier {
  top: 16px;
  left: 16px;
}

.hs-detail-heart {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hs-detail-heart .hs-heart-ico {
  width: 17px;
  height: 17px;
}

.hs-detail-heart.active .hs-heart-ico {
  fill: var(--gold);
  stroke: var(--gold);
}

.hs-detail-body-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.hs-detail-body-top h3 {
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.25;
}

.hs-detail-price {
  text-align: right;
  flex-shrink: 0;
}

.hs-detail-price .amt {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 21px;
  color: var(--accent-dark);
}

.hs-detail-price small {
  display: block;
  font-size: 10.5px;
  color: var(--text-tertiary);
  text-transform: uppercase;
}

.hs-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
  font-size: 12.5px;
  color: var(--text-secondary);
}

.hs-detail-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.hs-detail-meta i {
  width: 13px;
  height: 13px;
  color: var(--accent-dark);
}

.hs-detail-desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
}

.hs-detail-amenities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
}

.hs-detail-amenities .item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: var(--text-primary);
}

.hs-detail-amenities .item .hs-am-icon {
  width: 30px;
  height: 30px;
}

.hs-detail-amenities .item .hs-am-icon i {
  width: 14px;
  height: 14px;
}

@media (max-width: 560px) {
  .hs-detail-amenities {
    grid-template-columns: 1fr 1fr;
  }
  .hs-detail-body-top {
    flex-wrap: wrap;
  }
  .hs-detail-price {
    text-align: left;
  }
}

/* ═══════════════════════ TOASTS ═══════════════════════ */
.hs-toast-wrap {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1400;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

.hs-toast {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--text-primary);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(10, 26, 20, 0.3);
  font-size: 12.5px;
  font-weight: 600;
  animation: hsToastIn 0.35s var(--ease-spring) forwards;
}

.hs-toast.out {
  animation: hsToastOut 0.3s var(--ease-out) forwards;
}

.hs-toast i {
  width: 15px;
  height: 15px;
  color: var(--accent-light);
  flex-shrink: 0;
}

@keyframes hsToastIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hsToastOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(10px) scale(0.92);
  }
}

@media (max-width: 640px) {
  .hs-toast-wrap {
    left: 16px;
    right: 16px;
    bottom: calc(90px + var(--safe-bottom));
    align-items: center;
  }
  .hs-toast {
    width: 100%;
    justify-content: center;
  }
}

/* ═══════════════════════ REDUCED MOTION ═══════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .hs-hero::before,
  .hs-hero::after,
  .hs-card,
  .hs-eyebrow,
  .hs-hero h1,
  .hs-hero-sub,
  .hs-search-bar,
  .hs-hero-stats,
  .hs-skeleton-media,
  .hs-skeleton-line,
  .hs-toast {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
/* ═══════ FOOTER ═══════ */
.footer {
  background: var(--bg-dark);
  color: var(--text-inverse);
  padding: 90px 0 28px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 0.08em;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-inverse-muted);
  line-height: 1.7;
  margin-top: 14px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.footer-social i {
  width: 15px;
  height: 15px;
}

.footer-heading {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-light);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 13.5px;
  color: var(--text-inverse-muted);
  transition: color 0.3s ease;
}

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

.footer-newsletter-desc {
  font-size: 12.5px;
  color: var(--text-inverse-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.footer-newsletter-form {
  display: flex;
  gap: 8px;
}

.footer-newsletter-input {
  flex: 1;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 13px;
}

.footer-newsletter-input::placeholder {
  color: rgba(245, 240, 232, 0.35);
}

.footer-newsletter-input:focus {
  outline: none;
  border-color: var(--accent-light);
}

.footer-newsletter-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.footer-newsletter-btn:hover {
  background: var(--accent-light);
}

.footer-newsletter-btn i {
  width: 16px;
  height: 16px;
  color: var(--bg-dark);
}

.footer-newsletter-msg {
  font-size: 11.5px;
  color: var(--accent-light);
  margin-top: 10px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.footer-newsletter-msg.show {
  opacity: 1;
  height: auto;
  margin-top: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-payments {
  display: flex;
  gap: 14px;
}

.footer-payment {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: rgba(245, 240, 232, 0.35);
}

.footer-contact {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-contact span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--text-inverse-muted);
}

.footer-contact i {
  width: 14px;
  height: 14px;
  color: var(--accent-light);
}

.footer-copy {
  font-size: 11.5px;
  color: rgba(245, 240, 232, 0.3);
  text-align: center;
  padding-top: 10px;
}
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
