/* ═══════════════════════════════════════════════════════
   STAYNI DESIGN SYSTEM v2
   Typeface: DM Serif Display + DM Sans
   Palette: Deep Forest / Warm Cream / Slate
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&display=swap');

/* ── TOKENS ─────────────────────────────────────────── */
:root {
  --green:    #0A3D2E;
  --teal:     #1A7A55;
  --mint:     #5AB99A;
  --pale:     #EDF5F1;
  --cream:    #F9F7F4;
  --stone:    #F0ECE6;
  --sand:     #E8E2DA;
  --ink:      #111110;
  --charcoal: #2A2A28;
  --muted:    #6B6B68;
  --light:    #9E9E9A;
  --line:     rgba(10,61,46,0.09);
  --serif:    'DM Serif Display', Georgia, serif;
  --sans:     'DM Sans', system-ui, sans-serif;
  --r:        12px;
  --shadow:   0 2px 20px rgba(10,61,46,0.07);
  --shadow-lg:0 8px 48px rgba(10,61,46,0.12);
}

/* ── RESET ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--ink); background: var(--cream); font-size: 15px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--sans); cursor: pointer; }
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 400; line-height: 1.15; letter-spacing: -0.01em; }

/* ── LABEL ──────────────────────────────────────── */
.label {
  font-size: 10px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--teal);
  display: flex; align-items: center; gap: 8px;
}
.label::before { content: ''; display: block; width: 18px; height: 1.5px; background: var(--teal); flex-shrink: 0; }

/* ── NAV ─────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(249,247,244,0.95); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 0 24px; height: 64px;
  display: flex; align-items: center; gap: 32px;
}
.logo { display: flex; align-items: center; gap: 10px; margin-right: 8px; }
.logo-mark { width: 32px; height: 32px; background: var(--green); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.logo-mark svg { display: block; }
.logo-text { font-family: var(--serif); font-size: 20px; color: var(--ink); }
.logo-text span { color: var(--teal); }
.nav-links { display: flex; gap: 4px; align-items: center; flex: 1; }
.nav-link { font-size: 14px; font-weight: 500; color: var(--muted); padding: 7px 12px; border-radius: 8px; transition: all 0.15s; white-space: nowrap; }
.nav-link:hover { color: var(--ink); background: var(--pale); }
.nav-link.active { color: var(--green); background: var(--pale); font-weight: 600; }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.nav-btn-ghost { font-size: 14px; font-weight: 500; color: var(--charcoal); padding: 8px 16px; border-radius: 8px; border: 1.5px solid var(--line); background: transparent; transition: all 0.15s; }
.nav-btn-ghost:hover { border-color: var(--teal); color: var(--green); }
.nav-btn-filled { font-size: 14px; font-weight: 600; color: white; padding: 8px 18px; border-radius: 8px; border: none; background: var(--green); transition: all 0.15s; }
.nav-btn-filled:hover { background: #0d4f3a; }
.nav-mob-toggle { display: none; padding: 8px; background: none; border: none; color: var(--ink); border-radius: 8px; }
.nav-mob-toggle:hover { background: var(--pale); }
.nav-drawer { display: none; position: fixed; inset: 64px 0 0 0; z-index: 199; background: var(--cream); padding: 24px; border-top: 1px solid var(--line); flex-direction: column; gap: 6px; overflow-y: auto; }
.nav-drawer.open { display: flex; }
.nav-drawer .nav-link { font-size: 16px; padding: 12px 14px; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; border-radius: 9px; font-size: 14px; font-weight: 600; border: none; cursor: pointer; transition: all 0.15s; white-space: nowrap; font-family: var(--sans); }
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--green); color: white; }
.btn-secondary { background: var(--cream); color: var(--green); border: 1.5px solid var(--line); }
.btn-secondary:hover { border-color: var(--teal); opacity: 1; transform: translateY(-1px); }
.btn-outline { background: transparent; color: white; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline:hover { background: rgba(255,255,255,0.1); opacity: 1; }
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 10px; }
.btn-sm { padding: 7px 14px; font-size: 13px; border-radius: 7px; }

/* ── FORMS ────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 6px; }
.field-label { font-size: 11px; font-weight: 600; letter-spacing: 0.5px; color: var(--muted); text-transform: uppercase; }
.input { width: 100%; padding: 11px 14px; border-radius: var(--r); border: 1.5px solid var(--line); background: white; font-family: var(--sans); font-size: 14px; color: var(--ink); outline: none; transition: border-color 0.15s; -webkit-appearance: none; }
.input:focus { border-color: var(--teal); }
.input::placeholder { color: var(--light); }
.select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236B6B68'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
.textarea { resize: vertical; min-height: 100px; }

/* ── CARDS ────────────────────────────────────────── */
.card { background: white; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }

/* ── PROPERTY GRID ───────────────────────────────── */
.prop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.prop-card { border-radius: 14px; overflow: hidden; background: white; border: 1px solid var(--line); transition: transform 0.2s, box-shadow 0.2s; cursor: pointer; }
.prop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.prop-img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--stone); }
.prop-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.prop-card:hover .prop-img img { transform: scale(1.04); }
.prop-badge { position: absolute; top: 12px; left: 12px; background: white; color: var(--green); font-size: 11px; font-weight: 700; padding: 3px 9px; border-radius: 20px; letter-spacing: 0.3px; }
.prop-save { position: absolute; top: 10px; right: 10px; width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.9); border: none; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--charcoal); transition: all 0.15s; backdrop-filter: blur(4px); }
.prop-save:hover { background: white; color: #c0392b; }
.prop-save.saved { color: #c0392b; }
.prop-body { padding: 14px 16px 16px; }
.prop-type { font-size: 11px; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.prop-name { font-family: var(--serif); font-size: 17px; color: var(--ink); margin-bottom: 3px; line-height: 1.2; }
.prop-location { font-size: 13px; color: var(--muted); margin-bottom: 10px; }
.prop-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.prop-tag { font-size: 11px; color: var(--muted); background: var(--stone); padding: 3px 8px; border-radius: 6px; }
.prop-foot { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 11px; }
.prop-price-n { font-family: var(--serif); font-size: 19px; color: var(--ink); }
.prop-price-u { font-size: 12px; color: var(--muted); }
.prop-rating { font-size: 13px; color: var(--charcoal); font-weight: 600; display: flex; align-items: center; gap: 3px; }
.prop-rating-star { color: var(--teal); font-size: 13px; }

/* ── HERO ─────────────────────────────────────────── */
.hero { background: var(--green); padding: 72px 24px 80px; position: relative; }
.hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 80% 60% at 70% 50%, rgba(26,122,85,0.3) 0%, transparent 70%); pointer-events: none; }
.hero-inner { max-width: 1200px; margin: 0 auto; position: relative; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); border-radius: 20px; padding: 5px 14px 5px 8px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.75); letter-spacing: 0.5px; margin-bottom: 24px; }
.hero-eyebrow-dot { width: 6px; height: 6px; background: var(--mint); border-radius: 50%; }
.hero h1 { font-family: var(--serif); font-size: clamp(2.4rem, 5.5vw, 4rem); color: white; line-height: 1.1; margin-bottom: 16px; }
.hero h1 em { color: var(--mint); font-style: italic; }
.hero-sub { font-size: clamp(15px, 1.8vw, 17px); color: rgba(255,255,255,0.65); max-width: 500px; margin-bottom: 36px; line-height: 1.7; }
.hero-stats { display: flex; gap: 32px; margin-top: 32px; flex-wrap: wrap; }
.hero-stat-n { font-family: var(--serif); font-size: 22px; color: white; line-height: 1; }
.hero-stat-l { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ── SEARCH WIDGET ───────────────────────────────── */
.search-widget { background: white; border-radius: 14px; display: flex; align-items: stretch; box-shadow: 0 8px 40px rgba(0,0,0,0.18); max-width: 740px; overflow: hidden; }
.sw-field { flex: 1; padding: 14px 20px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.sw-label { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--teal); }
.sw-input { border: none; outline: none; font-family: var(--sans); font-size: 14px; font-weight: 500; color: var(--ink); background: transparent; width: 100%; padding: 0; }
.sw-input::placeholder { color: var(--light); font-weight: 400; }
.sw-btn { background: var(--green); color: white; border: none; padding: 0 28px; font-size: 14px; font-weight: 600; font-family: var(--sans); cursor: pointer; white-space: nowrap; transition: background 0.15s; flex-shrink: 0; display: flex; align-items: center; gap: 8px; }
.sw-btn:hover { background: #0d4f3a; }

/* ── CATEGORY STRIP ──────────────────────────────── */
.cat-strip { display: flex; gap: 8px; overflow-x: auto; padding: 4px 0; scrollbar-width: none; }
.cat-strip::-webkit-scrollbar { display: none; }
.cat-pill { display: flex; align-items: center; gap: 7px; padding: 8px 16px; border-radius: 24px; white-space: nowrap; font-size: 13px; font-weight: 500; color: var(--muted); background: white; border: 1.5px solid var(--line); cursor: pointer; transition: all 0.15s; flex-shrink: 0; }
.cat-pill:hover { border-color: var(--teal); color: var(--green); }
.cat-pill.active { background: var(--green); color: white; border-color: var(--green); }

/* ── SECTIONS ────────────────────────────────────── */
.section { padding: 64px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 32px; flex-wrap: wrap; gap: 12px; }
.section-head h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
.view-all { font-size: 14px; font-weight: 600; color: var(--teal); display: flex; align-items: center; gap: 4px; transition: gap 0.15s; }
.view-all:hover { gap: 8px; }

/* ── DESTINATION TILES ───────────────────────────── */
.dest-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.dest-tile { border-radius: 12px; padding: 20px; min-height: 110px; display: flex; flex-direction: column; justify-content: flex-end; position: relative; overflow: hidden; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
.dest-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.dest-tile-name { font-family: var(--serif); font-size: 16px; color: white; line-height: 1.2; margin-bottom: 3px; }
.dest-tile-count { font-size: 12px; color: rgba(255,255,255,0.55); }

/* ── TRUST STRIP ─────────────────────────────────── */
.trust-strip { background: var(--green); padding: 56px 24px; }
.trust-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 32px; }
.trust-item { text-align: center; }
.trust-icon-wrap { width: 48px; height: 48px; margin: 0 auto 12px; background: rgba(255,255,255,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.trust-icon-wrap svg { display: block; }
.trust-title { font-family: var(--serif); font-size: 17px; color: white; margin-bottom: 6px; }
.trust-body { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ── HOST CTA ─────────────────────────────────────── */
.host-cta { background: var(--stone); border-top: 1px solid var(--sand); border-bottom: 1px solid var(--sand); padding: 64px 24px; text-align: center; }
.host-cta-inner { max-width: 600px; margin: 0 auto; }
.host-cta h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); margin-bottom: 12px; }
.host-cta p { font-size: 15px; color: var(--muted); line-height: 1.7; margin-bottom: 28px; }
.fee-badges { display: flex; gap: 10px; justify-content: center; margin-bottom: 24px; flex-wrap: wrap; }
.fee-badge { background: var(--pale); border: 1px solid rgba(26,122,85,0.2); border-radius: 8px; padding: 10px 18px; text-align: center; }
.fee-badge-n { font-family: var(--serif); font-size: 22px; color: var(--green); }
.fee-badge-l { font-size: 11px; color: var(--muted); margin-top: 1px; }

/* ── FOOTER ───────────────────────────────────────── */
footer { background: var(--ink); padding: 56px 24px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo-text { color: white; }
.footer-brand .logo-text span { color: var(--mint); }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.7; margin-top: 12px; max-width: 240px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 10px; transition: color 0.15s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; color: rgba(255,255,255,0.25); }

/* ── LISTING PAGE ─────────────────────────────────── */
.listing-layout { max-width: 1200px; margin: 0 auto; padding: 32px 24px; display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; }
.filter-sidebar { position: sticky; top: 80px; background: white; border: 1px solid var(--line); border-radius: 16px; padding: 24px; }
.filter-section { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.filter-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.filter-section-title { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 14px; letter-spacing: 0.2px; }
.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip { padding: 6px 13px; border-radius: 20px; font-size: 12px; font-weight: 500; border: 1.5px solid var(--line); color: var(--muted); cursor: pointer; transition: all 0.15s; background: white; }
.filter-chip:hover { border-color: var(--teal); color: var(--green); }
.filter-chip.active { background: var(--green); border-color: var(--green); color: white; }
.range-row { display: flex; gap: 8px; align-items: center; }
.range-input { flex: 1; }

/* ── PROPERTY PAGE ────────────────────────────────── */
.prop-page { max-width: 1100px; margin: 0 auto; padding: 32px 24px; }
.photo-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 8px; border-radius: 16px; overflow: hidden; margin-bottom: 32px; height: 420px; }
.photo-grid-main { overflow: hidden; }
.photo-grid-main img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: transform 0.3s; }
.photo-grid-main img:hover { transform: scale(1.02); }
.photo-grid-side { display: grid; grid-template-rows: 1fr 1fr; gap: 8px; }
.photo-grid-side .photo-thumb { overflow: hidden; position: relative; }
.photo-grid-side img { width: 100%; height: 100%; object-fit: cover; cursor: pointer; transition: transform 0.3s; }
.photo-grid-side img:hover { transform: scale(1.03); }
.prop-page-grid { display: grid; grid-template-columns: 1fr 350px; gap: 40px; align-items: start; }
.booking-card { position: sticky; top: 80px; background: white; border: 1px solid var(--line); border-radius: 16px; padding: 24px; box-shadow: var(--shadow-lg); }
.booking-price { font-family: var(--serif); font-size: 28px; color: var(--ink); margin-bottom: 4px; }
.booking-price span { font-size: 15px; font-weight: 400; color: var(--muted); font-family: var(--sans); }
.date-row { display: grid; grid-template-columns: 1fr 1fr; border: 1.5px solid var(--line); border-radius: 10px; overflow: hidden; margin: 16px 0; }
.date-cell { padding: 11px 14px; cursor: pointer; transition: background 0.15s; }
.date-cell:first-child { border-right: 1px solid var(--line); }
.date-cell:hover { background: var(--pale); }
.date-cell-label { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--teal); }
.date-cell-val { font-size: 14px; font-weight: 500; color: var(--ink); margin-top: 2px; }
.booking-breakdown { border-top: 1px solid var(--line); margin-top: 20px; padding-top: 16px; }
.breakdown-row { display: flex; justify-content: space-between; font-size: 14px; color: var(--charcoal); margin-bottom: 8px; }
.breakdown-total { display: flex; justify-content: space-between; font-size: 15px; font-weight: 700; color: var(--ink); border-top: 1px solid var(--line); padding-top: 14px; margin-top: 10px; }

/* ── BOOKING STEPS ────────────────────────────────── */
.booking-page { max-width: 720px; margin: 48px auto; padding: 0 24px; }
.steps { display: flex; gap: 0; margin-bottom: 40px; }
.step { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; position: relative; }
.step::after { content: ''; position: absolute; top: 14px; left: 50%; right: -50%; height: 1.5px; background: var(--line); z-index: 0; }
.step:last-child::after { display: none; }
.step-num { width: 28px; height: 28px; border-radius: 50%; background: var(--stone); border: 1.5px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; color: var(--muted); position: relative; z-index: 1; transition: all 0.3s; }
.step.active .step-num { background: var(--green); border-color: var(--green); color: white; }
.step.done .step-num { background: var(--pale); border-color: var(--teal); color: var(--teal); }
.step-label { font-size: 11px; color: var(--muted); text-align: center; }
.step.active .step-label { color: var(--green); font-weight: 600; }

/* ── HOST PAGE ────────────────────────────────────── */
.host-page { max-width: 1100px; margin: 0 auto; }
.earnings-calc { background: var(--pale); border: 1px solid rgba(26,122,85,0.2); border-radius: 16px; padding: 32px; }
.calc-result { font-family: var(--serif); font-size: 2.5rem; color: var(--green); }
.how-it-works { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; margin: 40px 0; }
.how-item { text-align: center; padding: 24px; }
.how-num { font-family: var(--serif); font-size: 3rem; color: var(--teal); opacity: 0.4; line-height: 1; margin-bottom: 12px; }
.how-title { font-family: var(--serif); font-size: 18px; margin-bottom: 8px; }
.how-body { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── PAGE HERO ────────────────────────────────────── */
.page-hero { background: var(--green); padding: 56px 24px; text-align: center; }
.page-hero-inner { max-width: 600px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: white; margin-bottom: 12px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ── TOAST ────────────────────────────────────────── */
#toast-area { position: fixed; bottom: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.toast { background: var(--ink); color: white; padding: 12px 18px; border-radius: 10px; font-size: 13px; font-weight: 500; animation: toast-in 0.2s ease; box-shadow: 0 4px 24px rgba(0,0,0,0.2); max-width: 300px; }
.toast.success { background: var(--teal); }
.toast.error { background: #c0392b; }
@keyframes toast-in { from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:translateY(0)} }

/* ── DATE PICKER ──────────────────────────────────── */
.dp { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 20px; box-shadow: var(--shadow-lg); width: 320px; }
.dp-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.dp-month { font-family: var(--serif); font-size: 16px; }
.dp-nav { width: 28px; height: 28px; border: 1px solid var(--line); border-radius: 7px; background: white; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--charcoal); transition: all 0.15s; }
.dp-nav:hover { border-color: var(--teal); color: var(--green); }
.dp-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.dp-dow { text-align: center; font-size: 10px; font-weight: 700; color: var(--light); letter-spacing: 1px; text-transform: uppercase; padding: 6px 0; }
.dp-day { text-align: center; padding: 7px 4px; border-radius: 7px; font-size: 13px; cursor: pointer; color: var(--charcoal); transition: all 0.12s; }
.dp-day:hover:not(.dp-disabled) { background: var(--pale); color: var(--green); }
.dp-day.dp-selected { background: var(--green); color: white; }
.dp-day.dp-in-range { background: var(--pale); color: var(--green); border-radius: 0; }
.dp-day.dp-range-start { border-radius: 7px 0 0 7px; }
.dp-day.dp-range-end { border-radius: 0 7px 7px 0; }
.dp-day.dp-disabled { color: var(--sand); cursor: not-allowed; }
.dp-day.dp-today { font-weight: 700; }
.dp-time { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.dp-time-label { font-size: 10px; font-weight: 700; color: var(--teal); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; }

/* ── LIGHTBOX ─────────────────────────────────────── */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 1000; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.lightbox-close { position: fixed; top: 20px; right: 20px; background: rgba(255,255,255,0.1); border: none; color: white; width: 40px; height: 40px; border-radius: 50%; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.lightbox-nav { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.1); border: none; color: white; width: 48px; height: 48px; border-radius: 50%; font-size: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.15s; }
.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-counter { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); font-size: 13px; color: rgba(255,255,255,0.5); }

/* ── SHARED REVIEW STARS ──────────────────────────── */
.stars { display: flex; gap: 2px; }
.star { font-size: 14px; color: var(--teal); }

/* ── MOBILE ───────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links, .nav-right { display: none; }
  .nav-mob-toggle { display: flex; margin-left: auto; }
  .hero { padding: 48px 20px 56px; }
  .search-widget { flex-direction: column; border-radius: 12px; }
  .sw-field { border-right: none; border-bottom: 1px solid var(--line); }
  .sw-btn { padding: 14px; justify-content: center; }
  .hero-stats { gap: 20px; }
  .listing-layout { grid-template-columns: 1fr; }
  .filter-sidebar { display: none; }
  .photo-grid { grid-template-columns: 1fr; height: 260px; }
  .photo-grid-side { display: none; }
  .prop-page-grid { grid-template-columns: 1fr; }
  .booking-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .section { padding: 48px 20px; }
  .trust-grid { gap: 24px; }
}
@media (max-width: 600px) {
  .prop-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: 1; }
  .how-it-works { grid-template-columns: 1fr; }
}
