/* =========================================================
   ۱۰۰ ثانیه — Caspian Forest Design System
   ========================================================= */

.rcard-link,
.rcard-link:hover {
  display: block;
  color: inherit;
  text-decoration: none;
}
.artc-link,
.acard-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

@font-face {
  font-family: "Vazirmatn";
  src: url("fonts/Vazirmatn-Variable.woff2") format("woff2-variations"),
       url("fonts/Vazirmatn-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #111111;
  --forest: #1a1a1a;
  --teal: #ea580c;
  --sea: #f97316;
  --foam: #fdba74;
  --paper: #fafafa;
  --surface: #ffffff;
  --mist: #737373;
  --line: rgba(17, 17, 17, 0.09);
  --soft: rgba(17, 17, 17, 0.04);
  --gold: #f59e0b;
  --danger: #dc2626;
  --ok: #16a34a;
  --shade: rgba(17, 17, 17, 0.55);
  --radius: 1.25rem;
  --radius-lg: 1.75rem;
  --shadow: 0 10px 32px rgba(17, 17, 17, 0.07);
  /* فونت ملایم یکدست — بدون display تند */
  --font-display: "Vazirmatn", Tahoma, sans-serif;
  --font-body: "Vazirmatn", Tahoma, sans-serif;
  --nav-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --sat-top: env(safe-area-inset-top, 0px);
  --sat-bottom: env(safe-area-inset-bottom, 0px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 450;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

body::before {
  content: "";
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

@media (max-width: 768px), (prefers-reduced-motion: reduce) {
  body::before {
    display: none;
  }
}

/* گوشی‌ها: انیمیشن سنگین هیرو حذف تا صفحه لگ نزند */
@media (max-width: 768px) {
  .hero-media {
    animation: none;
    scale: 1;
  }
}

h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.45;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
}

ul, ol {
  list-style: none;
}

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

::-webkit-scrollbar-thumb {
  background: #c5d4cf;
  border-radius: 8px;
}

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

.wrap {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.wrap-wide {
  width: min(1240px, calc(100% - 2rem));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ----- Typography helpers ----- */
.tg {
  background: linear-gradient(120deg, #fdba74, #fb923c 40%, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tg-dark {
  background: linear-gradient(120deg, var(--teal), var(--sea));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 1rem;
  font-weight: 800;
  padding: 0.85rem 1.35rem;
  transition: transform 0.2s var(--ease), filter 0.2s, background 0.2s, border-color 0.2s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, #ea580c, #f97316);
  color: #fff;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.22);
}

.btn-primary:hover {
  filter: brightness(1.06);
}

.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border: 1.5px solid var(--line);
}

.btn-ghost:hover {
  border-color: var(--sea);
  color: var(--teal);
}

.btn-soft {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.btn-soft:hover {
  background: rgba(255, 255, 255, 0.18);
}

.btn-sm {
  padding: 0.55rem 0.95rem;
  font-size: 0.875rem;
  border-radius: 0.85rem;
}

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

/* ----- Forms ----- */
.field {
  width: 100%;
  padding: 0.9rem 1.1rem;
  border: 1.5px solid var(--line);
  border-radius: 1rem;
  outline: 0;
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field:focus {
  border-color: var(--sea);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.field-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--mist);
  margin-bottom: 0.35rem;
}

.geo-combo-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  text-align: right;
  cursor: pointer;
  background: var(--surface);
}

.geo-combo-btn.has-val,
.geo-combo-input.has-val {
  border-color: rgba(249, 115, 22, 0.45);
  background: #fff;
}

.geo-combo-btn span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.geo-combo-field {
  position: relative;
}

.geo-combo-input {
  padding-left: 2.55rem;
}

.geo-combo-field.has-search .geo-combo-input {
  padding-right: 2.45rem;
}

.geo-combo-search-ico {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  color: var(--mist);
  pointer-events: none;
}

.geo-combo-chevron {
  position: absolute;
  left: 0.45rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--mist);
  cursor: pointer;
  border-radius: 0.7rem;
}

.geo-combo-chevron:hover {
  color: var(--teal);
  background: rgba(249, 115, 22, 0.08);
}

.geo-combo-pop {
  position: fixed;
  z-index: 5000;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.16);
  padding: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-height: min(340px, 52dvh);
  overscroll-behavior: contain;
}

.geo-combo-pop[hidden] {
  display: none !important;
}

.geo-combo-pop .field {
  padding: 0.65rem 0.85rem;
}

.geo-combo-list {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  max-height: 280px;
  display: grid;
  gap: 0.12rem;
}

.geo-combo-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  text-align: right;
  padding: 0.62rem 0.75rem;
  border-radius: 0.75rem;
  font-size: 0.88rem;
  font-weight: 650;
  width: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: inherit;
}

.geo-combo-main {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
  text-align: right;
}

.geo-combo-main strong {
  font-weight: 750;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.geo-combo-main em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--mist);
}

.geo-combo-mark {
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.14rem 0.45rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.05);
  color: var(--mist);
}

.geo-combo-item.is-on .geo-combo-mark {
  background: rgba(249, 115, 22, 0.14);
  color: var(--teal);
}

.geo-combo-item:hover,
.geo-combo-item:focus,
.geo-combo-item.is-active {
  background: rgba(249, 115, 22, 0.1);
  color: var(--teal);
}

.geo-combo-item.is-on {
  background: rgba(249, 115, 22, 0.14);
}

.geo-combo-empty {
  padding: 0.85rem 0.5rem;
  text-align: center;
  color: var(--mist);
  font-size: 0.8rem;
}

.geo-combo-head {
  margin: 0.35rem 0 0;
  padding: 0.45rem 0.65rem 0.2rem;
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--mist);
  letter-spacing: 0;
}

.geo-combo-head:first-child {
  margin-top: 0;
}

.geo-pick-hint {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.75rem;
  color: var(--mist);
  line-height: 1.6;
}

.host-geo-smart {
  display: grid;
  gap: 0.65rem;
}

.geo-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.geo-chip {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.42rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 750;
  cursor: pointer;
  transition: 0.18s;
}

.geo-chip:hover {
  border-color: rgba(249, 115, 22, 0.4);
  background: rgba(249, 115, 22, 0.08);
  color: var(--teal);
}

.geo-chip.on {
  border-color: rgba(249, 115, 22, 0.55);
  background: rgba(249, 115, 22, 0.14);
  color: var(--teal);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.08);
}

/* ----- Reveal motion ----- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.on {
  opacity: 1;
  transform: none;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

@keyframes ken {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

@keyframes pulse-dot {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.asu {
  animation: slide-in 0.55s var(--ease) forwards;
  opacity: 0;
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: calc(0.65rem + var(--sat-top));
  right: 1rem;
  left: 1rem;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 1rem;
  border-radius: 1.25rem;
  transition: top 0.35s, background 0.35s, box-shadow 0.35s;
}

@media (min-width: 900px) {
  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
  }
}

.nav.scrolled {
  top: calc(0.35rem + var(--sat-top));
  background: rgba(250, 250, 250, 0.92);
  -webkit-backdrop-filter: blur(18px) saturate(1.05);
  backdrop-filter: blur(18px) saturate(1.05);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 32px rgba(12, 26, 23, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.brand-bar {
  min-width: 0;
}

@media (min-width: 900px) {
  .brand-bar {
    justify-self: start;
  }
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.brand-logo {
  height: 2.6rem;
  width: auto;
  max-width: 3.4rem;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 0.75rem;
  background: #fff;
  flex-shrink: 0;
}

.brand-logo-footer {
  height: 3rem;
  max-width: 3.8rem;
}

.brand-logo-promo {
  height: 2.15rem;
  max-width: 2.8rem;
  border-radius: 0.65rem;
}

.brand-mark {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.85rem;
  background: linear-gradient(145deg, #ea580c, #f97316);
  color: #fff;
  font-weight: 900;
  font-size: 0.82rem;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.35);
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.nav.scrolled .brand-name {
  color: var(--ink);
  text-shadow: none;
}

.nav-links {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55), 0 2px 14px rgba(0, 0, 0, 0.35);
}

.nav-links a {
  transition: color 0.2s, opacity 0.2s;
}

.nav-links a:hover {
  color: #fff;
  opacity: 1;
}

.nav.scrolled .nav-links {
  color: var(--mist);
  text-shadow: none;
  font-weight: 650;
}

.nav.scrolled .nav-links a:hover {
  color: var(--ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow: visible;
}

.nav-avatar-wrap {
  position: relative;
  display: none;
  width: 2.35rem;
  height: 2.35rem;
  overflow: visible;
}
.nav-avatar-wrap.show { display: block; }

@media (min-width: 900px) {
  .nav-actions {
    justify-self: end;
  }
}

.icon-btn {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.55);
  display: grid;
  place-items: center;
  color: var(--ink);
}

.menu-toggle,
#mnav {
  display: none !important;
}

.avatar-btn {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #ea580c, #f97316);
  color: #fff;
  font-weight: 800;
  display: none;
  place-items: center;
  position: relative;
  overflow: visible;
}

.avatar-btn.show {
  display: grid;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-host { display: inline-flex !important; }
  .menu-toggle { display: none !important; }
  .brand-name { display: block; }
}

.brand-name {
  display: block;
  font-size: 0.92rem;
  white-space: nowrap;
  max-width: 7.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 480px) {
  .brand-name {
    font-size: 1rem;
    max-width: none;
  }
}

/* =========================================================
   HERO — full-bleed, brand-first, tight budget
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  scale: 1.04;
  animation: ken 30s ease-in-out infinite alternate;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
  will-change: opacity;
}

.hero-media img.ready {
  opacity: 1;
}

.hero-media img.swap-out {
  opacity: 0;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(12, 26, 23, 0.45) 0%, rgba(12, 26, 23, 0.18) 32%, rgba(12, 26, 23, 0.55) 68%, rgba(12, 26, 23, 0.94) 100%),
    linear-gradient(90deg, rgba(12, 26, 23, 0.55) 0%, transparent 58%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
  padding: calc(6.5rem + var(--sat-top)) 0 3.5rem;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.hero-brand span {
  display: block;
  font-size: 0.38em;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 0.55rem;
}

.hero-title {
  font-size: clamp(1.55rem, 3.6vw, 2.35rem);
  font-weight: 700;
  max-width: 16ch;
  margin-bottom: 0.85rem;
  color: rgba(255, 255, 255, 0.95);
}

.hero-lead {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 34ch;
  margin-bottom: 1.75rem;
}

/* Search bar = CTA group */
.search {
  display: grid;
  grid-template-columns: 1fr 1fr 0.85fr 1fr 0.85fr auto;
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(17, 17, 17, 0.1);
  color: var(--ink);
  max-width: 860px;
}

.search-cell {
  padding: 0.95rem 1.1rem;
  border-left: 1px solid var(--line);
  text-align: right;
}

.search-cell label {
  display: block;
  font-size: 0.68rem;
  color: var(--mist);
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.search-cell select {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
}

.search-cell input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-weight: 700;
  font-size: 0.92rem;
}

.search-go {
  border: 0;
  background: linear-gradient(135deg, var(--teal), var(--sea));
  color: #fff;
  padding: 0 1.45rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: filter 0.2s;
}

.search-go:hover {
  filter: brightness(1.06);
}

.hero-popular {
  margin-top: 1.15rem;
  background: transparent;
  padding: 0;
  box-shadow: none;
  color: #fff;
}

.hero-popular-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}

.hero-popular-head h3 {
  font-size: 0.9rem;
  font-weight: 800;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: -0.01em;
}

.dest-tabs {
  flex: 1;
  min-width: 0;
  justify-content: flex-end;
}

#dest-tabs .ftab {
  padding: 0.22rem 0.62rem;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

#dest-tabs .ftab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

#dest-tabs .ftab.on {
  background: #fff;
  color: #111;
  border-color: #fff;
}

@media (max-width: 768px) {
  .hero-content {
    padding: 5.5rem 0 5.75rem;
  }

  .hero-brand {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
    margin-bottom: 0.65rem;
  }

  .hero-title {
    font-size: 1.15rem;
    margin-bottom: 0.45rem;
  }

  .hero-lead {
    font-size: 0.88rem;
    margin-bottom: 1.1rem;
    max-width: 100%;
  }

  .search {
    grid-template-columns: 1fr 1fr;
    border-radius: 1.1rem;
    max-width: 100%;
  }

  .search-cell {
    border-left: 0;
    border-bottom: 1px solid var(--line);
    padding: 0.7rem 0.85rem;
  }

  .search-cell:nth-child(1),
  .search-cell:nth-child(4) {
    grid-column: 1 / -1;
  }

  .search-go {
    grid-column: 1 / -1;
    padding: 0.85rem;
  }

  .hero-popular-head {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .popular-tile {
    flex-basis: 112px;
    width: 112px;
    height: 148px;
  }
}

@media (max-width: 400px) {
  .hero-content {
    width: min(1120px, calc(100% - 1.25rem));
    padding: 5rem 0 5.25rem;
  }

  .hero-brand {
    font-size: clamp(1.95rem, 10.5vw, 2.6rem);
  }

  .hero-brand span {
    letter-spacing: 0.18em;
  }

  .login-label {
    display: none;
  }

  .nav {
    padding: 0.5rem 0.65rem;
    gap: 0.45rem;
  }

  .brand-logo {
    height: 2.15rem;
    max-width: 2.8rem;
  }
}

/* =========================================================
   SECTIONS
   ========================================================= */
.section {
  padding: 4rem 0;
}

.section-head {
  margin-bottom: 1.75rem;
}

.section-head.center {
  text-align: center;
}

.section-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: 0.04em;
  margin-bottom: 0.45rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.4vw, 2.55rem);
  font-weight: 700;
  line-height: 1.3;
}

.section-sub {
  margin-top: 0.45rem;
  color: var(--mist);
  font-size: 0.92rem;
  font-family: var(--font-body);
}

.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Large feature / company promo banners — text-only carousels (no photos/logos) */
.feat-ban,
.promo-ban {
  padding: clamp(0.75rem, 2vw, 1.25rem) 0 clamp(1rem, 2.5vw, 1.75rem);
}

.promo-carousel {
  position: relative;
  border-radius: clamp(1.25rem, 3vw, 1.85rem);
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 10px 32px rgba(17, 17, 17, 0.08);
  background: #111;
  touch-action: pan-y;
}

.promo-track {
  display: flex;
  transition: transform 0.55s var(--ease);
  direction: ltr;
}

.promo-slide {
  flex: 0 0 100%;
  min-height: 0;
  padding: 0.85rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  direction: rtl;
  text-align: right;
  position: relative;
  overflow: hidden;
}

.promo-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(255, 255, 255, 0.08), transparent 55%),
    radial-gradient(ellipse 50% 60% at 0% 100%, rgba(255, 255, 255, 0.05), transparent 50%);
}

.promo-slide > * {
  position: relative;
  z-index: 1;
}

.promo-tone-brand {
  background: linear-gradient(125deg, #111111 0%, #2a1608 48%, #1a0f08 100%);
}

.promo-tone-pay {
  background: linear-gradient(125deg, #0f1512 0%, #14352a 50%, #111111 100%);
}

.promo-tone-villa {
  background: linear-gradient(125deg, #14100e 0%, #3b1d12 55%, #1a1210 100%);
}

.promo-tone-end {
  background: linear-gradient(125deg, #0a0a0a 0%, #2a120c 50%, #111111 100%);
}

.promo-tag,
.feat-ban-ov span {
  font-size: 0.68rem;
  font-weight: 800;
  color: #fdba74;
  margin-bottom: 0.25rem;
  letter-spacing: 0.02em;
}

.promo-slide h3,
.promo-ban-ov h3,
.feat-ban-ov h3 {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 0.2rem;
  max-width: 36ch;
  color: #fff;
}

.promo-slide > p,
.promo-ban-ov > p:not(.promo-brand) {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  max-width: 52ch;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.promo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s;
}

.promo-nav,
.bannav {
  display: none !important;
}

.promo-nav:hover {
  background: rgba(0, 0, 0, 0.55);
  border-color: rgba(249, 115, 22, 0.45);
}

.promo-prev { right: 0.75rem; }
.promo-next { left: 0.75rem; }

.promo-dots {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  z-index: 3;
}

.promo-dot {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: width 0.25s, background 0.25s;
}

.promo-dot.on {
  width: 1.15rem;
  background: #fdba74;
}

/* Legacy card hooks kept for safety if any remain */
.feat-ban-card,
.promo-ban-card {
  position: relative;
  border-radius: clamp(1.25rem, 3vw, 1.85rem);
  overflow: hidden;
  min-height: clamp(220px, 36vw, 320px);
  isolation: isolate;
  box-shadow: 0 10px 32px rgba(17, 17, 17, 0.08);
}

.feat-ban-ov,
.promo-ban-ov {
  position: relative;
  z-index: 1;
  min-height: inherit;
  padding: clamp(1.25rem, 4.5vw, 3.25rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  color: #fff;
}

.promo-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  margin-bottom: 0.65rem;
  color: #fff;
}

.promo-brand .brand-mark {
  width: 2.15rem;
  height: 2.15rem;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.bancta-ghost {
  background: rgba(255, 255, 255, 0.12) !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  color: #fff !important;
}

.bancta-ghost:hover {
  background: rgba(255, 255, 255, 0.2) !important;
}

@media (max-width: 640px) {
  .promo-slide {
    min-height: 0;
    padding: 0.75rem 0.9rem 1.35rem;
  }

  .promo-slide h3 {
    max-width: none;
    font-size: 1.02rem;
  }

  .promo-slide > p {
    max-width: none;
    font-size: 0.76rem;
    margin-bottom: 0.45rem;
  }

  .promo-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .promo-actions .bancta {
    width: auto;
    min-width: 0;
  }

  .promo-nav {
    width: 2rem;
    height: 2rem;
  }

  .promo-prev { right: 0.45rem; }
  .promo-next { left: 0.45rem; }
}

@media (min-width: 641px) and (max-width: 900px) {
  .promo-slide {
    min-height: 0;
  }
}

.promo-actions .bancta {
  flex: 0 1 auto;
  min-width: 0;
  justify-content: center;
  padding: 0.35rem 0.7rem;
  font-size: 0.72rem;
}

/* Booking calendar prices */
.book-cal .cday {
  flex-direction: column;
  gap: 1px;
  border-radius: 0.65rem;
  aspect-ratio: auto;
  min-height: 48px;
  padding: 0.2rem 0.1rem;
  font-size: 0.78rem;
}

.book-cal .cday .p {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--sea);
  line-height: 1.1;
}

.book-cal .cday.wknd .p {
  color: #c2410c;
}

.book-cal .cday.sel .p {
  color: rgba(255, 255, 255, 0.92);
}

.book-cal .cday.d .p {
  color: #ddd;
}

.cal-dual {
  display: grid;
  gap: 0.85rem;
}

.cal-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.cal-toolbar-copy {
  text-align: center;
  min-width: 0;
}

.cal-toolbar-copy h4 {
  font-size: 0.84rem;
  font-weight: 800;
  margin: 0;
}

.cal-toolbar-copy span {
  display: block;
  font-size: 0.68rem;
  color: var(--teal);
  font-weight: 700;
  margin-top: 0.08rem;
}

.cal-nav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  color: var(--ink);
  flex-shrink: 0;
  cursor: pointer;
}

.cal-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.cal-month {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.7rem 0.55rem 0.6rem;
}

.cal-month-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.45rem;
}

.cal-month-head h5 {
  font-size: 0.82rem;
  font-weight: 800;
}

.cal-hint {
  font-size: 0.7rem;
  color: var(--mist);
  margin-bottom: 0.55rem;
  line-height: 1.6;
}

.cal-panel {
  padding: 0.85rem 0.75rem 0.7rem !important;
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -1.25rem;
  padding: 0 0 0.5rem;
}

.trust-row {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  padding: 0.85rem 1rem;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.05);
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.trust-row::-webkit-scrollbar { display: none; }

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
  min-width: 9.5rem;
  padding: 0.35rem 0.75rem;
  color: var(--ink);
}

.trust-item + .trust-item {
  border-inline-start: 1px solid var(--line);
}

.trust-item i {
  color: var(--sea);
  flex-shrink: 0;
}

.trust-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
}

.trust-item span {
  display: block;
  font-size: 0.68rem;
  color: var(--mist);
  margin-top: 0.1rem;
}

@media (min-width: 1100px) {
  .trust-row {
    justify-content: space-between;
    overflow: visible;
  }
  .trust-item {
    min-width: 0;
    flex: 1;
  }
}

/* Promise — one job */
.promise {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(249, 115, 22, 0.12), transparent 45%),
    linear-gradient(180deg, #fff, var(--paper));
  border-block: 1px solid var(--line);
}

.promise-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.promise-list {
  display: grid;
  gap: 1.15rem;
}

.promise-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
}

.promise-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.9rem;
  background: rgba(249, 115, 22, 0.1);
  color: var(--teal);
  display: grid;
  place-items: center;
}

.promise-item h3 {
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 2.2vw, 1.35rem);
  font-weight: 700;
  margin-bottom: 0.35rem;
  line-height: 1.4;
  color: var(--ink);
}

.promise-item p {
  font-size: 0.88rem;
  color: var(--mist);
  font-family: var(--font-body);
  line-height: 1.7;
}

.promise-visual {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.promise-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.promise-badge {
  position: absolute;
  inset-inline-start: 1.25rem;
  bottom: 1.25rem;
  background: rgba(12, 26, 23, 0.78);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 0.9rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.promise-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--foam);
  line-height: 1;
}

.promise-badge span {
  font-size: 0.78rem;
  opacity: 0.75;
}

@media (max-width: 800px) {
  .promise-grid {
    grid-template-columns: 1fr;
  }
}

/* Filters */
.filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.45rem;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}

.filters::-webkit-scrollbar {
  display: none;
}

.ftab {
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 750;
  color: var(--mist);
  border: 1px solid transparent;
  transition: 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.ftab:hover {
  color: var(--ink);
  background: rgba(249, 115, 22, 0.08);
}

.ftab.on {
  background: var(--ink);
  color: #fff;
}

/* Listing rails */
.tsec {
  margin-bottom: 2.5rem;
}

.cbh {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.cbi {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.85rem;
  background: rgba(249, 115, 22, 0.1);
  color: var(--teal);
  display: grid;
  place-items: center;
}

.cbt {
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 800;
}

.thdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.ttit {
  font-size: 1.15rem;
  font-weight: 800;
}

.tsub {
  font-size: 0.78rem;
  color: var(--mist);
  margin-top: 0.15rem;
}

.tier-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  display: inline-block;
}

.tier-luxury { background: var(--gold); }
.tier-mid { background: #0ea5e9; }
.tier-economic { background: var(--ok); }

.rnav {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: 0.2s;
}

.rnav:hover {
  border-color: var(--sea);
  color: var(--teal);
}

.rtrack {
  display: flex;
  gap: 1.05rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 1.1rem;
  scrollbar-width: none;
}

.rtrack::-webkit-scrollbar {
  display: none;
}

.rcard {
  flex: 0 0 auto;
  width: min(340px, 84vw);
  scroll-snap-align: start;
  background: #fff;
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}

@media (min-width: 640px) {
  .rcard { width: 360px; }
}

@media (min-width: 1024px) {
  .rcard { width: 380px; }
}

.rcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.rcard .imgw {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.rcard .imgw img:not(.photo-wm) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.rcard:hover .imgw img:not(.photo-wm) {
  transform: scale(1.07);
}

.badge-cat {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 0.28rem 0.65rem;
  border-radius: 0.65rem;
  font-size: 0.7rem;
  font-weight: 800;
}

.badge-inst {
  position: absolute;
  bottom: 2.6rem;
  right: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  background: linear-gradient(145deg, var(--sea), var(--teal));
  color: #fff;
  padding: 0.22rem 0.55rem;
  border-radius: 0.55rem;
  font-size: 0.65rem;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(234, 88, 12, 0.35);
  z-index: 2;
}

.badge-rate {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 0.28rem 0.55rem;
  border-radius: 0.65rem;
  font-size: 0.7rem;
  font-weight: 800;
  color: #fcd34d;
}

.badge-rate span {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.badge-photos {
  position: absolute;
  top: 2.9rem;
  left: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  background: rgba(0, 0, 0, 0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 0.24rem 0.52rem;
  border-radius: 0.62rem;
  font-size: 0.68rem;
  font-weight: 750;
}

.loc-fade {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  padding: 0.75rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.rcard-body {
  padding: 1rem;
}

.rcard-body h3 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rcard-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.price-from {
  font-size: 0.68rem;
  color: var(--mist);
}

.price-val {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--teal);
}

.price-val small {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--mist);
}

.go-pill {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.1);
  color: var(--teal);
  display: grid;
  place-items: center;
}

/* Banners */
.ban-grid {
  display: grid;
  grid-template-columns: 1.65fr 1fr;
  gap: 1rem;
}

@media (max-width: 900px) {
  .ban-grid { grid-template-columns: 1fr; }
  .ad-banners { grid-template-columns: 1fr; }
}

.banwrap {
  position: relative;
  overflow: hidden;
  border-radius: 0.9rem;
  min-height: 140px;
}

@media (min-width: 768px) {
  .banwrap { min-height: 160px; }
}

.bantrack {
  display: flex;
  transition: transform 0.55s var(--ease);
  direction: ltr;
  height: 100%;
}

.banslide {
  flex: 0 0 100%;
  position: relative;
  min-height: 140px;
}

@media (min-width: 768px) {
  .banslide { min-height: 160px; }
}

.banslide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banov {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(12, 26, 23, 0.82), rgba(12, 26, 23, 0.15) 70%);
  padding: 0.75rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 1;
}

.banov .tag {
  font-size: 0.64rem;
  font-weight: 800;
  color: var(--foam);
  margin-bottom: 0.2rem;
}

.banov h3 {
  color: #fff;
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  font-weight: 800;
  margin-bottom: 0.15rem;
  max-width: 22ch;
}

.banov p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
  margin-bottom: 0.45rem;
  max-width: 40ch;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 640px) {
  .banwrap,
  .banslide {
    min-height: 128px;
  }

  .banov {
    background: linear-gradient(180deg, rgba(12, 26, 23, 0.2), rgba(12, 26, 23, 0.92) 55%);
  }

  .banov h3,
  .banov p {
    max-width: none;
  }

  .banov .bancta {
    width: 100%;
    justify-content: center;
  }
}

.bancta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: #fff;
  color: var(--teal);
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.65rem 1.1rem;
  border-radius: 0.85rem;
  width: fit-content;
  transition: transform 0.2s;
}

.bancta:hover {
  transform: translateY(-2px);
}

.bandots {
  position: absolute;
  bottom: 1rem;
  left: 1.2rem;
  display: flex;
  gap: 0.4rem;
  z-index: 2;
  direction: ltr;
}

.bandot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  padding: 0;
  transition: 0.25s;
}

.bandot.on {
  background: #fff;
  width: 20px;
  border-radius: 4px;
}

.bannav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  place-items: center;
  z-index: 2;
  color: var(--ink);
  transition: 0.2s;
}

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

.bannav.pv { right: 0.85rem; }
.bannav.nx { left: 0.85rem; }

.ban-side {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ban-tile {
  position: relative;
  flex: 1;
  min-height: 88px;
  border-radius: 0.85rem;
  overflow: hidden;
  cursor: pointer;
}

.ban-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.ban-tile:hover img {
  transform: scale(1.06);
}

.ban-tile .ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 26, 23, 0.78), rgba(12, 26, 23, 0.1));
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.ban-tile .ov span {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--foam);
  margin-bottom: 0.25rem;
}

.ban-tile h4 {
  font-weight: 800;
  font-size: 1.05rem;
}

@media (max-width: 900px) {
  .ban-side {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .ban-tile { min-height: 88px; }
}

@media (max-width: 640px) {
  .bannav { display: none; }
  .ban-side { gap: 0.65rem; }
  .ban-tile { min-height: 76px; }
}

/* Map */
.map-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0.15rem 0 0.85rem;
}

.map-toolbar-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.map-toolbar-meta strong {
  font-size: 0.88rem;
  font-weight: 850;
  color: #0f172a;
}

.map-toolbar-meta span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748b;
}

.map-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
}

.map-chip {
  border: 1px solid rgba(15, 23, 42, 0.1);
  background: #fff;
  color: #334155;
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  font-size: 0.74rem;
  font-weight: 780;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: all 0.2s ease;
}

.map-chip:hover {
  border-color: rgba(249, 115, 22, 0.4);
  color: #9a3412;
}

.map-chip.on {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #f97316, #ea580c);
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.22);
}

.map-chip-quiet {
  background: #f8fafc;
}

.map-wrap {
  position: relative;
  contain: layout;
  overflow: visible;
}

.map-search {
  display: flex;
  align-items: stretch;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: 0.85rem;
  background: linear-gradient(180deg, #fff, #f8fafc);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 1.2rem;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  padding: 0.3rem;
}

.map-search .field {
  flex: 1;
  min-width: 0;
  min-height: 3rem;
  border: 1px solid transparent;
  border-radius: 1rem;
  background: #fff;
  box-shadow: none;
}

.map-search .field:focus {
  border-color: rgba(249, 115, 22, 0.45);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.12);
}

.map-search .btn {
  flex-shrink: 0;
  margin: 0;
  border-radius: 0.95rem;
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.25);
}

.map-suggest-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
}

.map-suggest {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  left: 0;
  z-index: 30;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  box-shadow: 0 14px 32px rgba(17, 17, 17, 0.12);
  max-height: min(240px, 40vh);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.map-suggest[hidden] {
  display: none !important;
}

.map-suggest-item {
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.6rem;
  text-align: right;
  padding: 0.7rem 0.85rem;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.map-suggest-item strong {
  font-size: 0.88rem;
}

.map-suggest-item span {
  font-size: 0.72rem;
  color: var(--mist);
  font-weight: 650;
}

.map-suggest-item:hover,
.map-suggest-item:focus {
  background: rgba(249, 115, 22, 0.08);
}

.host-map-search {
  margin-bottom: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.host-map-search .field {
  min-height: 2.9rem;
  border: 1.5px solid var(--line);
  border-radius: 1rem;
  background: #fff;
}

.host-map-search .map-suggest-wrap {
  flex: 1;
  min-width: 0;
}

.host-map-search .field:focus {
  border-color: var(--sea);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.12);
}

.host-map-search .btn {
  margin: 0;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.22);
}

.map-canvas {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 12px 36px rgba(17, 17, 17, 0.07);
  background:
    radial-gradient(1200px 280px at 80% -10%, rgba(249, 115, 22, 0.08), transparent 55%),
    linear-gradient(180deg, #eef3f6 0%, #e4ebf0 100%);
}

#map {
  height: clamp(340px, 58vh, 560px);
  z-index: 1;
  overflow: hidden;
  border-radius: 1.5rem;
  background: #e7eef3;
}

.leaflet-container {
  background: #e7eef3;
  font: inherit;
}

.leaflet-tile-pane,
.hs-map-tiles {
  filter: saturate(1.08) contrast(1.04) brightness(1.01);
}

.leaflet-tile {
  image-rendering: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.map-status {
  position: absolute;
  z-index: 5;
  inset: 0;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 1.2rem;
  text-align: center;
  font-size: 0.86rem;
  font-weight: 750;
  color: #475569;
  background:
    linear-gradient(180deg, rgba(238, 243, 246, 0.92), rgba(228, 235, 240, 0.92));
  pointer-events: none;
}

.map-status[hidden] {
  display: none !important;
}

.map-status.is-error {
  color: #9a3412;
}

.map-empty {
  position: absolute;
  z-index: 6;
  top: 0.85rem;
  left: 0.85rem;
  right: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(253, 186, 116, 0.55);
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.06);
  text-align: center;
  pointer-events: none;
}

.map-empty[hidden] {
  display: none !important;
}

.map-empty strong {
  font-size: 0.88rem;
  font-weight: 800;
  color: #9a3412;
}

.map-empty p {
  margin: 0;
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 650;
}

.map-float-legend {
  position: absolute;
  z-index: 4;
  right: 0.75rem;
  bottom: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 14px rgba(17, 17, 17, 0.06);
  font-size: 0.68rem;
  color: #475569;
  font-weight: 700;
}

.map-legend-pin {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 40%, #fff 0 28%, #f97316 29% 100%);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.18);
  flex-shrink: 0;
}

.map-legend {
  display: none;
}

.map-legend-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.22);
  border: 1.5px solid #f97316;
  flex-shrink: 0;
}

.popular-wrap {
  margin-top: 0.85rem;
}

.popular-grid {
  display: flex;
  gap: 0.7rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0.15rem 0.1rem 0.45rem;
}

.popular-grid::-webkit-scrollbar {
  display: none;
}

.popular-tile {
  position: relative;
  flex: 0 0 148px;
  width: 148px;
  height: 196px;
  border-radius: 1.15rem;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  isolation: isolate;
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.1);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
  cursor: pointer;
}

.popular-tile:hover {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.14);
}

.popular-tile img:not(.photo-wm) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.popular-tile:hover img:not(.photo-wm) {
  transform: scale(1.06);
}

.popular-tile.is-empty {
  cursor: default;
  filter: saturate(0.55) brightness(0.92);
  box-shadow: 0 6px 16px rgba(17, 17, 17, 0.08);
}

.popular-tile.is-empty:hover {
  transform: none;
  box-shadow: 0 6px 16px rgba(17, 17, 17, 0.08);
}

.popular-tile.is-empty:hover img:not(.photo-wm) {
  transform: none;
}

.popular-tile-ov {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.1rem 0.7rem 0.7rem;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.88) 8%, rgba(8, 8, 8, 0.35) 70%, transparent);
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  z-index: 2;
}

.popular-tile-type {
  align-self: flex-start;
  font-size: 0.58rem;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0.04em;
  color: #111;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 0.12rem 0.45rem;
  margin-bottom: 0.2rem;
}

.popular-tile-ov strong {
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.25;
}

.popular-tile-ov small {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 650;
}

.popular-tile.is-empty .popular-tile-ov small {
  color: #fdba74;
}

#dest-tabs .ftab[hidden],
#dest-tabs .ftab.is-off {
  display: none !important;
}

.ad-strip-sec {
  padding: 1.25rem 0 1.15rem;
}

.ad-strip-sec[hidden],
.hero-popular[hidden],
#offers[hidden],
#attractions[hidden],
#articles[hidden],
#dest-related[hidden] {
  display: none !important;
  padding: 0 !important;
  margin: 0 !important;
  min-height: 0 !important;
}

.ad-banners {
  margin: 0.15rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.ad-banners[hidden] {
  display: none !important;
  margin: 0 !important;
}

.ad-banners-compact,
.ad-banners-map {
  grid-template-columns: 1fr;
}

.ad-banners-map {
  margin: 0 0 0.85rem;
}

.ad-banner-card {
  position: relative;
  display: block;
  height: clamp(150px, 32vw, 240px);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #111;
}

.ad-banner-card .ad-banner-ov,
.ad-banner-card .bancta,
.ad-banners button,
.ad-banners svg,
.ad-banners i {
  display: none !important;
}

.ad-banner-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.55s ease;
}

.ad-banner-card img.on {
  opacity: 1;
}

@media (max-width: 640px) {
  .ad-banner-card {
    height: clamp(120px, 42vw, 180px);
    border-radius: 0.75rem;
  }
}

.hs-pin,
.hs-villa-pin {
  background: none !important;
  border: 0 !important;
  overflow: visible !important;
}

.villa-pin {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.32rem;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  padding: 4px 10px 4px 4px;
  box-shadow: 0 4px 14px rgba(17, 17, 17, 0.1);
  color: #111;
  font-family: inherit;
  cursor: pointer;
  filter: none;
  isolation: isolate;
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s, border-color 0.18s;
}

.villa-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  background: #fff;
  transform: rotate(45deg);
  border-radius: 1px;
  box-shadow: none;
  filter: none;
  z-index: 0;
}

.villa-pin img,
.villa-pin-ico,
.villa-pin-dot,
.villa-pin-price,
.villa-pin-flag {
  position: relative;
  z-index: 1;
}

.villa-pin:hover,
.villa-pin.is-open {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.14);
  border-color: #fdba74;
}

.villa-pin.is-open {
  background: #111;
  border-color: #111;
}

.villa-pin.is-open::after {
  background: #111;
}

.villa-pin.is-open .villa-pin-price {
  color: #fff;
}

.villa-pin.is-open .villa-pin-flag {
  color: #fed7aa;
}

.villa-pin img,
.villa-pin-ico {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(145deg, #f97316, #ea580c);
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}

.villa-pin-price {
  font-size: 0.7rem;
  font-weight: 850;
  color: #111;
  white-space: nowrap;
  padding-left: 0.08rem;
  letter-spacing: -0.01em;
}

.villa-pin-flag {
  font-size: 0.62rem;
  font-weight: 820;
  color: #c2410c;
  background: rgba(249, 115, 22, 0.12);
  border-radius: 999px;
  padding: 0.08rem 0.35rem;
  line-height: 1.4;
}

.villa-pop {
  direction: rtl;
  min-width: 196px;
  max-width: 230px;
}

.villa-pop .vp-photo {
  position: relative;
  border-radius: 0.85rem;
  overflow: hidden;
  margin-bottom: 0.55rem;
  background: #f4f4f5;
}

.villa-pop img {
  width: 100%;
  height: 118px;
  object-fit: cover;
  display: block;
}

.villa-pop .photo-wm {
  width: 30px;
  height: 30px;
  bottom: 6px;
  right: 6px;
  left: auto;
  opacity: 0.16;
}

.villa-pop strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 0.15rem;
}

.villa-pop .vp-loc {
  display: block;
  color: #64748b;
  font-size: 0.7rem;
  margin-bottom: 0.35rem;
}

.villa-pop .vp-price {
  display: block;
  color: #ea580c;
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 0.55rem;
}

.villa-pop button {
  width: 100%;
  border: 0;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #f97316, #ea580c);
  color: #fff;
  font: inherit;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.5rem 0.7rem;
  cursor: pointer;
}

.leaflet-control-zoom {
  border: 0 !important;
  box-shadow: 0 6px 18px rgba(17, 17, 17, 0.08) !important;
  overflow: hidden;
  border-radius: 0.85rem !important;
}

.leaflet-control-zoom a {
  width: 34px !important;
  height: 34px !important;
  line-height: 34px !important;
  color: #111 !important;
  border-bottom-color: var(--line) !important;
}

.leaflet-div-icon.hs-villa-pin,
.leaflet-marker-icon.hs-villa-pin {
  background: transparent !important;
  border: 0 !important;
  overflow: visible !important;
  display: flex !important;
  align-items: flex-end;
  justify-content: center;
}

.leaflet-popup-content {
  margin: 10px 12px !important;
}

.leaflet-container a.leaflet-popup-close-button {
  top: 8px !important;
  left: 8px !important;
  right: auto !important;
}

.host-map-shell {
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  overflow: visible;
  background: #fff;
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.05);
}

.host-map-shell .host-map-search {
  padding: 0.7rem 0.75rem 0.6rem;
  margin: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  flex-direction: row;
}

.host-map-hint {
  margin: 0;
  padding: 0.65rem 0.85rem 0.75rem;
  font-size: 0.78rem;
  color: var(--mist);
  font-weight: 650;
  line-height: 1.6;
  background: #fafafa;
}

.host-map-hint.is-ok {
  color: #166534;
  background: #f0fdf4;
}

.host-map {
  height: min(48vh, 340px);
  min-height: 240px;
  width: 100%;
  border-radius: 0 0 1.2rem 1.2rem;
  border: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background:
    linear-gradient(180deg, #eef3f6 0%, #dbe4ea 100%);
}

.host-map.leaflet-container,
#host-map.leaflet-container {
  height: min(48vh, 340px) !important;
  min-height: 240px !important;
  width: 100% !important;
  font: inherit;
}

.host-map .leaflet-control-zoom a {
  width: 30px !important;
  height: 30px !important;
  line-height: 30px !important;
  font-size: 16px !important;
}

.leaflet-popup-content-wrapper {
  border-radius: 1.05rem !important;
  padding: 0.2rem;
  font-family: var(--font-body) !important;
  direction: rtl;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.1) !important;
}

.leaflet-popup-tip-container {
  overflow: hidden !important;
  margin-top: -1px !important;
}

.leaflet-popup-tip {
  box-shadow: none !important;
  filter: none !important;
  background: #fff;
  width: 12px !important;
  height: 12px !important;
}

.leaflet-popup {
  filter: none !important;
}

/* Attractions — editorial rows, not card grids of badges */
.att-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .att-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .att-grid { grid-template-columns: 1fr; }
}

.acard {
  position: relative;
  border-radius: 1.35rem;
  overflow: hidden;
  height: 250px;
  cursor: pointer;
}

.acard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s;
}

.acard:hover img {
  transform: scale(1.06);
}

.aov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(12, 26, 23, 0.88), transparent 55%);
  padding: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.abdg {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 5px;
  background: rgba(249, 115, 22, 0.92);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 750;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
}

.aov h3 {
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.adsc {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.4s;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.acard:hover .adsc {
  max-height: 80px;
  opacity: 1;
}

/* Host */
.host-cta {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  isolation: isolate;
  padding: clamp(1.75rem, 4vw, 3.5rem);
}

.host-cta::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.45), transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.host-cta > * {
  position: relative;
  z-index: 1;
}

.host-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 860px) {
  .host-grid { grid-template-columns: 1fr; }
}

.host-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin: 0.5rem 0 1rem;
}

.host-cta p {
  color: rgba(255, 255, 255, 0.62);
  max-width: 36ch;
  margin-bottom: 1.5rem;
}

.host-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.host-perks {
  list-style: none;
  margin: 1.15rem 0 0;
  display: grid;
  gap: 0.45rem;
}

.host-perks li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.78);
}

.host-perks i {
  color: var(--foam);
  flex-shrink: 0;
}

.host-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.host-step {
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
}

.host-step .ic {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.75rem;
  background: rgba(249, 115, 22, 0.15);
  color: var(--foam);
  display: grid;
  place-items: center;
  margin-bottom: 0.65rem;
}

.host-step h3 {
  font-size: 0.88rem;
  font-weight: 800;
  margin-bottom: 0.2rem;
}

.host-step p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.48);
  margin: 0;
}

/* Articles */
.articles {
  background: linear-gradient(180deg, transparent, rgba(249, 115, 22, 0.04));
}

.art-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

@media (max-width: 900px) {
  .art-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .art-grid { grid-template-columns: 1fr; }
}

.artc {
  background: #fff;
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 0.35s, box-shadow 0.35s;
}

.artc:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.artc img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.5s;
}

.artc:hover img {
  transform: scale(1.04);
}

.artc-body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.art-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.art-cat {
  font-size: 0.68rem;
  font-weight: 800;
  background: rgba(249, 115, 22, 0.1);
  color: var(--teal);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.art-date {
  font-size: 0.72rem;
  color: var(--mist);
}

.artc h3 {
  font-weight: 800;
  margin-bottom: 0.4rem;
  line-height: 1.45;
}

.artc p {
  font-size: 0.85rem;
  color: var(--mist);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

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

@media (max-width: 560px) {
  .contact-grid { grid-template-columns: 1fr; }
  .host-access-actions { flex-direction: column; }
}

.ccard {
  background: #fff;
  border-radius: 1.35rem;
  padding: 1.5rem 1.25rem;
  border: 1px solid var(--line);
  text-align: center;
  transition: border-color 0.25s, transform 0.25s;
}

.ccard-btn {
  width: 100%;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.ccard:hover {
  border-color: rgba(249, 115, 22, 0.35);
  transform: translateY(-2px);
}

.ccard .ic {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 1rem;
  background: rgba(249, 115, 22, 0.1);
  color: var(--teal);
  display: grid;
  place-items: center;
  margin: 0 auto 0.75rem;
  position: relative;
}

.ccard .ic.live {
  background: rgba(22, 163, 74, 0.12);
  color: var(--ok);
}

.ccard h3 {
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.ccard a,
.ccard p {
  color: var(--teal);
  font-weight: 750;
  font-size: 0.92rem;
}

.ccard p {
  color: var(--mist);
  font-weight: 500;
}

.live-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  animation: livePulse 1.6s infinite;
  display: inline-block;
}

.live-dot.inline {
  margin-inline-end: 0.35rem;
  vertical-align: middle;
}

.ccard .ic .live-dot {
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.contact-form {
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid var(--line);
  padding: clamp(1.25rem, 3vw, 2rem);
  max-width: 640px;
  margin-inline: auto;
  display: grid;
  gap: 0.9rem;
  box-shadow: 0 10px 30px rgba(12, 26, 23, 0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.host-geo-row {
  align-items: start;
}

.host-geo-smart .host-geo-row {
  margin: 0;
}

.geo-pick {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
}

.host-geo-row select.field,
.host-geo-row .geo-combo-btn {
  appearance: auto;
  min-height: 2.9rem;
}

.host-geo-row .geo-combo-input {
  appearance: none;
  min-height: 2.9rem;
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr !important; }
  .host-geo-row { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 380px) {
  .host-geo-row { grid-template-columns: 1fr !important; }
}

/* Download */
.download {
  padding: 4.5rem 0;
  background: linear-gradient(160deg, #111111, #1a1a1a);
  text-align: center;
  color: #fff;
}

.download h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.download > .wrap > p {
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2rem;
}

.store-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 720px;
  margin-inline: auto;
}

.store-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 640px;
}

.store-grid-1 {
  grid-template-columns: 1fr;
  max-width: 420px;
}

@media (max-width: 700px) {
  .store-grid,
  .store-grid-2,
  .store-grid-1 {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

.dcard {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.35rem;
  padding: 1.5rem;
  transition: 0.3s;
  text-align: center;
}

.dcard:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(249, 115, 22, 0.3);
}

.dcard .ic {
  width: 2.8rem;
  height: 2.8rem;
  margin: 0 auto 0.75rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: var(--foam);
  display: grid;
  place-items: center;
}

.dcard h3 {
  margin-bottom: 0.35rem;
  font-weight: 800;
}

.dcard-sub {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  margin-bottom: 0.85rem;
}

.store-btns {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.store-badge {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #111;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.store-badge .store-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.store-badge-direct,
.store-badge-pwa {
  background: linear-gradient(145deg, var(--teal), var(--sea));
  color: #fff;
  box-shadow: none;
}

.store-badge-ios {
  background: linear-gradient(145deg, #374151, #111827);
  color: #fff;
  box-shadow: none;
}

.store-badge-android {
  background: linear-gradient(145deg, #16a34a, #15803d);
  color: #fff;
  box-shadow: none;
}

.sbtn-ios-guide:hover {
  border-color: rgba(156, 163, 175, 0.45);
  background: rgba(55, 65, 81, 0.35);
}

.sbtn-android-guide:hover {
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(22, 163, 74, 0.2);
}

/* PWA install guide modal */
.pwa-guide-box {
  max-width: 440px;
}

.pwa-guide-body {
  padding-top: 1.1rem;
}

.pwa-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin-bottom: 1rem;
  padding: 0.3rem;
  background: #f3f4f6;
  border-radius: 0.9rem;
}

.pwa-tab {
  border: 0;
  background: transparent;
  border-radius: 0.7rem;
  padding: 0.65rem 0.5rem;
  font-weight: 800;
  font-size: 0.9rem;
  color: #6b7280;
  cursor: pointer;
  transition: 0.2s;
}

.pwa-tab.on {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.pwa-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: right;
}

.pwa-steps li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.pwa-steps li > span {
  flex-shrink: 0;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(249, 115, 22, 0.12);
  color: #ea580c;
  font-weight: 900;
  font-size: 0.8rem;
}

.pwa-steps strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}

.pwa-steps p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--mist);
  line-height: 1.6;
}

#pwa-install-btn.ready .store-badge-pwa,
#pwa-guide-install-btn.ready {
  box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.35);
}

.store-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: right;
  min-width: 0;
}

.store-meta small {
  display: block;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.2;
}

.store-meta strong {
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.sbtn-store,
.sbtn-pwa {
  text-align: right;
  justify-content: flex-start !important;
  gap: 0.85rem;
  padding: 0.65rem 0.85rem;
  min-height: 3.85rem;
}

.sbtn-bazaar:hover {
  border-color: rgba(198, 255, 0, 0.35);
  background: rgba(11, 138, 58, 0.18);
}

.sbtn-myket:hover {
  border-color: rgba(0, 212, 255, 0.35);
  background: rgba(0, 120, 160, 0.2);
}

.dcard-perks {
  list-style: none;
  margin: 0.95rem 0 0;
  padding: 0;
  text-align: right;
}

.dcard-perks li {
  position: relative;
  padding: 0.28rem 1.1rem 0.28rem 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.dcard-perks li::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0.7em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: #fdba74;
}

.download-note {
  margin-top: 1.35rem !important;
  margin-bottom: 0 !important;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.42) !important;
}

.sbtn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.7rem 1rem;
  border-radius: 0.9rem;
  color: #fff;
  transition: 0.2s;
  width: 100%;
  justify-content: center;
}

.sbtn:hover {
  background: rgba(0, 0, 0, 0.5);
}

.sbtn small {
  display: block;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
}

.sbtn strong {
  font-size: 0.85rem;
}

/* Coming soon */
.btn-soon {
  opacity: 0.92;
  cursor: pointer;
  filter: none;
}

.soon-note {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-top: 0.75rem;
  font-size: 0.72rem;
  color: var(--mist);
  line-height: 1.6;
}

.soon-panel {
  position: relative;
  background: var(--paper);
  border: 1px dashed rgba(234, 88, 12, 0.35);
  border-radius: 1rem;
  padding: 1rem 0.9rem 0.9rem;
}

.soon-pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #fff7ed;
  color: #c2410c;
  margin-bottom: 0.55rem;
}

/* Footer */
.footer {
  background: #0a0a0a;
  color: rgba(255, 255, 255, 0.45);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer h4 {
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 0.85rem;
}

.footer ul {
  display: grid;
  gap: 0.5rem;
  font-size: 0.88rem;
}

.footer a:hover {
  color: var(--foam);
}

.footer-copy {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.25);
}

/* =========================================================
   OVERLAYS / MODALS
   ========================================================= */
.ov {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}

.ov.on {
  opacity: 1;
  pointer-events: all;
}

/* Mobile drawer */
.mnav {
  background: rgba(12, 26, 23, 0.45);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 70;
}

.mpan {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(290px, 86vw);
  background: #fff;
  z-index: 71;
  transform: translateX(100%);
  transition: transform 0.3s var(--ease);
  padding: calc(1.4rem + var(--sat-top)) 1.15rem calc(1.4rem + var(--sat-bottom));
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
}

.mnav.on .mpan {
  transform: none;
}

.mlnk {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  border-radius: 1rem;
  font-weight: 650;
  color: #444;
  margin-bottom: 0.15rem;
}

.mlnk:hover {
  background: rgba(249, 115, 22, 0.08);
  color: var(--teal);
}

/* Auth */
.aovl {
  background: rgba(12, 26, 23, 0.62);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.abox {
  background: #fff;
  border-radius: 1.75rem;
  width: 100%;
  max-width: 440px;
  max-height: min(94vh, 820px);
  max-height: min(94svh, 820px);
  overflow: hidden;
  overflow-y: auto;
  transform: translateY(18px) scale(0.97);
  transition: transform 0.4s var(--ease);
  position: relative;
}

.aovl.on .abox {
  transform: none;
}

.auth-top {
  background: linear-gradient(145deg, #111111, #1f1f1f);
  color: #fff;
  padding: calc(1.5rem + var(--sat-top)) 1.75rem 1.4rem;
  position: relative;
  overflow: hidden;
}

.auth-top::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.22);
  top: -60px;
  left: -40px;
  filter: blur(30px);
}

.auth-body {
  padding: 1.6rem 1.75rem 1.75rem;
}

.pwrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 1rem;
  padding: 0 1rem;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.pwrap:focus-within {
  border-color: var(--sea);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
}

.pwrap input {
  border: 0;
  outline: 0;
  background: transparent;
  flex: 1;
  min-width: 0;
  padding: 1rem 0;
  font-weight: 800;
  font-size: 1.05rem;
  line-height: 1.2;
  direction: ltr;
  text-align: left;
  letter-spacing: 0.06em;
  caret-color: var(--sea);
}

.auth-ref-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  margin-top: 0.75rem;
  background: transparent;
  border: 1.5px dashed var(--line);
  border-radius: 1rem;
  padding: 0.7rem 1rem;
  font-weight: 800;
  font-size: 0.875rem;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.auth-ref-toggle:hover,
.auth-ref-toggle.on {
  border-style: solid;
  border-color: var(--sea);
  color: var(--sea);
  background: rgba(249, 115, 22, 0.06);
}

.auth-ref-panel {
  margin-top: 0.6rem;
}

#refin {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.98rem;
}

.auth-ref-chip {
  text-align: center;
  font-size: 0.78rem;
  color: var(--mist);
  margin: -0.35rem 0 0.9rem;
  line-height: 1.6;
}

.auth-ref-chip b {
  color: var(--ink);
  letter-spacing: 0.08em;
}

.oinputs {
  display: flex;
  gap: 0.55rem;
  justify-content: center;
  direction: ltr;
}

.otp-field-wrap {
  position: relative;
  overflow: hidden;
}

.otp-sms-auto {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  color: transparent;
  caret-color: transparent;
  -webkit-text-fill-color: transparent;
  pointer-events: none;
}

.otp-sms-auto:focus {
  outline: none;
}

.oinputs input {
  width: 42px;
  height: 52px;
  border: 1.5px solid var(--line);
  border-radius: 0.95rem;
  text-align: center;
  font-weight: 900;
  font-size: 1.15rem;
  line-height: 52px;
  outline: 0;
  background: var(--paper);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  caret-color: transparent;
  overflow: hidden;
}

.oinputs input.on,
.oinputs input:focus {
  border-color: var(--sea);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.1);
  background: #fff;
}

.olod .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sea);
  display: inline-block;
  margin: 0 3px;
  animation: pulse-dot 1.3s infinite ease-in-out both;
}

.olod .dot:nth-child(1) { animation-delay: -0.32s; }
.olod .dot:nth-child(2) { animation-delay: -0.16s; }

.err {
  color: var(--danger);
  font-size: 0.75rem;
  margin-top: 0.35rem;
}

.err.hidden,
.hidden {
  display: none !important;
}

/* Booking */
.bovl {
  background: rgba(12, 26, 23, 0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 150;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bbox {
  background: #fff;
  border-radius: 1.6rem;
  width: 96%;
  max-width: 1000px;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  transform: scale(0.96);
  opacity: 0.92;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.bovl.on .bbox {
  transform: none;
  opacity: 1;
}

@media (max-width: 768px) {
  .bovl {
    align-items: flex-end;
  }

  .bbox {
    flex-direction: column;
    max-height: min(96vh, 980px);
    max-height: min(96svh, 980px);
    border-radius: 1.4rem 1.4rem 0 0;
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
}

.gmain {
  position: relative;
  width: 54%;
  height: 84vh;
  background: #111;
  overflow: hidden;
}

@media (max-width: 768px) {
  .gmain {
    width: 100%;
    height: 36vh;
    height: 36svh;
    min-height: 200px;
    flex-shrink: 0;
  }
}

.gmain img#gimg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.25s ease;
  cursor: zoom-in;
}

.gmain img#gimg.ready {
  opacity: 1;
}

.gthumbs {
  position: absolute;
  bottom: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.35rem;
  z-index: 10;
  max-width: calc(100% - 1.5rem);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 2px;
}

.gthumbs::-webkit-scrollbar {
  display: none;
}

.gth {
  flex-shrink: 0;
}

.gth {
  width: 52px;
  height: 38px;
  border-radius: 0.45rem;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.55;
  transition: 0.2s;
}

.gth.on {
  border-color: var(--sea);
  opacity: 1;
}

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

.gnav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  z-index: 10;
}

.gnav.pv { right: 0.8rem; }
.gnav.nx { left: 0.8rem; }

.gcnt {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 750;
  padding: 3px 10px;
  border-radius: 999px;
  z-index: 10;
}

.gfav {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  z-index: 10;
  color: #999;
}

.gzoom {
  position: absolute;
  top: 0.8rem;
  right: 3.55rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  z-index: 10;
  color: #374151;
}

.gfav.lk {
  color: #ef4444;
}

.bk-rate-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}

.bk-share-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.bk-share-actions .btn {
  min-height: 44px;
  width: 100%;
  justify-content: center;
  font-size: 0.78rem;
  padding: 0.55rem 0.55rem;
}

.bcont {
  width: 46%;
  padding: 1.5rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .bcont {
    width: 100%;
    flex: 1;
    padding: 1.15rem;
  }
}

.stind {
  display: flex;
  align-items: center;
  margin-bottom: 1.3rem;
}

.sdot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
}

.sdot.act {
  background: var(--sea);
  color: #fff;
}

.sdot.dn {
  background: var(--ok);
  color: #fff;
}

.sdot.pn {
  background: #ececec;
  color: var(--mist);
}

.sln {
  flex: 1;
  height: 2px;
  background: #ececec;
  position: relative;
  overflow: hidden;
}

.sln .fl {
  position: absolute;
  inset: 0;
  background: var(--sea);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s;
}

.sln.fd .fl {
  transform: scaleX(1);
}

.bstp {
  display: none;
  animation: fade-up 0.3s ease;
}

.bstp.on {
  display: block;
}

.calgrid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  text-align: center;
}

.cday {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.8rem;
  transition: 0.15s;
}

.cday:hover:not(.e):not(.d) {
  background: rgba(249, 115, 22, 0.12);
  color: var(--teal);
}

.cday.sel {
  background: var(--sea);
  color: #fff;
}

.cday.tod {
  border: 2px solid var(--sea);
  font-weight: 800;
}

.cday.d {
  color: #ddd;
  cursor: not-allowed;
}

.cday.rng {
  background: rgba(249, 115, 22, 0.1);
}

.date-pick {
  background: var(--paper);
  border-radius: 0.9rem;
  padding: 0.75rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: 0.2s;
}

.date-pick:hover {
  border-color: rgba(249, 115, 22, 0.3);
}

.gctr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}

.gctr:last-child {
  border-bottom: 0;
}

.cbnt {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  background: #fff;
  transition: 0.2s;
}

.cbnt:hover {
  border-color: var(--sea);
  color: var(--teal);
}

.prrow {
  display: flex;
  justify-content: space-between;
  padding: 0.45rem 0;
  font-size: 0.85rem;
}

.prrow[hidden] {
  display: none !important;
}

.prrow.tot {
  border-top: 2px solid var(--ink);
  padding-top: 0.75rem;
  margin-top: 0.35rem;
  font-weight: 900;
  font-size: 1.05rem;
}

.amch {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fff;
  border: 1.5px solid rgba(17, 17, 17, 0.18);
  padding: 7px 12px;
  border-radius: 0.7rem;
  font-size: 0.8rem;
  font-weight: 650;
  color: var(--ink);
  opacity: 1;
  filter: none;
  -webkit-filter: none;
}

.rate-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #fffbeb;
  color: #a16207;
  padding: 0.2rem 0.6rem;
  border-radius: 0.55rem;
  font-size: 0.85rem;
  font-weight: 800;
}

/* Lightbox */
.lbovl {
  background: rgba(0, 0, 0, 0.94);
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 92vw;
  max-height: 86vh;
  max-height: 86svh;
}

.lbovl img#lbimg,
.lb-frame img#lbimg {
  max-width: 92vw;
  max-height: 86vh;
  max-height: 86svh;
  object-fit: contain;
  border-radius: 0.8rem;
}

.lb-frame .photo-wm {
  width: 72px;
  height: auto;
  opacity: 0.2;
  right: 14px;
  left: auto;
  bottom: 14px;
  background: none !important;
}

.lbcl,
.lbnav {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  color: #fff;
}

.lbcl {
  top: calc(1.2rem + var(--sat-top));
  left: 1.2rem;
  width: 40px;
  height: 40px;
}

.lbnav {
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
}

.lbnav.pv { right: 1.2rem; }
.lbnav.nx { left: 1.2rem; }

/* Profile */
.povl {
  background: rgba(12, 26, 23, 0.4);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 180;
}

.ppan {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(400px, 94vw);
  background: #fff;
  z-index: 181;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow-y: auto;
  padding-top: var(--sat-top);
  padding-bottom: calc(0.75rem + var(--sat-bottom));
}

.povl.on .ppan {
  transform: none;
}

.pavt {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--sea));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
}

.pmi {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  border-radius: 1rem;
  margin: 0 0.35rem;
  transition: background 0.2s;
  position: relative;
}
.pmi-copy { flex: 1; min-width: 0; }

.pmi:hover {
  background: rgba(249, 115, 22, 0.08);
  color: var(--teal);
}

.pmi .iw {
  width: 38px;
  height: 38px;
  border-radius: 0.75rem;
  background: var(--paper);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.bhc {
  background: var(--paper);
  border-radius: 1rem;
  padding: 1rem;
  margin: 0.35rem 0.75rem;
  border: 1px solid transparent;
  cursor: pointer;
}

.bhc:hover {
  border-color: rgba(249, 115, 22, 0.3);
  background: #fff;
}

/* Host modal — centered (not bottom sheet) */
.hovl {
  background: rgba(12, 26, 23, 0.55);
  z-index: 190;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(0.5rem + var(--sat-top)) 0.5rem calc(0.5rem + var(--sat-bottom));
}

.hbox {
  background: #fff;
  border-radius: 1.5rem;
  width: 100%;
  max-width: 640px;
  max-height: min(92vh, 900px);
  max-height: min(92svh, 900px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: scale(0.97);
  opacity: 0.95;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.hovl.on .hbox {
  transform: none;
  opacity: 1;
}

.hhdr {
  padding: calc(1rem + min(var(--sat-top), 12px)) 1.3rem 0.85rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}

.host-kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--sea);
  margin: 0 0 0.15rem;
}

.hhdr h2 {
  font-size: 1.12rem;
  margin: 0;
}

.hprog {
  height: 3px;
  margin: 0 1.3rem 0.35rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.06);
  overflow: hidden;
}

.hprog i {
  display: block;
  height: 100%;
  width: 20%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ea580c, #f97316);
  transition: width 0.35s var(--ease);
}

.hstind-wrap {
  padding: 0.45rem 1.15rem 0.15rem;
}

.hbody {
  padding: 0.85rem 1.25rem 1.15rem;
  overflow-y: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
}

.hfoot {
  padding: 0.85rem 1.2rem calc(0.9rem + var(--sat-bottom));
  border-top: 1px solid var(--line);
  display: flex;
  gap: 0.65rem;
  background: #fff;
}

.hfoot .btn {
  min-height: 2.85rem;
  border-radius: 1rem;
}

.host-step-lead {
  font-size: 0.88rem;
  color: var(--mist);
  line-height: 1.7;
  margin: 0 0 0.9rem;
}

.host-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.host-stats .field {
  min-height: 3rem;
  text-align: center;
  font-weight: 800;
}

.host-desc {
  min-height: 110px;
  resize: none;
  line-height: 1.75;
}

.htype {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.htc {
  border: 1.5px solid var(--line);
  border-radius: 1.05rem;
  padding: 0.75rem 0.8rem;
  text-align: right;
  cursor: pointer;
  transition: 0.2s;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  font: inherit;
  color: inherit;
  appearance: none;
  -webkit-appearance: none;
}

.htc:hover {
  border-color: rgba(249, 115, 22, 0.35);
}

.htc.on {
  border-color: var(--sea);
  background: rgba(249, 115, 22, 0.08);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.htc .ic {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--paper);
  display: grid;
  place-items: center;
  margin: 0;
  color: #777;
  flex-shrink: 0;
}

.htc.on .ic {
  background: rgba(249, 115, 22, 0.15);
  color: var(--teal);
}

.htc span {
  min-width: 0;
}

.htc span p {
  margin: 0;
}

.htc span .text-xs {
  margin-top: 0.12rem;
}

.amgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.amgroup {
  margin-bottom: 1rem;
}

.amgroup-title {
  font-size: 0.78rem;
  font-weight: 800;
  margin: 0 0 0.45rem;
  color: var(--teal, #0f766e);
}

@media (min-width: 480px) {
  .amgrid { grid-template-columns: repeat(3, 1fr); }
}

.amchk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  border: 1.5px solid rgba(17, 17, 17, 0.18);
  border-radius: 0.85rem;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 650;
  color: var(--ink);
  background: #fff;
  opacity: 1;
  filter: none;
  -webkit-filter: none;
  transition: 0.2s;
  user-select: none;
}

.amchk.on {
  border-color: var(--sea);
  background: rgba(249, 115, 22, 0.1);
  color: #c2410c;
}

.phup {
  border: 1.5px dashed rgba(17, 17, 17, 0.14);
  border-radius: 1.2rem;
  padding: 1.55rem 1.1rem;
  text-align: center;
  cursor: pointer;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  transition: 0.2s;
}

.phup:hover {
  border-color: var(--sea);
  background: rgba(249, 115, 22, 0.05);
}

.phup-ico {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.55rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: rgba(249, 115, 22, 0.1);
  color: var(--sea);
}

.phup-ico.is-ok {
  background: rgba(22, 163, 74, 0.1);
  color: var(--ok);
}

.host-kyc-box {
  margin-top: 1rem;
  padding-top: 0.25rem;
}

.kyc-uploads {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.host-kyc-box .kyc-uploads {
  margin-top: 0.75rem;
}

.kyc-up {
  border: 1.5px dashed #c5d4cf;
  border-radius: 1rem;
  padding: 0.85rem 0.5rem;
  text-align: center;
  cursor: pointer;
  background: var(--paper);
  transition: 0.2s;
  min-height: 7.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kyc-up:hover,
.kyc-up.has-file {
  border-color: var(--sea);
  background: rgba(249, 115, 22, 0.06);
}

.kyc-up-inner {
  width: 100%;
}

.kyc-up-inner img {
  width: 100%;
  height: 5.5rem;
  object-fit: cover;
  border-radius: 0.65rem;
  display: block;
}

.kyc-status {
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  margin-bottom: 0.75rem;
}

.kyc-status.pending {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.35);
  color: #b45309;
}

.kyc-status.verified {
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.3);
  color: #15803d;
}

.kyc-status.rejected {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #b91c1c;
}

.kyc-status.none {
  background: rgba(100, 116, 139, 0.08);
  border: 1px solid var(--line);
  color: var(--ink);
}

.kyc-wait {
  text-align: center;
  padding: 0.5rem 0 0.25rem;
}

.kyc-wait-ico {
  width: 3.4rem;
  height: 3.4rem;
  margin: 0 auto 0.85rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  background: rgba(249, 115, 22, 0.12);
  color: var(--sea);
}

.kyc-name-row {
  margin: 0;
}

.phgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.phthumb {
  aspect-ratio: 1;
  border-radius: 0.75rem;
  overflow: hidden;
  position: relative;
  background: #ececec;
}

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

.phthumb .rm {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: 0;
  display: grid;
  place-items: center;
}

.hlcard {
  display: flex;
  gap: 0.75rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.75rem;
  align-items: stretch;
}

.hlcard img,
.hlcard-ph,
.hlcard-photo {
  width: 124px;
  height: 92px;
  border-radius: 0.65rem;
  object-fit: cover;
  flex-shrink: 0;
  background: #eef2f6;
}

.hlcard-photo {
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--mist);
}

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

.hlcard-photo.is-empty {
  background: #eef2f6;
}

.hlcard img.is-broken {
  opacity: 0.35;
  object-fit: contain;
}

.hlcard-ph {
  display: grid;
  place-items: center;
  color: var(--mist);
}

.hlcard-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.hlbadge {
  font-size: 0.65rem;
  font-weight: 750;
  padding: 2px 8px;
  border-radius: 999px;
  background: #fef3c7;
  color: #a16207;
}

.hl-edit {
  margin-top: 0.45rem;
  padding: 0.28rem 0.65rem;
  font-size: 0.72rem;
}

/* Bottom nav */
.bnav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(250, 250, 250, 0.94);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  padding: 0.4rem 0.4rem calc(0.4rem + env(safe-area-inset-bottom));
  grid-template-columns: repeat(5, 1fr);
}

.bnav a,
.bnav button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.25rem 0;
  color: var(--mist);
  font-size: 0.62rem;
  font-weight: 750;
}

.bnav .active {
  color: var(--teal);
}
.bnav-ico-wrap {
  position: relative;
  display: grid;
  place-items: center;
}

.bnav-plus {
  margin-top: -0.85rem;
}

.bnav-plus span {
  width: 3rem;
  height: 3rem;
  border-radius: 1.1rem;
  background: linear-gradient(145deg, var(--teal), var(--sea));
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 16px rgba(249, 115, 22, 0.22);
}

.bnav-plus small {
  color: var(--teal);
  margin-top: 0.15rem;
}

@media (max-width: 768px) {
  .bnav { display: grid; }
  body { padding-bottom: calc(74px + env(safe-area-inset-bottom, 0px)); }
  .nav {
    top: calc(0.5rem + var(--sat-top));
    right: 0.5rem;
    left: 0.5rem;
  }
  .map-search {
    flex-wrap: wrap;
  }
  .host-map-shell .host-map-search {
    flex-direction: row;
    flex-wrap: wrap;
  }
  #map { height: clamp(320px, 56vh, 460px) !important; }
  .rnav { display: none; }
  .tst {
    bottom: calc(5.25rem + env(safe-area-inset-bottom, 0px));
  }
  .download {
    padding: 3.25rem 0;
  }
  .dcard {
    padding: 1.25rem;
  }
  .section {
    padding: 3rem 0;
  }
  .wrap,
  .wrap-wide {
    width: min(1120px, calc(100% - 1.25rem));
  }
}

/* Toast */
.tst {
  position: fixed;
  bottom: calc(1.5rem + var(--sat-bottom));
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  opacity: 0;
  z-index: 300;
  transition: 0.4s var(--ease);
  pointer-events: none;
}

.tst.sh {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.tst-inner {
  background: var(--ink);
  color: #fff;
  padding: 0.9rem 1.2rem;
  border-radius: 1.15rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 260px;
}

.tst-ic {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0.75rem;
  background: rgba(5, 150, 105, 0.2);
  color: #34d399;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.tst-inner strong {
  display: block;
  font-size: 0.88rem;
}

.tst-inner p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .tst { bottom: 5.5rem; }
}

/* Booking guarantees */
.guarantee-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.guarantee-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--forest);
  background: rgba(249, 115, 22, 0.08);
  border: 1px solid rgba(249, 115, 22, 0.18);
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
}

.guarantee-row i { color: var(--sea); }

.cancel-note {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--mist);
  line-height: 1.55;
  background: var(--soft);
  border-radius: 0.75rem;
  padding: 0.65rem 0.75rem;
}

.cancel-note i {
  color: var(--sea);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.host-access-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.65rem;
}

/* Support chat FAB + panel */
.sup-fab {
  position: fixed;
  z-index: 55;
  bottom: calc(1.25rem + var(--sat-bottom));
  /* Keep away from RTL bottom-nav «حساب» (leftmost item) */
  right: 1.25rem;
  left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
  transition: opacity 0.2s, transform 0.2s;
}

.sup-fab.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.sup-fab-btn {
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 1.15rem;
  border: 0;
  background: linear-gradient(145deg, var(--sea), var(--teal));
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.28);
  position: relative;
  transition: transform 0.2s var(--ease);
}

.sup-fab-btn:hover { transform: translateY(-2px) scale(1.03); }

.sup-fab-btn .live-dot {
  position: absolute;
  top: 0.45rem;
  left: 0.45rem;
}

.sup-fab-label {
  font-size: 0.68rem;
  font-weight: 800;
  background: var(--ink);
  color: #fff;
  padding: 0.3rem 0.55rem;
  border-radius: 0.55rem;
  box-shadow: var(--shadow);
}

.sup-ov {
  z-index: 1200;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end; /* در RTL = سمت چپ، کنار دکمه شناور */
  padding: 1rem;
  padding-bottom: 1.25rem;
  background: rgba(12, 26, 23, 0.35);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.sup-box {
  width: min(100%, 380px);
  max-height: min(78vh, 560px);
  background: #fff;
  border-radius: 1.35rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  margin-bottom: 0.25rem;
  animation: supIn 0.28s var(--ease);
}

@keyframes supIn {
  from { opacity: 0; transform: translateY(28px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

.sup-head {
  background: linear-gradient(145deg, var(--ink), #1f1f1f);
  color: #fff;
  padding: 1rem 1rem 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.sup-av {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.85rem;
  background: rgba(249, 115, 22, 0.2);
  color: var(--foam);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.sup-head strong {
  display: block;
  font-size: 0.92rem;
}

.sup-head p {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.15rem;
}

.sup-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: grid;
  gap: 0.65rem;
  background:
    radial-gradient(ellipse at 100% 0%, rgba(249, 115, 22, 0.06), transparent 50%),
    #fafafa;
  min-height: 220px;
}

.sup-msg {
  max-width: 88%;
  padding: 0.7rem 0.85rem;
  border-radius: 1rem;
  font-size: 0.82rem;
  line-height: 1.6;
}

.sup-msg.bot {
  background: #fff;
  border: 1px solid var(--line);
  border-bottom-right-radius: 0.3rem;
  justify-self: start;
}

.sup-msg.user {
  background: linear-gradient(145deg, var(--sea), var(--teal));
  color: #fff;
  border-bottom-left-radius: 0.3rem;
  justify-self: end;
}

.sup-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 0.85rem 0.65rem;
  background: #fafafa;
  border-top: 1px solid var(--line);
}

.sup-quick button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  font-size: 0.7rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink);
  font-family: inherit;
}

.sup-quick button:hover {
  border-color: rgba(249, 115, 22, 0.4);
  color: var(--teal);
}

.sup-form {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  border-top: 1px solid var(--line);
  background: #fff;
}

.sup-form .field {
  flex: 1;
  margin: 0;
}

@media (max-width: 768px) {
  .sup-fab {
    bottom: calc(5.6rem + env(safe-area-inset-bottom, 0px));
    right: 0.85rem;
    left: auto;
  }
  .sup-fab-label { display: none; }

  .sup-ov {
    align-items: flex-end;
    justify-content: stretch;
    padding: 0.65rem;
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  }

  .sup-box {
    width: 100%;
    max-height: min(70vh, 520px);
    max-height: min(70svh, 520px);
    margin-bottom: 0;
  }
}

/* Utilities */
.space-y > * + * {
  margin-top: 0.75rem;
}

.text-mist { color: var(--mist); }
.text-teal { color: var(--teal); }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.font-bold { font-weight: 800; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.w-full { width: 100%; }
.flex-1 { flex: 1; }
.login-label { display: none; }
@media (min-width: 480px) {
  .login-label { display: inline; }
}
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.self-end { align-self: flex-end; }
.close-x {
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: #ececec;
  display: grid;
  place-items: center;
  color: var(--mist);
}

.paper-box {
  background: var(--paper);
  border-radius: 1rem;
  padding: 0.85rem;
}

.content-sec {
  content-visibility: auto;
  contain-intrinsic-size: 500px;
}

.content-sec.seen,
#map-sec {
  content-visibility: visible;
  contain-intrinsic-size: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-media {
    animation: none;
  }
}

/* =========================================================
   Attraction detail modal
   ========================================================= */
.attov {
  background: rgba(17, 17, 17, 0.62);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 195;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

@media (min-width: 768px) {
  .attov { align-items: center; }
}

.attbox {
  background: #fff;
  width: min(640px, 100%);
  max-height: 92vh;
  max-height: 92svh;
  padding-bottom: var(--sat-bottom);
  border-radius: 1.6rem 1.6rem 0 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(28px);
  transition: transform 0.35s var(--ease);
}

@media (min-width: 768px) {
  .attbox {
    border-radius: 1.6rem;
    transform: scale(0.97);
  }
}

.attov.on .attbox {
  transform: none;
}

.att-hero {
  position: relative;
  height: 220px;
  flex-shrink: 0;
}

.att-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.att-hero .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.75), transparent 55%);
}

.att-body {
  padding: 1.25rem 1.35rem 1.5rem;
  overflow-y: auto;
}

.att-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.85rem 0 1rem;
}

.att-chip {
  font-size: 0.72rem;
  font-weight: 750;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.1);
  color: #ea580c;
}

.att-body p {
  color: var(--mist);
  font-size: 0.92rem;
  line-height: 1.85;
  margin-bottom: 0.85rem;
}

.att-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin: 1rem 0 1.25rem;
}

.att-meta div {
  background: var(--paper);
  border-radius: 1rem;
  padding: 0.85rem;
}

.att-meta strong {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.2rem;
}

.att-meta span {
  font-size: 0.75rem;
  color: var(--mist);
}

/* =========================================================
   Host pricing calendar (Jabama-style)
   ========================================================= */
.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

@media (max-width: 480px) {
  .price-grid { grid-template-columns: 1fr; }
}

.price-hint {
  font-size: 0.75rem;
  color: var(--mist);
  line-height: 1.7;
  margin: 0.35rem 0 0.85rem;
}

.host-cal {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  padding: 0.9rem;
  margin-top: 0.85rem;
}

.host-cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.65rem;
}

.host-cal .cday {
  font-size: 0.72rem;
  flex-direction: column;
  gap: 1px;
  border-radius: 0.65rem;
  aspect-ratio: auto;
  min-height: 48px;
  padding: 0.2rem 0.1rem;
}

.host-cal .cday .p {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--sea);
  line-height: 1.1;
}

.host-cal .cday.custom {
  background: rgba(249, 115, 22, 0.12);
  border: 1px solid rgba(249, 115, 22, 0.35);
}

.host-cal .cday.sel {
  background: var(--sea);
  color: #fff;
}

.host-cal .cday.sel .p {
  color: rgba(255, 255, 255, 0.9);
}

.host-cal .cday.wknd .p {
  color: #c2410c;
}

.price-edit {
  display: none;
  margin-top: 0.75rem;
  padding: 0.85rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
}

.price-edit.on {
  display: block;
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.65rem;
  font-size: 0.68rem;
  color: var(--mist);
}

.legend i {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 2px;
  margin-left: 0.25rem;
  vertical-align: middle;
}

.legend .l-base { background: #ececec; }
.legend .l-wknd { background: #ffedd5; }
.legend .l-custom { background: rgba(249, 115, 22, 0.35); }

.hbox {
  max-width: 720px;
}

/* Extra responsive polish */
@media (max-width: 560px) {
  .rcard {
    width: min(300px, 86vw);
  }

  .rcard .imgw {
    height: 210px;
  }

  .oinputs input {
    width: 38px;
    height: 46px;
    font-size: 1.05rem;
  }

  .bbox .bstp {
    padding-inline: 0.85rem;
  }

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

  .guarantee-row {
    flex-wrap: wrap;
    gap: 0.35rem;
  }
}

@media (max-width: 380px) {
  .bnav a,
  .bnav button {
    font-size: 0.55rem;
  }

  .bnav-plus span {
    width: 2.65rem;
    height: 2.65rem;
  }

  .store-badge {
    width: 2.45rem;
    height: 2.45rem;
  }

  .store-meta strong {
    font-size: 0.85rem;
  }
}

/* =========================================================
   Small-phone layout hardening (overlap / squeeze fixes)
   ========================================================= */
@media (max-width: 640px) {
  html,
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .nav {
    gap: 0.4rem;
    padding: 0.45rem 0.55rem;
  }

  .nav-actions {
    flex-shrink: 0;
    gap: 0.35rem;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .map-toolbar {
    align-items: flex-start;
    gap: 0.6rem;
  }

  .map-toolbar-actions {
    width: 100%;
  }

  .map-chip {
    font-size: 0.7rem;
    padding: 0.4rem 0.66rem;
  }

  .btn-sm {
    padding: 0.45rem 0.7rem;
    font-size: 0.78rem;
  }

  .hero-content {
    width: min(1120px, calc(100% - 1.1rem));
    padding: 5rem 0 5.5rem;
  }

  .hero-brand {
    font-size: clamp(1.85rem, 10vw, 2.55rem);
    line-height: 1.15;
    max-width: 100%;
  }

  .hero-title {
    font-size: 1.05rem;
    max-width: 100%;
  }

  .hero-lead {
    font-size: 0.84rem;
    max-width: 100%;
  }

  .search {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .search-cell,
  .search-cell:first-child,
  .search-go {
    grid-column: 1 / -1;
    border-left: 0;
  }

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

  .promo-nav {
    display: none;
  }

  .promo-slide {
    min-height: 0;
    padding: 0.75rem 0.9rem 1.35rem;
  }

  .promo-ban-ov h3,
  .feat-ban-ov h3 {
    font-size: 1.2rem;
    max-width: 100%;
  }

  .promo-ban-ov > p:not(.promo-brand),
  .feat-ban-ov p {
    max-width: 100%;
    font-size: 0.84rem;
  }

  .promo-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .promo-actions .bancta {
    width: auto;
    justify-content: center;
  }

  .section-title {
    font-size: clamp(1.35rem, 6.5vw, 1.85rem);
    word-break: break-word;
  }

  .section-head-row {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .amgrid {
    grid-template-columns: 1fr 1fr !important;
  }

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

  .kyc-uploads {
    grid-template-columns: 1fr;
  }

  .hovl {
    align-items: stretch;
    padding: 0;
  }

  .hbox {
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    height: 100%;
    height: 100dvh;
    border-radius: 0;
  }

  .hbody {
    padding: 0.85rem 1rem 1.15rem;
  }

  .hfoot {
    padding: 0.8rem 1rem calc(0.85rem + var(--sat-bottom));
  }

  .host-geo-row {
    grid-template-columns: 1fr 1fr !important;
  }

  .hlcard {
    flex-direction: column;
  }

  .hlcard img,
  .hlcard-ph,
  .hlcard-photo {
    width: 100%;
    height: 168px;
  }

  .hstind-wrap {
    display: block;
  }

  .ppan,
  .mpan {
    max-width: 100%;
  }

  .oinputs {
    gap: 0.35rem;
  }

  .oinputs input {
    width: 2.35rem;
    height: 2.85rem;
    font-size: 1rem;
  }

  .sbtn {
    min-height: 3.1rem;
  }

  .sbtn strong,
  .sbtn small {
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

/* گوشی‌های کوچک: مودال رزرو جمع‌وجورتر و بدون پرش */
@media (max-width: 480px) {
  .bbox {
    width: 100%;
    margin: 0;
    border-radius: 1.25rem 1.25rem 0 0;
  }

  .gmain {
    height: 32svh;
    min-height: 188px;
  }

  .bcont {
    padding: 0.9rem 0.85rem;
  }

  .bcont h2 {
    font-size: 1rem !important;
  }

  .stind {
    margin-bottom: 1rem;
  }

  .book-cal .cday {
    min-height: 44px;
    font-size: 0.72rem;
  }

  .calgrid {
    gap: 2px;
  }

  .paper-box {
    padding: 0.7rem;
  }

  .gctr {
    padding: 0.55rem 0;
  }

  .gnav {
    width: 34px;
    height: 34px;
  }

  .gfav,
  .gzoom {
    width: 34px;
    height: 34px;
  }

  .bk-share-actions {
    grid-template-columns: 1fr;
  }

  .gth {
    width: 46px;
    height: 34px;
  }
}

@media (max-width: 420px) {
  .brand-name {
    display: block;
    font-size: 0.82rem;
    max-width: 5.8rem;
  }

  .login-label {
    display: none;
  }

  .nav {
    right: 0.4rem;
    left: 0.4rem;
  }

  .brand-logo {
    height: 2rem;
    max-width: 2.4rem;
  }

  .icon-btn,
  .avatar-btn {
    width: 2.1rem;
    height: 2.1rem;
    border-radius: 0.75rem;
  }

  .hero-brand span {
    letter-spacing: 0.12em;
    font-size: 0.72rem;
  }

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

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

  .rcard {
    width: min(280px, 84vw);
  }

  .banov h3,
  .banov p {
    max-width: 100%;
  }

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

@media (max-width: 768px) {
  .backdrop-filter,
  .nav.scrolled,
  .bnav,
  .promise-badge {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .rcard:hover,
  .rcard:hover .imgw img:not(.photo-wm) {
    transform: none;
  }
}

/* KYC registration guide */
.kyc-guide-ov {
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(0.75rem + var(--sat-top)) 0.75rem calc(0.75rem + var(--sat-bottom));
  background: rgba(12, 26, 23, 0.62);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.kyc-guide-box {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: min(90vh, 720px);
  max-height: min(90svh, 720px);
  overflow: auto;
  background: #fff;
  border-radius: 1.4rem;
  padding: 1.35rem 1.25rem 1.2rem;
  box-shadow: var(--shadow);
}

.kyc-guide-head {
  text-align: center;
  margin-bottom: 1rem;
  padding-inline: 1.5rem;
}

.kyc-guide-head h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.kyc-guide-head p {
  font-size: 0.82rem;
  color: var(--mist);
  line-height: 1.7;
}

.kyc-guide-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.15rem;
}

.kyc-guide-steps li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.kyc-guide-steps li > span {
  flex-shrink: 0;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(249, 115, 22, 0.12);
  color: #c2410c;
  font-size: 0.75rem;
  font-weight: 800;
}

.kyc-guide-steps strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.15rem;
}

.kyc-guide-steps p {
  font-size: 0.75rem;
  color: var(--mist);
  line-height: 1.65;
}

.kyc-guide-actions {
  display: flex;
  gap: 0.55rem;
}

.doc-verified-note {
  margin-top: 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: 0.9rem;
  background: rgba(22, 163, 74, 0.07);
  border: 1px solid rgba(22, 163, 74, 0.22);
  font-size: 0.78rem;
  line-height: 1.65;
  color: #166534;
}

.host-draft-card {
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  background: linear-gradient(145deg, rgba(249, 115, 22, 0.1), rgba(15, 118, 110, 0.06));
  border: 1px solid rgba(249, 115, 22, 0.28);
}

.host-draft-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.host-draft-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.16);
  color: #c2410c;
  font-size: 0.72rem;
  font-weight: 800;
}

/* =========================================================
   iOS Safari fixes
   ========================================================= */
/* فونت فیلدها زیر 16px باعث زوم خودکار سافاری هنگام تایپ می‌شود */
@supports (-webkit-touch-callout: none) {
  input,
  select,
  textarea {
    font-size: max(16px, 1em) !important;
  }

  .pwrap input {
    font-size: 1.15rem !important;
  }

  .oinputs input {
    font-size: 1.2rem !important;
  }
}

/* =========================================================
   Destination landing page (?dest=)
   ========================================================= */
.dest-only {
  display: none;
}

html.dest-mode .dest-only {
  display: block;
}

html.dest-mode .dest-only[hidden] {
  display: none !important;
}

.hero-trip-btn {
  margin-top: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(255,255,255,.35);
  background: rgba(255,255,255,.12);
  color: #fff;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.dest-best {
  padding-top: 1.5rem;
  padding-bottom: 0.85rem;
}

.best-tabs {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  padding: 0.28rem;
  margin-bottom: 0.95rem;
  width: fit-content;
  max-width: 100%;
  background: rgba(17, 17, 17, 0.045);
  border: 1px solid var(--line);
  border-radius: 999px;
  scrollbar-width: none;
}

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

.best-tab {
  flex-shrink: 0;
  border: 0;
  background: transparent;
  border-radius: 999px;
  padding: 0.42rem 0.9rem;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--mist);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.best-tab.on {
  background: #111;
  color: #fff;
}

.best-rail {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 0.8rem;
}

.best-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  background: #fff;
  border: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  color: inherit;
  text-align: right;
  font: inherit;
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.07);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.best-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.12);
}

.best-card-media {
  position: relative;
  display: block;
  height: 168px;
  overflow: hidden;
}

.best-card-media img:not(.photo-wm) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}

.best-card:hover .best-card-media img:not(.photo-wm) {
  transform: scale(1.06);
}

.best-card-rank {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 3;
  width: 2.05rem;
  height: 2.05rem;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.82);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.86rem;
  backdrop-filter: blur(8px);
}

.best-card[data-rank="1"] .best-card-rank {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  color: #111;
}

.best-card[data-rank="2"] .best-card-rank {
  background: linear-gradient(135deg, #e5e7eb, #9ca3af);
  color: #111;
}

.best-card[data-rank="3"] .best-card-rank {
  background: linear-gradient(135deg, #fb923c, #c2410c);
  color: #fff;
}

.best-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.75rem 0.85rem 0.9rem;
}

.best-card-title {
  font-weight: 800;
  font-size: 0.88rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.best-card-loc {
  font-size: 0.74rem;
  color: var(--mist);
}

.best-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
  margin-top: 0.45rem;
}

.best-card-rate {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--teal);
}

.best-card-rate.is-soft {
  color: var(--mist);
}

.best-card-price {
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--ink);
}

.best-card-price small {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--mist);
}

.best-home {
  padding-top: 0.4rem;
  padding-bottom: 0.5rem;
}

.best-home-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 0.85rem;
}

.best-city {
  position: relative;
  display: block;
  min-height: 250px;
  border-radius: 1.4rem;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
  isolation: isolate;
  box-shadow: 0 14px 36px rgba(17, 17, 17, 0.12);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.best-city.is-lead {
  grid-column: span 2;
}

.best-city:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(17, 17, 17, 0.16);
}

.best-city img:not(.photo-wm) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 0.7s var(--ease);
}

.best-city:hover img:not(.photo-wm) {
  transform: scale(1.1);
}

.best-city-num {
  position: absolute;
  top: 0.85rem;
  right: 0.95rem;
  z-index: 3;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
}

.best-city.is-lead .best-city-num {
  font-size: 2.4rem;
  top: 1rem;
  right: 1.1rem;
}

.best-city-ov {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 2.2rem 0.95rem 0.9rem;
  background: linear-gradient(to top, rgba(8, 8, 8, 0.9) 12%, rgba(8, 8, 8, 0.28) 68%, transparent);
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.best-city.is-lead .best-city-ov {
  padding: 2.6rem 1.2rem 1.05rem;
}

.best-city-tag {
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 800;
  color: #fdba74;
  letter-spacing: 0.02em;
}

.best-city-name {
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.3;
}

.best-city.is-lead .best-city-name {
  font-size: 1.7rem;
}

.best-city-stay {
  font-size: 0.76rem;
  opacity: 0.82;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.best-city-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.4rem;
  font-size: 0.7rem;
  font-weight: 700;
  opacity: 0.92;
}

.best-city-meta span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.18rem 0.55rem;
  backdrop-filter: blur(8px);
}

.best-city .photo-wm,
.best-card-media .photo-wm {
  top: 0.75rem;
  bottom: auto;
  right: auto;
  left: 0.75rem;
  width: 38px;
  opacity: 0.32;
}

.best-city.is-lead .photo-wm {
  width: 52px;
  top: 1rem;
  left: 1rem;
}

.trip-ov {
  background: rgba(12, 12, 12, 0.72);
  backdrop-filter: blur(10px);
  z-index: 255;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(0.6rem + var(--sat-top)) 0.7rem calc(0.6rem + var(--sat-bottom));
}

.trip-box {
  position: relative;
  width: min(520px, 100%);
  max-height: min(92vh, 860px);
  max-height: min(92svh, 860px);
  overflow: auto;
  background: #fff;
  border-radius: 1.4rem;
  padding: 1.35rem 1.15rem 1.2rem;
}

.trip-box > .close-x {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 3;
  background: rgba(17, 17, 17, 0.08);
}

.trip-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.trip-field { margin-bottom: 0.85rem; }

.trip-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.trip-chip {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
  font-size: 0.75rem;
  font-weight: 800;
}

.trip-chip.on {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.trip-stepper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trip-break {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.75rem 0.85rem;
  margin-bottom: 0.85rem;
  font-size: 0.8rem;
  line-height: 1.8;
}

.trip-stay-list { display: flex; flex-direction: column; gap: 0.55rem; }

.trip-stay {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.5rem;
  text-align: right;
  background: #fff;
}

.trip-stay img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 0.65rem;
  flex-shrink: 0;
}

.ref-link-box {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.75rem;
  font-size: 0.78rem;
  direction: ltr;
  text-align: left;
  word-break: break-all;
  margin-bottom: 0.65rem;
}

.ref-code-box {
  background: var(--soft);
  border: 1px dashed var(--line);
  border-radius: 0.9rem;
  padding: 0.7rem 0.85rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-align: center;
  margin-bottom: 0.65rem;
}

@media (max-width: 1100px) {
  .best-home-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .best-city.is-lead {
    grid-column: span 3;
  }
}

@media (max-width: 900px) {
  .best-home-grid {
    display: flex;
    overflow-x: auto;
    grid-template-columns: none;
    grid-auto-rows: auto;
    gap: 0.75rem;
    padding-bottom: 0.35rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .best-home-grid::-webkit-scrollbar { display: none; }
  .best-city,
  .best-city.is-lead {
    flex: 0 0 min(78vw, 320px);
    height: 360px;
    min-height: 360px;
    grid-column: auto;
    grid-row: auto;
    scroll-snap-align: start;
  }
  .best-city.is-lead {
    flex-basis: min(86vw, 360px);
    height: 400px;
    min-height: 400px;
  }
  .best-city.is-lead .best-city-num {
    font-size: 2.1rem;
  }
  .best-city.is-lead .best-city-name {
    font-size: 1.4rem;
  }
  .best-rail {
    display: flex;
    overflow-x: auto;
    gap: 0.7rem;
    padding-bottom: 0.25rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .best-rail::-webkit-scrollbar { display: none; }
  .best-card {
    flex: 0 0 220px;
    scroll-snap-align: start;
  }
  .best-tabs {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-trip-btn {
    width: 100%;
    justify-content: center;
  }
}

html.dest-mode .home-only {
  display: none !important;
}

html.dest-mode .nav,
html.dest-mode .nav.scrolled {
  top: calc(0.35rem + var(--sat-top));
  background: rgba(250, 250, 250, 0.94);
  -webkit-backdrop-filter: blur(18px) saturate(1.05);
  backdrop-filter: blur(18px) saturate(1.05);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 32px rgba(12, 26, 23, 0.06);
}

html.dest-mode .nav .brand-name,
html.dest-mode .nav.scrolled .brand-name {
  color: var(--ink);
  text-shadow: none;
}

html.dest-mode .nav-links,
html.dest-mode .nav.scrolled .nav-links {
  color: var(--mist);
  text-shadow: none;
}

html.dest-mode .nav-links a:hover {
  color: var(--ink);
}

html.dest-mode body {
  background: var(--paper);
}

html.dest-mode #listings {
  padding-top: 0 !important;
  padding-bottom: 2rem;
}

html.dest-mode #listings .section-head {
  display: none;
}

.dest-page {
  padding-top: calc(4.6rem + var(--sat-top));
}

.dest-hero {
  position: relative;
  min-height: clamp(300px, 48vw, 500px);
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: flex-end;
}

.dest-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(120% 80% at 80% 0%, rgba(249, 115, 22, 0.18), transparent 55%);
  z-index: 1;
}

.dest-hero img#dest-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.dest-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.18) 0%, rgba(10, 10, 10, 0.22) 38%, rgba(10, 10, 10, 0.82) 100%);
}

.dest-hero-inner {
  position: relative;
  z-index: 2;
  padding: 2.1rem 0 1.7rem;
  width: 100%;
}

.dest-crumb {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 650;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 1.05rem;
  flex-wrap: wrap;
}

.dest-crumb a {
  color: #fff;
  text-decoration: none;
}

.dest-crumb-home {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 0.22rem 0.7rem 0.22rem 0.55rem;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.dest-crumb a:hover {
  text-decoration: none;
  background: rgba(255, 255, 255, 0.22);
}

.dest-hero-copy {
  max-width: 40rem;
}

.dest-kicker {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #111;
  background: rgba(253, 186, 116, 0.95);
  border-radius: 999px;
  padding: 0.2rem 0.7rem;
  margin-bottom: 0.55rem;
}

.dest-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.6vw, 2.7rem);
  font-weight: 800;
  line-height: 1.22;
  margin: 0;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.dest-lead {
  margin-top: 0.55rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.96rem;
  line-height: 1.75;
}

.dest-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.dest-stat {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.34rem 0.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 750;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.dest-stat-soft {
  background: rgba(249, 115, 22, 0.32);
  border-color: rgba(253, 186, 116, 0.42);
}

.dest-toolbar-wrap {
  position: sticky;
  top: calc(4.1rem + var(--sat-top));
  z-index: 40;
  background: rgba(250, 250, 250, 0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.dest-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.dest-ftabs {
  flex: 1;
  min-width: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.dest-ftabs::-webkit-scrollbar {
  display: none;
}

.dest-toolbar-end {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.dest-instant {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 750;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
}

.dest-instant input {
  accent-color: var(--teal);
  width: 1rem;
  height: 1rem;
}

.dest-sort {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 750;
  color: var(--mist);
}

.dest-sort select {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 0.7rem;
  padding: 0.38rem 0.65rem;
  font: inherit;
  font-weight: 750;
  color: var(--ink);
  cursor: pointer;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.15rem;
}

.dest-grid .rcard {
  width: auto;
  flex: none;
  scroll-snap-align: unset;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(17, 17, 17, 0.06);
}

.dest-grid .rcard .imgw {
  height: 214px;
}

.rcard-meta {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.2rem 0 0.45rem;
  color: var(--mist);
  font-size: 0.75rem;
  font-weight: 650;
}

.dest-empty,
.search-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.45rem;
  margin: 0.35rem 0 1.4rem;
  padding: 2.2rem 1.15rem 1.8rem;
  background: linear-gradient(180deg, #fff7ed 0%, #fff 62%);
  border: 1px dashed #fdba74;
  border-radius: 1.35rem;
}

.dest-empty {
  margin: 0;
  grid-column: 1 / -1;
}

.dest-empty-ico,
.search-empty-ico {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1.05rem;
  display: grid;
  place-items: center;
  background: #ffedd5;
  color: #ea580c;
  font-size: 1.45rem;
  margin-bottom: 0.15rem;
}

.dest-empty strong,
.search-empty strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.dest-empty p,
.search-empty p {
  margin: 0 0 0.45rem;
  font-size: 0.82rem;
  color: var(--mist);
  line-height: 1.7;
  max-width: 22rem;
}

.cms-empty-inline {
  flex: 1;
  min-width: 100%;
  padding: 0.95rem 0.85rem;
  text-align: center;
  border-radius: 1rem;
  border: 1px dashed rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8rem;
  font-weight: 700;
}

.dest-related {
  padding-top: 0.5rem;
  padding-bottom: 2.5rem;
}

.dest-related-grid {
  padding-top: 0.4rem;
}

@media (max-width: 640px) {
  .dest-page {
    padding-top: calc(4.1rem + var(--sat-top));
  }

  .dest-hero {
    min-height: 248px;
  }

  .dest-toolbar-wrap {
    top: calc(3.7rem + var(--sat-top));
  }

  .dest-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }

  .dest-grid .rcard {
    border-radius: 1rem;
  }

  .dest-grid .rcard .imgw {
    height: 132px;
  }

  .dest-grid .rcard-body h3 {
    font-size: 0.82rem;
  }

  .popular-tile {
    flex-basis: 118px;
    width: 118px;
    height: 156px;
  }
}

/* Low-opacity brand mark on listing photos — bottom corner, never loud */
.photo-wm {
  position: absolute;
  right: 10px;
  left: auto;
  bottom: 10px;
  width: 52px;
  height: auto;
  object-fit: contain;
  opacity: 0.22;
  pointer-events: none;
  z-index: 5;
  background: none !important;
  border-radius: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
  mix-blend-mode: normal;
}

.imgw .photo-wm {
  bottom: 2.4rem;
  width: 42px;
  height: auto;
  opacity: 0.2;
}

.gmain .photo-wm {
  width: 68px;
  height: auto;
  right: 14px;
  left: auto;
  bottom: 3.55rem;
  opacity: 0.22;
  z-index: 6;
}

.dest-hero-wm {
  width: 86px;
  height: auto;
  right: 1.1rem;
  left: auto;
  inset-inline-start: auto;
  inset-inline-end: auto;
  bottom: 1.1rem;
  opacity: 0.2;
  z-index: 3;
}

.popular-tile .photo-wm {
  width: 34px;
  height: auto;
  bottom: 0.45rem;
  right: 0.45rem;
  opacity: 0.22;
  z-index: 3;
}

#calwrap:not(.hidden) {
  max-height: min(58vh, 620px);
  overflow: auto;
  scrollbar-width: thin;
}

.bk-step-kicker {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--sea);
  margin: 0 0 0.2rem;
}

.bk-step-title {
  font-size: 1.02rem;
  font-weight: 800;
  margin: 0 0 0.9rem;
}

.bk-stay-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}

.bk-chip {
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  padding: 0.55rem 0.7rem 0.5rem;
  min-width: 0;
}

.bk-chip small {
  display: block;
  font-size: 0.65rem;
  font-weight: 750;
  color: var(--mist);
  margin-bottom: 0.12rem;
}

.bk-chip strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.4;
}

.bk-desc-card,
.bk-amen-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1.05rem;
  padding: 0.85rem 0.9rem;
  margin-bottom: 0.75rem;
}

.bk-card-label {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--ink);
  margin: 0 0 0.45rem;
}

.bk-desc {
  font-size: 0.84rem;
  color: var(--mist);
  line-height: 1.85;
  margin: 0;
}

.bk-amen-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.bk-amen-grid .amch {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  border-radius: 999px;
  padding: 0.28rem 0.62rem;
}

.bk-step-nav {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

@media (min-width: 900px) {
  .cal-dual {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================================
   Mobile UX, gallery swipe, map pins, search empty, perf
   ========================================================= */
.bbox-handle {
  display: none;
}

.gclose {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.78);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 22;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
  cursor: pointer;
}

.gmain {
  touch-action: pan-y;
}

.gmain img#gimg {
  touch-action: none;
  user-select: none;
  -webkit-user-drag: none;
}

.rcard .imgw {
  touch-action: pan-y;
}

.rcard .imgw img:not(.photo-wm) {
  pointer-events: none;
}

.cdots {
  position: absolute;
  left: 50%;
  bottom: 0.55rem;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 6;
  padding: 4px 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
}

.cdots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.cdots span.on {
  background: #fff;
  width: 14px;
  border-radius: 999px;
}

.loc-fade {
  z-index: 4;
}

.villa-pin-priceonly {
  padding: 4px 11px 4px 5px;
  gap: 0.36rem;
}

.villa-pin-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(145deg, #fb923c, #ea580c);
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.16);
  flex-shrink: 0;
}

.villa-pin-priceonly .villa-pin-price {
  font-size: 0.72rem;
  color: inherit;
}

.villa-pop .vp-photo {
  height: 118px;
}

.villa-pop .vp-photo img {
  height: 118px;
}

.book-cal .cday.sel-in,
.book-cal .cday.sel-out {
  color: #fff;
}

.cal-dual:has(.cday.sel-out) .cday.sel-in {
  border-radius: 0.35rem 0.9rem 0.9rem 0.35rem;
}

.cal-dual:has(.cday.sel-in) .cday.sel-out {
  border-radius: 0.9rem 0.35rem 0.35rem 0.9rem;
}

.book-cal .cday.rng {
  background: #fff7ed;
  color: #9a3412;
  border-radius: 0.4rem;
}

.book-cal .cday.tod:not(.sel) {
  box-shadow: inset 0 0 0 2px #fdba74;
}

.cal-month {
  box-shadow: 0 8px 22px rgba(17, 17, 17, 0.04);
}

.cal-nav {
  width: 38px;
  height: 38px;
}

.lb-frame {
  touch-action: none;
}

@media (max-width: 768px) {
  .bbox-handle {
    display: block;
    width: 42px;
    height: 4px;
    border-radius: 999px;
    background: #d4d4d4;
    margin: 0.5rem auto 0.1rem;
    flex-shrink: 0;
    touch-action: none;
  }

  .bcont > .close-x {
    display: none;
  }

  .bcont {
    padding-bottom: calc(1.2rem + env(safe-area-inset-bottom));
  }

  .gclose {
    width: 44px;
    height: 44px;
    top: 0.65rem;
    right: 0.65rem;
  }

  .gzoom {
    right: 3.7rem;
    top: 0.72rem;
  }

  .asu {
    animation: none;
    opacity: 1;
  }

  .rcard:hover {
    transform: none;
  }

  .rcard:hover .imgw img:not(.photo-wm) {
    transform: none;
  }

  .cal-hint {
    display: none;
  }

  .cal-toolbar-copy span {
    display: none;
  }

  .book-cal .cday {
    min-height: 50px;
  }

  .legend {
    gap: 0.4rem;
    font-size: 0.64rem;
  }
}

@media (max-width: 480px) {
  .gclose {
    width: 46px;
    height: 46px;
  }

  .book-cal .cday {
    min-height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .asu {
    animation: none;
    opacity: 1;
  }
}

/* Short phones (keyboard + small viewport height) */
@media (max-height: 740px) and (max-width: 768px) {
  .hero-content {
    padding: 4.4rem 0 2.4rem;
  }

  .hero-lead {
    margin-bottom: 0.75rem;
  }

  .hero-popular {
    margin-top: 0.75rem;
  }

  .popular-tile {
    flex-basis: 96px;
    width: 96px;
    height: 122px;
  }

  .section {
    padding: 2.1rem 0;
  }

  .trust-strip {
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
  }

  #map { height: clamp(280px, 50vh, 340px) !important; }

  .map-float-legend {
    font-size: 0.62rem;
    padding: 0.32rem 0.55rem;
    bottom: 0.5rem;
    right: 0.5rem;
  }

  .hhdr {
    padding: calc(0.75rem + var(--sat-top)) 1rem 0.55rem;
  }

  .hprog {
    margin-inline: 1rem;
  }

  .hstind-wrap {
    padding: 0.35rem 0.85rem 0;
  }

  .host-map,
  .host-map.leaflet-container,
  #host-map.leaflet-container {
    height: min(42vh, 280px) !important;
    min-height: 220px !important;
  }

  .geo-combo-pop {
    max-height: min(280px, 48dvh);
  }

  .geo-combo-list {
    max-height: 210px;
  }
}

.legal-box {
  max-height: min(88dvh, 720px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.legal-box .auth-body {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.legal-body {
  font-size: 0.85rem;
  line-height: 1.85;
  color: #334155;
}
.legal-body p { margin-bottom: 0.85rem; }
.bk-mini-map {
  height: 180px;
  border-radius: 0.85rem;
  overflow: hidden;
  background: #e2e8f0;
}
.bk-price-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}
.bk-pday {
  background: #f8fafc;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  padding: 0.3rem 0.15rem;
  text-align: center;
}
.bk-pday small { display: block; font-size: 0.65rem; color: #64748b; }
.bk-pday span { font-size: 0.62rem; font-weight: 700; }
.bk-pday.is-custom { background: #ecfdf5; border-color: rgba(22,163,74,.35); }
.bk-pday.is-past,
.bk-pday.is-busy {
  opacity: 0.38;
  background: #f1f5f9;
}
.bk-pday.is-busy span { text-decoration: line-through; }
.bk-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
  margin: 0.75rem 0 1rem;
}
.bk-spec {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 0.65rem 0.7rem;
}
.bk-spec strong { display: block; font-size: 0.92rem; }
.bk-spec span { font-size: 0.7rem; color: #64748b; }
.notif-badge {
  position: absolute;
  top: -0.28rem;
  left: -0.28rem;
  min-width: 1.15rem;
  height: 1.15rem;
  padding: 0 0.32rem;
  border-radius: 999px;
  background: #dc2626;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  display: none;
  place-items: center;
  line-height: 1;
  z-index: 80;
  pointer-events: none;
  box-shadow: 0 0 0 2px #fff;
}
.notif-badge.is-on { display: grid; }
.notif-badge.inline {
  position: static;
  margin-right: auto;
  box-shadow: none;
}
.role-ov { z-index: 240; }
.role-pick-card {
  width: 100%;
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: #fff;
  margin-bottom: 0.65rem;
}
.role-pick-card strong { font-size: 0.95rem; }
.role-pick-card span { font-size: 0.78rem; color: #64748b; line-height: 1.6; }
.wallet-guest-card {
  background: linear-gradient(145deg, #0f766e, #14b8a6);
  border-radius: 1rem;
  padding: 1.25rem;
  color: #fff;
  text-align: center;
  margin-bottom: 0.75rem;
}
.hl-actions { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-top: 0.55rem; }
.bk-review { padding: 0.55rem 0; border-bottom: 1px solid var(--line); }
.bk-review:last-child { border-bottom: 0; }
.host-mode-card {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
}
.host-mode-card.on {
  border-color: var(--sea);
  background: rgba(15,118,110,.06);
}
.host-mode-card strong { display: block; font-size: 0.85rem; }
.host-mode-card small { display: block; color: #64748b; font-size: 0.75rem; line-height: 1.6; margin-top: 0.2rem; }
.pay-box { background: #fff; border: 1px solid var(--line); border-radius: 1rem; padding: 0.85rem; }
.pay-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.pay-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  padding: 0.75rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: #fff;
  text-align: right;
  cursor: pointer;
}
.pay-card.on {
  border-color: var(--sea);
  background: rgba(15,118,110,.06);
  box-shadow: 0 0 0 1px rgba(15,118,110,.12);
}
.pay-card strong { font-size: 0.82rem; }
.pay-card small { color: #64748b; font-size: 0.72rem; line-height: 1.5; }
.bk-charge-box {
  background: #f8fafc;
  border-radius: 0.75rem;
  padding: 0.7rem 0.75rem;
}
.bhc.is-unread { border-right: 3px solid var(--sea); }

@media (max-height: 560px) and (max-width: 768px) {
  .hero-title,
  .hero-lead {
    display: none;
  }

  .hero-content {
    padding: 3.8rem 0 1.6rem;
  }

  .search-cell {
    padding: 0.5rem 0.7rem;
  }

  #map { height: clamp(220px, 46vh, 300px) !important; }

  .host-map,
  .host-map.leaflet-container,
  #host-map.leaflet-container {
    height: min(38vh, 220px) !important;
    min-height: 200px !important;
  }
}




