/* ============================================================
   ACCOLINK — Premium Stylesheet  v3
   Font: Plus Jakarta Sans (matches Airbnb Cereal aesthetic)
   ============================================================ */
:root {
  --g900: #071A0F;
  --g800: #0D2E1A;
  --g700: #155235;
  --g600: #1B6B43;
  --g500: #228B57;
  --g400: #4AAF7E;
  --g300: #A8D5BE;
  --g100: #E8F5EE;

  --gold:    #C9983A;
  --gold-lt: #E8C06A;
  --gold-dk: #9A7228;

  --cream:   #FFFFFF;
  --cream2:  #F5F5F7;
  --cream3:  #E5E5EA;

  --ink:     #1C1C1E;
  --ink-mid: #3A3A3C;
  --ink-lt:  #8E8E93;

  --white:   #FFFFFF;
  --surface: #FFFFFF;
  --border:  rgba(0,0,0,0.08);

  --r-sm:  8px;
  --r-md:  16px;
  --r-lg:  24px;
  --r-xl:  32px;
  --r-2xl: 48px;

  --sh-sm: 0 2px 8px rgba(0,0,0,0.06);
  --sh-md: 0 8px 32px rgba(0,0,0,0.09);
  --sh-lg: 0 20px 60px rgba(0,0,0,0.12);
  --sh-xl: 0 40px 100px rgba(0,0,0,0.15);

  --ease: cubic-bezier(0.16,1,0.3,1);
  --t:    0.28s var(--ease);
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: #fff;
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

h1,h2,h3 { font-family: var(--font); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }

/* ============================================================ NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 32px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px) saturate(180%);
  transition: box-shadow var(--t);
}
.nav.scrolled { box-shadow: var(--sh-sm); }
.nav.hero-nav { background: rgba(255,255,255,0.96); }
.nav.hero-nav .nav-logo-text { color: var(--g700); }
.nav.hero-nav .nav-links a   { color: var(--ink-mid); }

.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { width: 72px; height: 72px; object-fit: contain; }
.nav-logo-text {
  font-size: 1rem; font-weight: 700; color: var(--g700);
  letter-spacing: -0.01em; transition: color var(--t);
}

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 7px 13px; border-radius: var(--r-sm);
  font-size: 0.875rem; font-weight: 500; color: var(--ink-mid);
  transition: all var(--t);
}
.nav-links a:hover { background: var(--cream2); color: var(--g700); }

/* Active tab underline — desktop only (Airbnb-style) */
@media (min-width: 769px) {
  .nav-links a.nav-active {
    color: var(--ink);
    font-weight: 700;
    background: transparent;
    position: relative;
  }
  .nav-links a.nav-active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 13px;
    right: 13px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
  }
}

.nav-auth-btns { display: flex; align-items: center; gap: 10px; }
.nav-user-menu { display: none; align-items: center; gap: 10px; }

.btn-ghost {
  padding: 8px 18px; border-radius: var(--r-sm);
  font-size: 0.875rem; font-weight: 600;
  color: var(--g700); border: 1.5px solid var(--g700);
  transition: all var(--t);
}
.btn-ghost:hover { background: var(--g700); color: #fff; }

.btn-primary {
  padding: 8px 20px; border-radius: var(--r-sm);
  font-size: 0.875rem; font-weight: 600;
  background: var(--g700); color: #fff;
  transition: all var(--t);
}
.btn-primary:hover { background: var(--g800); transform: translateY(-1px); box-shadow: var(--sh-md); }

.btn-gold {
  padding: 14px 32px; border-radius: var(--r-md);
  font-size: 1rem; font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #fff; box-shadow: 0 6px 24px rgba(201,152,58,0.35);
  transition: all var(--t);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(201,152,58,0.45); }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; border-radius: var(--r-lg); }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; width: 26px; }
.nav-hamburger span { height: 2px; background: var(--g700); border-radius: 2px; transition: all var(--t); }

/* ============================================================ HERO */
.hero {
  position: relative; z-index: 10;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  background: #fff; padding: 96px 24px 48px; overflow: visible;
}
.hero::after { display: none; }
.hero-bg, .hero-grid, .hero-orb, .hero-badge, .hero-title, .hero-subtitle, .hero-stats, .hero-stat, .hero-scroll { display: none; }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 860px; width: 100%; }

SEARCH PILL
.search-widget { display: flex; justify-content: center; margin: 0 auto; max-width: 780px; width: 100%; }
.airbnb-search {
  display: flex; align-items: center; width: 100%;
  background: #fff; border: 1.5px solid #DDDDDD;
  border-radius: 60px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
  overflow: visible; position: relative;
  transition: box-shadow var(--t);
}
.search:focus-within { box-shadow: 0 2px 8px rgba(0,0,0,0.08), 0 6px 20px rgba(0,0,0,0.1); }
.as-field {
  flex: 1; padding: 13px 22px; cursor: pointer; position: relative;
  border-radius: 60px; transition: background var(--t); min-width: 0;
}
.as-field:hover { background: #f7f7f7; }
.as-field:focus-within { background: #fff; box-shadow: 0 0 0 2px var(--ink); z-index: 2; border-radius: 60px; }
.as-label { display: block; font-size: 0.7rem; font-weight: 700; color: var(--ink); letter-spacing: 0.01em; margin-bottom: 2px; }
.as-input {
  display: block; width: 100%; border: none; outline: none;
  font-size: 0.875rem; color: var(--ink-lt); font-family: var(--font);
  background: transparent; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.as-input::placeholder { color: #b0b0b0; }
.as-divider { width: 1px; height: 28px; background: #ddd; flex-shrink: 0; }
.as-btn {
  margin: 7px; flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
  background: var(--g700); color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t), transform 0.15s;
}
.as-btn:hover { background: var(--g800); transform: scale(1.06); }
.as-btn svg { width: 17px; height: 17px; }

/* Dropdowns */
.as-field { position: relative; }
.as-dropdown {
  position: absolute; top: calc(100% + 12px); left: 0;
  background: #fff; border: 1px solid var(--border);
  border-radius: 20px; padding: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.14); z-index: 9999; min-width: 240px;
  display: none; animation: dropFade 0.18s ease;
}
@keyframes dropFade { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }
.as-dropdown.open { display: block; }
.as-price-row { display: flex; gap: 10px; align-items: center; margin-bottom: 6px; }
.as-price-input-wrap { flex: 1; }
.as-price-input-wrap label { font-size: 0.72rem; font-weight: 700; color: var(--ink-lt); display: block; margin-bottom: 5px; }
.as-price-input-wrap input {
  width: 100%; border: 1.5px solid var(--border); border-radius: 10px;
  padding: 9px 12px; font-family: var(--font); font-size: 0.9rem; outline: none;
}
.as-price-input-wrap input:focus { border-color: var(--ink); }
.as-dest-dropdown { min-width: 200px; padding: 8px; max-height: 300px; overflow-y: auto; }
.as-dest-option {
  padding: 10px 14px; border-radius: 10px; cursor: pointer;
  font-size: 0.875rem; font-weight: 500; transition: background var(--t);
  display: flex; align-items: center; gap: 10px;
}
.as-dest-option:hover { background: #f7f7f7; }
.as-dest-option svg { width: 15px; height: 15px; color: var(--ink-lt); flex-shrink: 0; }
.as-dest-option.active { background: var(--g100); color: var(--g700); font-weight: 700; }


/* ============================================================ CITIES */
.cities-section { padding: 56px 32px 36px; max-width: 1200px; margin: 0 auto; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 24px; }
.section-eyebrow {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--g500); margin-bottom: 4px;
}
.section-title { color: var(--ink); }
.see-all-link {
  font-size: 0.875rem; font-weight: 600; color: var(--g700);
  border-bottom: 1.5px solid currentColor; padding-bottom: 2px;
  white-space: nowrap; margin-left: 20px; transition: color var(--t);
}
.see-all-link:hover { color: var(--gold-dk); }

.cities-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 12px; }
.city-card {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  cursor: pointer; aspect-ratio: 3/4; transition: transform var(--t), box-shadow var(--t);
}
.city-card:hover { transform: translateY(-5px); box-shadow: var(--sh-lg); }
.city-card:hover .city-card-img { transform: scale(1.06); }
.city-card.active { outline: 3px solid var(--gold); outline-offset: 2px; }
.city-card-img { width: 100%; height: 100%; transition: transform 0.6s var(--ease); }
.city-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.04) 55%);
}
.city-card-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 13px; }
.city-card-name { font-size: 0.95rem; font-weight: 700; color: #fff; display: block; letter-spacing: -0.01em; }
.city-card-count { font-size: 0.7rem; color: rgba(255,255,255,0.65); }

/* ============================================================ LISTINGS */
.listings-section { padding: 16px 32px 80px; max-width: 1200px; margin: 0 auto; }

.filter-bar { display: flex; align-items: center; gap: 7px; margin-bottom: 24px; flex-wrap: wrap; }
.filter-pill {
  padding: 7px 17px; border-radius: var(--r-2xl);
  font-size: 0.82rem; font-weight: 600;
  border: 1.5px solid var(--border); background: #fff; color: var(--ink-mid);
  cursor: pointer; transition: all var(--t);
}
.filter-pill:hover { border-color: var(--ink); color: var(--ink); }
.filter-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ── LISTINGS GRID ─────────────────────────────────────────── */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

/* ── SQUARE OVERLAY CARD ────────────────────────────────────── */
.listing-card {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  cursor: pointer; aspect-ratio: 1 / 1;
  transition: transform var(--t), box-shadow var(--t);
  background: var(--cream2);
}
.listing-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); }

.card-image-wrap {
  position: absolute; inset: 0;
}
.card-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.listing-card:hover .card-image-wrap img { transform: scale(1.05); }

/* Featured badge — top-left */
.card-badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: rgba(255,255,255,0.94); border-radius: var(--r-2xl);
  padding: 3px 10px; font-size: 0.68rem; font-weight: 700; color: var(--g700);
  backdrop-filter: blur(6px);
}
.card-badge.featured { background: linear-gradient(135deg,var(--gold),var(--gold-dk)); color: #fff; }

/* Rating pill — top-right */
.card-rating-overlay {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  display: flex; align-items: center; gap: 4px;
  background: rgba(0,0,0,0.58); backdrop-filter: blur(6px);
  border-radius: var(--r-2xl); padding: 3px 8px;
  color: #fff; font-size: 0.72rem; font-weight: 600;
}
.card-rating-overlay .star svg { width: 11px; height: 11px; fill: #FFD60A; }
.card-rating-overlay .star.empty svg { fill: rgba(255,255,255,0.4); }

/* Bottom gradient info overlay */
.card-info-overlay {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0) 100%);
  padding: 44px 12px 12px;
  color: #fff;
}
.card-overlay-name {
  font-size: 0.78rem; font-weight: 700; margin-bottom: 5px;
  display: -webkit-box; -webkit-line-clamp: 1;
  -webkit-box-orient: vertical; overflow: hidden;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5); letter-spacing: -0.01em;
}
.card-overlay-row {
  display: flex; align-items: center; justify-content: space-between; gap: 6px;
}
.card-overlay-loc {
  display: flex; align-items: center; gap: 3px;
  font-size: 0.62rem; color: rgba(255,255,255,0.82);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; flex: 1 1 0; min-width: 0;
}
.card-overlay-loc svg { flex-shrink: 0; }
.card-overlay-price {
  font-size: 0.74rem; font-weight: 700; white-space: nowrap; flex-shrink: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.card-overlay-price span { font-size:  0.58rem; font-weight: 400; opacity: 0.8; margin-left: 1px; }

/* Skeleton cards — square to match */
.skeleton-card {
  border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--cream2);
}
.skeleton { background: linear-gradient(90deg,var(--cream2) 0%,var(--cream3) 50%,var(--cream2) 100%); background-size: 200% 100%; animation: shimmer 1.5s infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }
.sk-img  { width: 100%; height: 100%; }
.sk-body { display: none; }
.sk-line { height: 12px; border-radius: 4px; margin-bottom: 9px; }
.sk-line.w-60 { width: 60%; }
.sk-line.w-80 { width: 80%; }
.sk-line.w-40 { width: 40%; }

/* Keep these classes non-breaking for any other pages that might reference them */
.card-body { display: none; }
.btn-explore { display: none; }
.amenity-chip, .amenity-chip-more { display: none; }

/* ============================================================ HOST BAND — stays dark */
.host-band {
  margin: 0 24px 48px;
  background: linear-gradient(135deg, var(--g800), var(--g900));
  border-radius: var(--r-lg); padding: 24px 28px;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 20px;
  position: relative; overflow: hidden;
}
.host-band::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,175,126,0.15), transparent 70%);
  pointer-events: none;
}
.host-band-tag { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold-lt); margin-bottom: 6px; }
.host-band-title { color: #fff; margin-bottom: 6px; font-size: clamp(1.1rem, 2.2vw, 1.55rem); letter-spacing: -0.02em; }
.host-band-sub { color: rgba(255,255,255,0.58); max-width: 400px; font-size: 0.85rem; line-height: 1.5; }
.host-band-perks { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 14px; }
.host-perk { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.78); font-size: 0.8rem; }
.host-perk-icon {
  width: 24px; height: 24px; border-radius: 6px;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.host-perk-icon svg { width: 12px; height: 12px; stroke: rgba(255,255,255,0.78); fill: none; stroke-width: 2; }

/* ============================================================ MODAL */
.modal-overlay {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,0.48); backdrop-filter: blur(4px);
  display: flex; align-items: flex-end;
  opacity: 0; pointer-events: none; transition: opacity var(--t);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-overlay.open .modal-sheet { transform: translateY(0); }

.modal-sheet {
  background: #fff; border-radius: var(--r-xl) var(--r-xl) 0 0;
  width: 100%; max-height: 95svh; overflow-y: auto; overflow-x: hidden;
  transform: translateY(60px); transition: transform 0.4s var(--ease);
}
@media (min-width: 768px) {
  .modal-overlay { align-items: center; padding: 24px; }
  .modal-sheet {
    border-radius: var(--r-xl); max-width: 860px; max-height: 90svh;
    width: 100%; margin: 0 auto; transform: translateY(18px) scale(0.97);
  }
  .modal-overlay.open .modal-sheet { transform: none; }
}
.modal-handle { width: 38px; height: 4px; border-radius: 2px; background: var(--cream3); margin: 11px auto 0; }
.gallery-wrap { position: relative; }
.modal-gallery { position: relative; height: 220px; overflow: hidden; background: var(--cream2); }
@media (min-width: 480px) { .modal-gallery { height: 280px; } }
@media (min-width: 768px) { .modal-gallery { height: 370px; } }
.gallery-img { display: none; width: 100%; height: 100%; }
.gallery-img.active { display: block; }
.gallery-img img { width: 100%; height: 100%; object-fit: cover; }
.gallery-prev, .gallery-next {
  position: absolute; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,0.9); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--ink); box-shadow: var(--sh-sm); transition: all var(--t);
  /* Vertically centre within the image area (220px mobile) */
  top: 110px; transform: translateY(-50%);
}
@media (min-width: 480px) { .gallery-prev, .gallery-next { top: 140px; } }
@media (min-width: 768px) { .gallery-prev, .gallery-next { top: 185px; width: 38px; height: 38px; } }
.gallery-prev { left: 12px; }
.gallery-next { right: 12px; }
.gallery-prev:hover, .gallery-next:hover { background: #fff; transform: translateY(-50%) scale(1.06); }
/* Dots sit at bottom of the image */
.gallery-dots {
  position: absolute; left: 50%; transform: translateX(-50%); display: flex; gap: 5px; z-index: 2;
  top: calc(220px - 22px);
}
@media (min-width: 480px) { .gallery-dots { top: calc(280px - 22px); } }
@media (min-width: 768px) { .gallery-dots { top: calc(370px - 22px); } }
.gallery-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,0.45); cursor: pointer; transition: all var(--t); }
.gallery-dot.active { background: #fff; width: 18px; border-radius: 3px; }
.modal-close {
  position: absolute; top: 11px; right: 11px; z-index: 10;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.9); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; font-weight: 700; box-shadow: var(--sh-sm); transition: all var(--t);
}
.modal-close:hover { background: #fff; }

.modal-body { padding: 16px; }
@media (min-width: 480px) { .modal-body { padding: 22px; } }
@media (min-width: 768px) { .modal-body { padding: 26px; } }
.modal-title { font-size: clamp(1.15rem,4vw,1.9rem); font-weight: 800; color: var(--ink); margin-bottom: 7px; letter-spacing: -0.02em; }
.modal-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.modal-location { display: flex; align-items: center; gap: 4px; color: var(--ink-lt); font-size: 0.85rem; width: 100%; }
.modal-price-num { font-size: 1.35rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.modal-price-per { font-size: 0.8rem; color: var(--ink-lt); }
.modal-rating-row { display: flex; align-items: center; gap: 5px; }
.modal-rating-row .stars { display: flex; gap: 2px; }
@media (min-width: 480px) {
  .modal-location { width: auto; }
  .modal-price-num { font-size: 1.4rem; }
}

/* SVG Stars */
.star { display: inline-flex; align-items: center; }
.star svg { display: block; }
.star.full  svg { fill: #06A97C; }
.star.half  svg { fill: #06A97C; opacity: 0.55; }
.star.empty svg { fill: #DCDFE6; }
.card-rating-overlay .star svg { width: 11px; height: 11px; fill: #FFD60A; }
.card-rating-overlay .star.empty svg { fill: rgba(255,255,255,0.4); }

.modal-desc { color: var(--ink-mid); line-height: 1.75; margin-bottom: 22px; font-size: 0.925rem; }
.modal-section-title { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 12px; letter-spacing: -0.01em; }

.amenities-grid { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
@media (min-width: 480px) { .amenities-grid { gap: 7px; margin-bottom: 24px; } }
.amenity-item {
  display: inline-flex; align-items: center;
  padding: 4px 11px; border-radius: 999px;
  background: var(--cream2); border: 1px solid var(--border);
  font-size: 0.72rem; font-weight: 600; color: var(--ink-mid);
}
.amenity-item-icon { display: none; }

.contact-card { background: var(--g800); border-radius: var(--r-xl); padding: 18px; margin-bottom: 22px; color: #fff; }
@media (min-width: 480px) { .contact-card { padding: 24px; margin-bottom: 26px; } }
.contact-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 3px; letter-spacing: -0.01em; }
.contact-sub { color: rgba(255,255,255,0.55); font-size: 0.82rem; margin-bottom: 14px; line-height: 1.5; }
.contact-icon-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 18px;
}
.btn-icon-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 12px;
  transition: color var(--t), transform var(--t);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.btn-icon-contact:hover {
  color: #fff;
  transform: translateY(-2px);
}
.btn-icon-contact svg { flex-shrink: 0; }
.booking-note { display: none; }
.pending-badge { display: none; }

/* ── TRUSTPILOT-STYLE REVIEWS ─────────────────────────────── */
.reviews-section { margin-bottom: 26px; }
.reviews-summary {
  display: flex; align-items: center; gap: 20px; margin-bottom: 20px;
  padding: 20px; background: var(--cream2); border-radius: var(--r-lg);
}
.reviews-big-num { font-size: 3.2rem; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -0.05em; }
.reviews-out-of  { font-size: 0.75rem; color: var(--ink-lt); margin-top: 3px; }
.reviews-stars   { display: flex; gap: 3px; }
.reviews-stars .star svg { width: 22px; height: 22px; }
.reviews-count   { font-size: 0.78rem; color: var(--ink-lt); margin-top: 2px; }

/* Trustpilot-style review card */
.review-card {
  background: #fff; border-radius: var(--r-lg); padding: 18px 20px;
  margin-bottom: 10px; border: 1px solid var(--border);
  transition: box-shadow var(--t);
}
.review-card:hover { box-shadow: var(--sh-sm); }
.review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg,var(--g400),var(--g600));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.review-name  { font-weight: 700; font-size: 0.875rem; color: var(--ink); }
.review-date  { font-size: 0.72rem; color: var(--ink-lt); margin-top: 1px; }
.review-stars { display: flex; gap: 2px; margin-left: auto; flex-shrink: 0; }
.review-stars .star svg { width: 16px; height: 16px; }
.review-tp-bar {
  display: flex; gap: 2px; margin-bottom: 10px;
}
.review-tp-bar .star svg { width: 28px; height: 28px; }
.review-comment { color: var(--ink-mid); font-size: 0.875rem; line-height: 1.7; }

.write-review { background: var(--cream2); border-radius: var(--r-lg); padding: 20px; border: 1px solid var(--border); margin-top: 16px; }
.write-review-title { font-weight: 700; font-size: 0.9rem; color: var(--ink); margin-bottom: 12px; }
.star-picker { display: flex; gap: 5px; margin-bottom: 12px; }
.star-pick-btn { font-size: 1.8rem; color: var(--cream3); cursor: pointer; transition: color var(--t); background: none; border: none; }
.star-pick-btn.selected { color: #FFD60A; }

.form-input, .form-textarea {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  font-size: 0.875rem; color: var(--ink);
  outline: none; transition: border-color var(--t); background: #fff;
}
.form-input:focus, .form-textarea:focus { border-color: var(--g500); }
.form-textarea { resize: vertical; min-height: 82px; margin-bottom: 9px; }

.login-prompt { background: var(--cream2); border-radius: var(--r-md); padding: 13px 16px; color: var(--ink-mid); font-size: 0.85rem; text-align: center; }
.login-prompt a { font-weight: 700; color: var(--g700); border-bottom: 1.5px solid currentColor; }

/* ============================================================ AUTH */
.auth-page { min-height: 100svh; display: grid; grid-template-columns: 1fr 1fr; }
@media (max-width: 768px) { .auth-page { grid-template-columns: 1fr; } }
.auth-visual {
  background: linear-gradient(160deg,var(--g900),var(--g700));
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 60px; position: relative; overflow: hidden;
}
@media (max-width: 768px) { .auth-visual { display: none; } }
.auth-visual-title { font-size: 2.8rem; font-weight: 800; color: #fff; margin-bottom: 12px; letter-spacing: -0.03em; }
.auth-visual-sub   { color: rgba(255,255,255,0.58); font-size: 0.975rem; max-width: 360px; }
.auth-visual-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 70% 30%, rgba(34,139,87,0.2) 0%, transparent 50%); }
.auth-form-wrap {
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 60px 40px; background: #fff;
}
.auth-logo { margin-bottom: 32px; }
.auth-logo img { width: 72px; height: 72px; margin: 0 auto 8px; }
.auth-logo-text { font-size: 1rem; font-weight: 700; color: var(--g700); text-align: center; letter-spacing: -0.01em; }
.auth-box { width: 100%; max-width: 400px; }
.auth-title { font-size: clamp(1.5rem,3vw,1.9rem); color: var(--ink); margin-bottom: 4px; }
.auth-sub   { color: var(--ink-lt); margin-bottom: 24px; font-size: 0.9rem; }
.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--ink-mid); margin-bottom: 6px; }
.form-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.auth-tabs  { display: flex; background: var(--cream2); border-radius: var(--r-md); padding: 3px; margin-bottom: 22px; }
.auth-tab   { flex: 1; padding: 9px; border-radius: var(--r-sm); font-weight: 600; font-size: 0.875rem; text-align: center; color: var(--ink-lt); cursor: pointer; transition: all var(--t); }
.auth-tab.active { background: #fff; color: var(--ink); box-shadow: var(--sh-sm); }
.auth-divider { text-align: center; position: relative; margin: 18px 0; color: var(--ink-lt); font-size: 0.8rem; }
.auth-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--border); }
.auth-divider span { background: #fff; padding: 0 11px; position: relative; }

/* ============================================================ DASHBOARD */
.dashboard { min-height: 100svh; display: grid; grid-template-columns: 260px 1fr; grid-template-rows: 72px 1fr; }
@media (max-width: 900px) { .dashboard { grid-template-columns: 1fr; } .sidebar { display: none; } .sidebar.open { display: flex; position: fixed; inset: 0; z-index: 1500; } }
.sidebar { grid-row: 1/-1; background: var(--g900); display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,0.05); }
.sidebar-logo { padding: 18px 20px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,0.05); height: 72px; }
.sidebar-logo img { width: 34px; }
.sidebar-logo-text { font-size: 0.95rem; font-weight: 700; color: #fff; letter-spacing: -0.01em; }
.sidebar-nav { flex: 1; padding: 12px 9px; overflow-y: auto; }
.sidebar-section-label { font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.22); padding: 9px 11px 5px; }
.sidebar-item { display: flex; align-items: center; gap: 10px; padding: 9px 11px; border-radius: var(--r-md); color: rgba(255,255,255,0.52); font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: all var(--t); margin-bottom: 1px; }
.sidebar-item:hover { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.88); }
.sidebar-item.active { background: rgba(74,175,126,0.14); color: #fff; }
.sidebar-item.active .sidebar-icon { color: var(--g400); }
.sidebar-icon { font-size: 0.95rem; width: 18px; text-align: center; }
.sidebar-badge { margin-left: auto; background: var(--gold); color: #fff; border-radius: 10px; padding: 1px 6px; font-size: 0.65rem; font-weight: 700; }
.sidebar-footer { padding: 12px 9px; border-top: 1px solid rgba(255,255,255,0.05); }
.sidebar-user { display: flex; align-items: center; gap: 9px; padding: 8px 11px; border-radius: var(--r-md); }
.sidebar-avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg,var(--g400),var(--g600)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 0.85rem; flex-shrink: 0; }
.sidebar-user-name { font-size: 0.8rem; font-weight: 600; color: #fff; }
.sidebar-user-role { font-size: 0.66rem; color: rgba(255,255,255,0.3); }
.dash-header { grid-column: 2; background: #fff; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; padding: 0 28px; height: 72px; position: sticky; top: 0; z-index: 100; }
@media (max-width: 900px) { .dash-header { grid-column: 1; } }
.dash-header-title { font-size: 0.95rem; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.dash-main { grid-column: 2; padding: 26px 28px; overflow-y: auto; background: var(--cream2); }
@media (max-width: 900px) { .dash-main { grid-column: 1; } }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(185px,1fr)); gap: 14px; margin-bottom: 24px; }
.stat-card { background: #fff; border-radius: var(--r-xl); padding: 20px; border: 1px solid var(--border); transition: all var(--t); }
.stat-card:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.stat-icon { width: 42px; height: 42px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.stat-icon.green  { background: var(--g100); }
.stat-icon.gold   { background: rgba(201,152,58,0.1); }
.stat-icon.blue   { background: rgba(59,130,246,0.1); }
.stat-icon.red    { background: rgba(239,68,68,0.1); }
.stat-icon.purple { background: rgba(139,92,246,0.1); }
.stat-icon svg    { width: 19px; height: 19px; }
.stat-num   { font-size: 1.9rem; font-weight: 800; color: var(--ink); line-height: 1; letter-spacing: -0.03em; }
.stat-label { font-size: 0.78rem; color: var(--ink-lt); margin-top: 4px; }
.stat-delta { font-size: 0.72rem; color: var(--g500); font-weight: 600; margin-top: 2px; }
.data-card { background: #fff; border-radius: var(--r-xl); border: 1px solid var(--border); overflow: hidden; margin-bottom: 18px; }
.data-card-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--border); }
.data-card-title { font-size: 0.95rem; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { text-align: left; padding: 10px 16px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-lt); background: var(--cream2); border-bottom: 1px solid var(--border); }
.data-table td { padding: 13px 16px; border-bottom: 1px solid var(--border); font-size: 0.85rem; color: var(--ink-mid); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--cream2); }
.status-badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 9px; border-radius: var(--r-2xl); font-size: 0.67rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.status-badge.pending    { background: rgba(201,152,58,0.09); color: var(--gold-dk); }
.status-badge.successful { background: var(--g100); color: var(--g700); }
.status-badge.cancelled  { background: rgba(239,68,68,0.07); color: #dc2626; }
.status-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }

/* ============================================================ LIST PROPERTY */
.list-page { min-height: 100svh; background: #fff; padding-top: 72px; }
.list-hero { background: linear-gradient(135deg,var(--g800),var(--g900)); padding: 54px 24px; text-align: center; }
.list-hero-title { color: #fff; margin-bottom: 9px; }
.list-hero-sub { color: rgba(255,255,255,0.58); font-size: 0.975rem; }
.list-form-wrap { max-width: 780px; margin: 0 auto; padding: 34px 22px 80px; }
.step-indicator { display: flex; align-items: center; margin-bottom: 32px; }
.step { display: flex; align-items: center; gap: 8px; flex: 1; position: relative; }
.step::after { content: ''; flex: 1; height: 2px; background: var(--cream3); margin: 0 5px; }
.step:last-child::after { display: none; }
.step.done::after { background: var(--g500); }
.step-num { width: 32px; height: 32px; border-radius: 50%; border: 2px solid var(--cream3); background: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; color: var(--ink-lt); flex-shrink: 0; transition: all var(--t); }
.step.active .step-num { border-color: var(--g700); background: var(--g700); color: #fff; }
.step.done  .step-num  { border-color: var(--g500); background: var(--g500); color: #fff; }
.step-label { font-size: 0.72rem; font-weight: 600; color: var(--ink-lt); white-space: nowrap; }
.step.active .step-label { color: var(--g700); }
.form-card { background: #fff; border-radius: var(--r-xl); padding: 30px; border: 1px solid var(--border); margin-bottom: 16px; }
.form-card-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.01em; }
.form-card-sub { color: var(--ink-lt); font-size: 0.85rem; margin-bottom: 22px; }
.amenity-checkgrid { display: grid; grid-template-columns: repeat(auto-fill,minmax(165px,1fr)); gap: 7px; margin-top: 12px; }
.amenity-check { display: flex; align-items: center; gap: 7px; padding: 9px 12px; border-radius: var(--r-md); border: 1.5px solid var(--border); cursor: pointer; transition: all var(--t); }
.amenity-check:hover { border-color: var(--g400); }
.amenity-check.checked { border-color: var(--g700); background: var(--g100); }
.amenity-check input { display: none; }
.amenity-check-icon { font-size: 1.05rem; }
.amenity-check-name { font-size: 0.8rem; font-weight: 600; color: var(--ink-mid); }
.image-upload-zone { border: 2px dashed var(--cream3); border-radius: var(--r-xl); padding: 34px; text-align: center; cursor: pointer; transition: all var(--t); }
.image-upload-zone:hover { border-color: var(--g400); background: var(--g100); }
.upload-icon { font-size: 2rem; margin-bottom: 9px; }
.upload-text { font-weight: 600; color: var(--ink-mid); margin-bottom: 4px; }
.upload-hint { font-size: 0.75rem; color: var(--ink-lt); }
.image-preview-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(88px,1fr)); gap: 7px; margin-top: 12px; }
.img-preview { aspect-ratio: 1; border-radius: var(--r-md); overflow: hidden; position: relative; }
.img-preview img { width: 100%; height: 100%; object-fit: cover; }
.img-preview-remove { position: absolute; top: 3px; right: 3px; width: 19px; height: 19px; border-radius: 50%; background: rgba(0,0,0,0.6); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.62rem; cursor: pointer; }
.form-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; }

/* ============================================================ FOOTER — white */
footer { background: #fff; border-top: 1px solid var(--border); }
.footer-top { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; padding: 52px 32px 44px; border-bottom: 1px solid var(--border); }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; padding: 36px 22px; } }
@media (max-width: 600px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 11px; }
.footer-brand-logo img { width: 72px; height: 72px; object-fit: contain; }
.footer-brand-name { font-size: 0.95rem; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
.footer-brand-desc { color: var(--ink-lt); font-size: 0.85rem; line-height: 1.7; max-width: 280px; }
.footer-col-title { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-lt); margin-bottom: 12px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--ink-mid); font-size: 0.85rem; transition: color var(--t); }
.footer-links a:hover { color: var(--g700); }
.footer-bottom { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 16px 32px; flex-wrap: wrap; gap: 12px; }
.footer-legal { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.footer-copy { font-size: 0.78rem; color: var(--ink-lt); }
.footer-sep { color: var(--cream3); font-size: 0.68rem; }
.footer-legal-btn { font-size: 0.78rem; color: var(--ink-lt); transition: color var(--t); background: none; border: none; cursor: pointer; }
.footer-legal-btn:hover { color: var(--g700); }
.footer-right { display: flex; align-items: center; gap: 16px; }
.footer-currency { font-size: 0.78rem; color: var(--ink-lt); display: flex; align-items: center; gap: 4px; font-weight: 600; }
.footer-social { display: flex; gap: 7px; }
.social-btn { width: 32px; height: 32px; border-radius: 50%; background: var(--cream2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--ink-lt); transition: all var(--t); }
.social-btn:hover { background: var(--g700); border-color: var(--g700); color: #fff; }
.footer-pad { padding-bottom: 16px; }

/* ============================================================ MISC */
.toast { position: fixed; bottom: 22px; left: 50%; transform: translateX(-50%) translateY(18px); background: var(--ink); color: #fff; padding: 12px 20px; border-radius: var(--r-md); font-size: 0.875rem; font-weight: 500; box-shadow: var(--sh-lg); z-index: 9999; opacity: 0; transition: all 0.35s var(--ease); white-space: nowrap; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.toast-success { background: var(--g700); }
.toast.toast-error   { background: #dc2626; }
.simple-page { padding: 120px 24px 80px; max-width: 800px; margin: 0 auto; }
.simple-page h1 { margin-bottom: 5px; }
.simple-page .lead { color: var(--ink-lt); font-size: 0.975rem; margin-bottom: 32px; }
.simple-page h2 { font-size: 1.15rem; margin: 24px 0 9px; }
.simple-page p, .simple-page li { color: var(--ink-mid); line-height: 1.8; margin-bottom: 9px; }
.simple-page ul { padding-left: 16px; }
.gate-overlay { position: fixed; inset: 0; z-index: 3000; background: rgba(0,0,0,0.48); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; padding: 22px; opacity: 0; pointer-events: none; transition: opacity var(--t); }
.gate-overlay.open { opacity: 1; pointer-events: all; }
.gate-card { background: #fff; border-radius: var(--r-xl); padding: 38px; max-width: 370px; width: 100%; text-align: center; transform: translateY(14px) scale(0.97); transition: transform var(--t); }
.gate-overlay.open .gate-card { transform: none; }
.gate-icon  { font-size: 2.2rem; margin-bottom: 12px; }
.gate-title { font-size: 1.6rem; font-weight: 800; margin-bottom: 7px; letter-spacing: -0.02em; }
.gate-sub   { color: var(--ink-lt); margin-bottom: 20px; font-size: 0.875rem; }
.gate-btns  { display: flex; flex-direction: column; gap: 8px; }
.mobile-menu-overlay { display: none; position: fixed; inset: 0; z-index: 1500; background: rgba(0,0,0,0.38); backdrop-filter: blur(4px); }
.mobile-menu-overlay.open { display: flex; }
.mobile-menu { position: absolute; top: 72px; left: 0; right: 0; background: #fff; padding: 14px; border-bottom: 1px solid var(--border); box-shadow: var(--sh-md); }
.mobile-menu a, .mobile-menu button { display: block; padding: 12px 13px; border-radius: var(--r-md); font-size: 0.925rem; font-weight: 600; color: var(--ink-mid); transition: all var(--t); width: 100%; text-align: left; }
.mobile-menu a:hover, .mobile-menu button:hover { background: var(--cream2); color: var(--g700); }
.mobile-menu-divider { height: 1px; background: var(--border); margin: 7px 0; }
.mob-menu-btn { display: none; background: none; border: none; cursor: pointer; color: var(--ink); font-size: 1.25rem; padding: 4px; }
@media (max-width: 900px) { .mob-menu-btn { display: block; } }

@keyframes fadeUp { from{opacity:0;transform:translateY(16px)}to{opacity:1;transform:none} }
@keyframes fadeIn { from{opacity:0}to{opacity:1} }
.fade-up { animation: fadeUp 0.7s var(--ease) both; }
.delay-1 { animation-delay:.1s; }
.delay-2 { animation-delay:.2s; }
.delay-3 { animation-delay:.3s; }
.empty-state { text-align: center; padding: 52px 22px; color: var(--ink-lt); }
.empty-state-icon  { display: flex; justify-content: center; margin-bottom: 12px; }
.empty-state-icon svg { width: 44px; height: 44px; color: var(--ink-lt); }
.empty-state-title { font-size: 1.3rem; font-weight: 700; color: var(--ink); margin-bottom: 6px; letter-spacing: -0.01em; }
.notif-dot { width: 7px; height: 7px; border-radius: 50%; background: #ff3b30; display: inline-block; margin-left: 3px; }

/* Nav icon pills */
.nav-link-icon { display: flex; align-items: center; gap: 6px; }
.nav-link-icon svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-link-icon img { width: 28px; height: 28px; flex-shrink: 0; object-fit: contain; display: block; }

/* Star picker for review form */
.star-picker { display: flex; gap: 6px; margin-bottom: 6px; }
.star-pick-btn {
  font-size: 0; background: none; border: none; padding: 2px;
  cursor: pointer; transition: transform 0.12s;
}
.star-pick-btn svg { width: 36px; height: 36px; fill: #DCDFE6; transition: fill 0.1s, transform 0.1s; display: block; }
.star-pick-btn:hover svg, .star-pick-btn.hovered svg { fill: #06A97C; transform: scale(1.15); }
.star-pick-btn.selected svg { fill: #06A97C; }

@media (max-width: 1024px) { .host-band { grid-template-columns: 1fr; padding: 22px 24px; } }
@media (max-width: 768px) {
  .nav-links, .nav-auth-btns, .nav-user-menu { display: none !important; }
  .nav-hamburger { display: flex; }
  .hero { padding: 80px 16px 32px; }
  .search { flex-direction: column; border-radius: 20px; gap: 0; }
  .as-field { padding: 12px 18px; }
  .as-divider { width: auto; height: 1px; margin: 0 16px; }
  .as-btn { width: 100%; border-radius: 12px; margin: 8px 10px 10px; }
  .footer-top { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .host-band { padding: 18px 20px; margin: 0 16px 36px; grid-template-columns: 1fr; }
  .host-band-perks { grid-template-columns: 1fr; }
  .listings-section, .cities-section { padding-left: 16px; padding-right: 16px; }
}
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr 1fr; } }

/* ============================================================ MOBILE BOTTOM TABS */
.bottom-tab-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 800;
  background: #fff; border-top: 1px solid var(--border);
  padding: 6px 0 env(safe-area-inset-bottom, 6px);
}
.bottom-tab {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 4px 2px; color: var(--ink-lt); font-size: 0.6rem; font-weight: 600;
  text-decoration: none; transition: color var(--t); letter-spacing: 0.01em;
}
.bottom-tab.active { color: var(--g700); }
.bottom-tab img,
.bottom-tab svg {
  width: 28px;
  height: 28px;
  display: block;
  margin-bottom: 2px;
  flex-shrink: 0;
  object-fit: contain;
}

.load-more-wrap { display: flex; justify-content: center; padding: 28px 0 8px; }
.btn-load-more {
  padding: 12px 36px; border-radius: 50px;
  border: 1.5px solid var(--g700); color: var(--g700);
  font-size: 0.9rem; font-weight: 600; font-family: var(--font);
  background: #fff; cursor: pointer; transition: all var(--t);
}
.btn-load-more:hover { background: var(--g700); color: #fff; }

/* ============================================================ MOBILE STICKY SEARCH HEADER */
.mob-sticky-header {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #fff;
  padding: 10px 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.mob-sticky-pill {
  display: flex; align-items: center; gap: 10px;
  width: 100%; background: #fff;
  border: 1.5px solid #ddd; border-radius: 50px;
  padding: 12px 18px; cursor: pointer; text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  font-size: 0.9rem; color: var(--ink-lt); font-weight: 500;
  font-family: var(--font); transition: box-shadow var(--t);
}
.mob-sticky-pill svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--g700); }
.mob-sticky-pill:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.13); }


/* ============================================================ MOBILE SEARCH MODAL */
.mob-search-overlay {
  display: none; position: fixed; inset: 0; z-index: 3000;
  background: #f7f7f7; flex-direction: column;
}
.mob-search-overlay.open { display: flex; animation: mobSlideUp 0.28s var(--ease); }
@keyframes mobSlideUp { from { transform: translateY(40px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.mob-search-header {
  background: #fff; padding: 14px 16px;
  display: flex; align-items: center; gap: 14px;
  border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.mob-search-close {
  width: 32px; height: 32px; border-radius: 50%; background: var(--cream2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  border: 1px solid var(--border);
}
.mob-search-close svg { width: 14px; height: 14px; }
.mob-search-title { font-size: 0.975rem; font-weight: 700; color: var(--ink); }

.mob-search-body { flex: 1; overflow-y: auto; padding: 14px; display: flex; flex-direction: column; gap: 10px; }

.mob-search-card {
  background: #fff; border-radius: 16px; border: 1.5px solid var(--border);
  overflow: hidden; transition: border-color var(--t), box-shadow var(--t);
}
.mob-search-card.active { border-color: var(--ink); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.mob-search-card-header {
  padding: 16px 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.mob-search-card-label { font-size: 0.68rem; font-weight: 700; color: var(--ink-lt); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 3px; }
.mob-search-card-value { font-size: 0.95rem; font-weight: 600; color: var(--ink); }
.mob-card-chevron { flex-shrink: 0; color: var(--ink-lt); transition: transform var(--t); }
.mob-search-card.active .mob-card-chevron { transform: rotate(180deg); }
.mob-search-card-body { padding: 0 14px 14px; display: none; }
.mob-search-card.active .mob-search-card-body { display: block; }

.mob-city-list { display: flex; flex-direction: column; gap: 2px; }
.mob-city-item {
  padding: 11px 12px; border-radius: 10px; cursor: pointer;
  font-size: 0.9rem; font-weight: 500; color: var(--ink);
  display: flex; align-items: center; gap: 12px; transition: background var(--t);
}
.mob-city-item:hover { background: var(--cream2); }
.mob-city-item.selected { background: var(--g100); color: var(--g700); font-weight: 700; }
.mob-city-item svg { width: 15px; height: 15px; flex-shrink: 0; opacity: 0.6; }

.mob-price-row { display: flex; gap: 10px; align-items: flex-start; }
.mob-price-input-wrap { flex: 1; }
.mob-price-input-wrap label { font-size: 0.72rem; font-weight: 700; color: var(--ink-lt); display: block; margin-bottom: 5px; }
.mob-price-input-wrap input {
  width: 100%; border: 1.5px solid var(--border); border-radius: 10px;
  padding: 10px 12px; font-family: var(--font); font-size: 0.9rem; outline: none; color: var(--ink);
}
.mob-price-input-wrap input:focus { border-color: var(--ink); }
.mob-name-input {
  width: 100%; border: 1.5px solid var(--border); border-radius: 10px;
  padding: 12px 14px; font-family: var(--font); font-size: 0.95rem;
  outline: none; color: var(--ink);
}
.mob-name-input:focus { border-color: var(--ink); }

.mob-search-footer {
  background: #fff; border-top: 1px solid var(--border);
  padding: 14px 16px; padding-bottom: max(14px, env(safe-area-inset-bottom));
  display: flex; align-items: center; justify-content: space-between; flex-shrink: 0;
}
.mob-clear-btn {
  color: var(--ink); text-decoration: underline; font-size: 0.875rem; font-weight: 600;
  background: none; border: none; cursor: pointer; font-family: var(--font);
}
.mob-search-btn {
  background: var(--g700); color: #fff; border-radius: 50px;
  padding: 13px 26px; font-size: 0.9rem; font-weight: 700; border: none;
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  font-family: var(--font); transition: background var(--t);
}
.mob-search-btn:hover { background: var(--g800); }
.mob-search-btn svg { width: 15px; height: 15px; }

/* ============================================================ MOBILE NAV AUTH */
.mob-nav-auth { display: none; }

/* ============================================================ MOBILE OVERRIDES */
@media (max-width: 768px) {
  /* Bottom tabs */
  .bottom-tab-bar { display: flex; }

  /* Hide desktop nav and hero; sticky search pill takes over */
  .nav { display: none !important; }
  .hero { display: none !important; }
  .mob-sticky-header { display: flex; }

  /* Body padding: top for sticky search, bottom for tab bar */
  body { padding-top: 62px; padding-bottom: calc(65px + env(safe-area-inset-bottom, 0px)); }

  /* 2-column mini-desktop cards */
  .listings-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .card-image-wrap {
  position: absolute;
  inset: 0;
  height: 100%;
}
  .card-body { padding: 8px 10px 10px; }
  .card-name { font-size: 0.78rem; font-weight: 700; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .card-location { font-size: 0.68rem; margin-bottom: 5px; }
  .card-amenities { display: flex; flex-wrap: nowrap; gap: 3px; margin-bottom: 7px; overflow: hidden; }
  .amenity-chip { font-size: 0.6rem; padding: 2px 6px; white-space: nowrap; }
  .amenity-chip-more { font-size: 0.6rem; padding: 2px 5px; white-space: nowrap; }
  .card-price-num { font-size: 0.9rem; }
  .card-price-per { font-size: 0.65rem; }
  .btn-explore { padding: 6px 10px; font-size: 0.7rem; }
  .listings-section { padding-left: 12px; padding-right: 12px; padding-bottom: 20px; }

  /* Toast above tab bar */
  .toast { bottom: 80px; }

  /* Host band — shrink and add side breathing room */
  .host-band { margin: 0 16px 40px !important; padding: 22px 20px; }
  .host-band-tag { font-size: 0.6rem; }
  .host-band-title { font-size: 1.1rem !important; }
  .host-band-sub { font-size: 0.75rem; line-height: 1.5; }
  .host-perk { font-size: 0.78rem; }
  .host-perk-icon { width: 28px; height: 28px; }
  .host-perk-icon svg { width: 13px; height: 13px; }
  .btn-gold { padding: 10px 20px; font-size: 0.85rem; }
}
