/* ── Guest theme (overrides shared tokens) ─────────────────────────────────── */
:root {
  --green:    #2c5f2e;
  --green-l:  #3d7a40;
  --gold:     #c8963c;
  --bg:       #f7f5f0;
  --bg-alt:   #ffffff;
  --text:     #2a2a2a;
  --muted:    var(--color-muted);
  --border:   #ddd8ce;
  --radius:   var(--radius-lg);
  --shadow:   0 2px 12px rgba(0,0,0,0.08);
  --nav-h:    64px;
}

/* ── Dev banner ────────────────────────────────────────────────────────────── */
#dev-banner {
  background: var(--gold); color: var(--color-white); text-align: center;
  padding: .6rem 1rem; font-size: .88rem; font-weight: 600;
  position: relative; z-index: 101;
}
#dev-banner a { color: var(--color-white); text-decoration: underline; }

/* ── Reset & base ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-family);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}

a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 { line-height: 1.2; font-weight: 700; }
h3 { font-size: 1.25rem; margin-bottom: .5rem; }

p { margin-bottom: .75rem; }
p:last-child { margin-bottom: 0; }

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

/* ── Container ──────────────────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }

/* ── Buttons ────────────────────────────────────────────────────────────────── */
.btn-primary, .btn-secondary, .btn-outline {
  display: inline-block; padding: .65rem 1.4rem;
  border-radius: var(--radius); font-size: .95rem; font-weight: 600;
  cursor: pointer; border: 2px solid transparent; transition: all .15s;
  text-align: center;
}
.btn-primary {
  background: var(--green); color: var(--color-white); border-color: var(--green);
}
.btn-primary:hover { background: var(--green-l); border-color: var(--green-l); text-decoration: none; }
.btn-primary:disabled { opacity: .4; cursor: not-allowed; }

.btn-secondary {
  background: transparent; color: var(--green); border-color: var(--green);
}
.btn-secondary:hover { background: var(--green); color: var(--color-white); text-decoration: none; }

.btn-outline {
  background: transparent; color: var(--muted); border-color: var(--border);
  font-size: .875rem;
}
.btn-outline:hover { border-color: var(--green); color: var(--green); text-decoration: none; }
.btn-sm { padding: .4rem .9rem; font-size: .85rem; }

/* ── Navigation ─────────────────────────────────────────────────────────────── */
#nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--color-white); border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem; gap: 1rem;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.nav-logo {
  font-size: 1.2rem; font-weight: 700; color: var(--green);
  white-space: nowrap;
}
.nav-logo:hover { text-decoration: none; }

.nav-menu { display: flex; gap: 1.25rem; align-items: center; }
.nav-link { color: var(--text); font-size: .9rem; font-weight: 500; }
.nav-link:hover { color: var(--green); text-decoration: none; }
.nav-cta {
  background: var(--green); color: var(--color-white) !important;
  padding: .4rem .9rem; border-radius: 20px; font-size: .85rem;
}
.nav-cta:hover { background: var(--green-l); }

.nav-right { display: flex; align-items: center; gap: .75rem; }

.lang-switch { display: flex; align-items: center; gap: .25rem; }
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-size: .85rem; font-weight: 600; color: var(--muted); padding: .15rem .3rem;
}
.lang-btn.active { color: var(--green); text-decoration: underline; }
.lang-sep { color: var(--border); }

.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  font-size: 1.4rem; color: var(--text); padding: .25rem;
}

/* ── Hero ───────────────────────────────────────────────────────────────────── */
#hero {
  min-height: 70vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(rgba(0,0,0,0.48), rgba(0,0,0,0.56)),
              var(--green); /* fallback if photo not loaded */
  background-size: cover; background-position: center;
  text-align: center; padding: 3rem 1.25rem;
}
.hero-content h1 {
  color: var(--color-white); font-size: clamp(2.4rem, 7vw, 4.5rem);
  margin-bottom: .5rem; text-shadow: 0 2px 12px rgba(0,0,0,.5), 0 1px 3px rgba(0,0,0,.3);
  letter-spacing: -.01em;
}
.hero-sub { color: rgba(255,255,255,.92); font-size: 1.15rem; margin-bottom: 2rem; text-shadow: 0 1px 6px rgba(0,0,0,.4), 0 1px 2px rgba(0,0,0,.3); }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-hero-ghost {
  display: inline-block; padding: .65rem 1.4rem;
  border-radius: var(--radius); font-size: .95rem; font-weight: 600;
  border: 2px solid rgba(255,255,255,.7); color: var(--color-white);
  background: rgba(255,255,255,.1); backdrop-filter: blur(4px);
  transition: all .15s;
}
.btn-hero-ghost:hover { background: rgba(255,255,255,.25); border-color: var(--color-white); text-decoration: none; }

/* ── Sections ───────────────────────────────────────────────────────────────── */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--bg-alt); }
.lead { font-size: 1.05rem; color: var(--muted); margin-bottom: 2rem; max-width: 680px; }

h2 {
  font-size: 1.9rem; margin-bottom: 1rem; color: var(--green);
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--border);
  display: inline-block;
}

/* ── Amenities ──────────────────────────────────────────────────────────────── */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem; margin-bottom: 2.5rem;
}
.amenity {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1rem; text-align: center; font-size: .9rem;
}
.amenity-icon { font-size: 1.75rem; margin-bottom: .4rem; }

.info-cards {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.info-card {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem; box-shadow: var(--shadow);
  border-top: 3px solid var(--green);
  transition: box-shadow .2s;
}
.info-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.12); }
.info-icon { font-size: 1.5rem; margin-bottom: .5rem; }

/* ── Gallery ────────────────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: .625rem;
}
.gallery-item {
  overflow: hidden; border-radius: var(--radius);
  cursor: pointer; background: var(--border);
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s ease; will-change: transform;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-empty { color: var(--muted); font-style: italic; }

.address-line { font-size: .95rem; margin-bottom: .5rem; color: var(--text); }

/* ── Map ────────────────────────────────────────────────────────────────────── */
#map {
  height: 380px; border-radius: var(--radius); margin-top: 1.5rem;
  border: 1px solid var(--border); overflow: hidden;
}

/* ── Pricing ────────────────────────────────────────────────────────────────── */
.price-hint { color: var(--muted); margin-bottom: 1.5rem; font-size: .95rem; }
.price-quote {
  background: var(--green); color: var(--color-white); border-radius: var(--radius);
  padding: 1.25rem 1.5rem; margin-bottom: 1.5rem; display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: .75rem;
}
.pq-item label { font-size: .78rem; opacity: .8; display: block; }
.pq-item strong { font-size: 1.2rem; }
.pq-discount { color: var(--green); }
.quote-discount { color: var(--green); }

/* ── Calendar ───────────────────────────────────────────────────────────────── */
.cal-wrap { margin-top: 1.5rem; position: relative; }
.cal-loading {
  position: absolute; inset: 0; z-index: 5;
  background: rgba(247,245,240,.85);
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
}
.cal-loading.hidden { display: none; }
.spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--border); border-top-color: var(--green);
  border-radius: 50%; animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cal-nav { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.cal-nav-btn {
  background: none; border: 1px solid var(--border); border-radius: var(--radius);
  width: 36px; height: 36px; cursor: pointer; font-size: 1.3rem;
  color: var(--green); display: flex; align-items: center; justify-content: center;
}
.cal-nav-btn:hover { background: var(--green); color: var(--color-white); }
.cal-header { font-weight: 600; font-size: 1rem; flex: 1; }

.cal-months {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}

.cal-month h4 {
  text-align: center; margin-bottom: .5rem;
  font-size: .95rem; font-weight: 600; color: var(--green);
}
.cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px;
}
.cal-dow {
  text-align: center; font-size: .72rem; font-weight: 600;
  color: var(--muted); padding: .25rem 0;
}
.cal-day {
  text-align: center; font-size: .82rem; padding: .35rem .15rem;
  border-radius: var(--radius-sm); cursor: pointer; user-select: none;
  transition: background .1s;
}
.cal-day.empty { cursor: default; }
.cal-day.today { font-weight: 700; color: var(--green); }
.cal-day.past  { color: var(--border); cursor: not-allowed; }
.cal-day.booked { background: #f5c6c6; color: #999; cursor: not-allowed; text-decoration: line-through; }
.cal-day.free:hover { background: var(--badge-paid-bg); }
.cal-day.checkin  { background: var(--green); color: var(--color-white); border-radius: var(--radius-sm) 0 0 var(--radius-sm); }
.cal-day.checkout { background: var(--green); color: var(--color-white); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.cal-day.inrange  { background: #c8e6c9; }

.cal-legend {
  display: flex; gap: 1.25rem; margin-top: 1rem; flex-wrap: wrap;
}
.leg-item { display: flex; align-items: center; gap: .4rem; font-size: .82rem; color: var(--muted); }
.leg-dot { width: 14px; height: 14px; border-radius: 3px; display: inline-block; }
.leg-booked  { background: #f5c6c6; }
.leg-free    { background: var(--badge-paid-bg); }
.leg-sel     { background: var(--green); }

.cal-hint { margin-top: .75rem; color: var(--muted); font-size: .88rem; }
.min-stay-hint { margin-top: .5rem; color: var(--color-danger-hover); font-size: .88rem; font-weight: 500; }

/* ── Wizard ─────────────────────────────────────────────────────────────────── */
.wizard-progress {
  display: flex; align-items: center; margin-bottom: 2rem; flex-wrap: nowrap;
}
.wp-step {
  display: flex; flex-direction: column; align-items: center; gap: .2rem;
  flex-shrink: 0;
}
.wp-step span {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--border); color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem; font-weight: 700;
}
.wp-step small { font-size: .68rem; color: var(--muted); white-space: nowrap; }
.wp-step.active span { background: var(--green); color: var(--color-white); }
.wp-step.done span   { background: var(--green-l); color: var(--color-white); }
.wp-line { flex: 1; height: 2px; background: var(--border); margin-bottom: 1rem; }

.wizard-step { animation: fadeIn .15s; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; } }
.mp-assign-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; margin: 1.5rem 0; }
.mp-assign-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1rem 1.25rem;
}
.mp-assign-dates { color: var(--muted); font-size: .9rem; margin-bottom: .75rem; }
.mp-assign-travelers { display: flex; flex-direction: column; gap: .4rem; margin-bottom: .75rem; }
.mp-assign-check { display: flex; align-items: center; gap: .5rem; cursor: pointer; font-weight: normal; }
.mp-assign-check input { margin: 0; }
.mp-assign-counts { font-size: .85rem; color: var(--muted); display: flex; gap: 1rem; flex-wrap: wrap; }

.date-display {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1rem 1.25rem; margin-bottom: 1.25rem;
}
.date-display .hint { color: var(--muted); font-size: .9rem; }
.date-row { display: flex; gap: 2rem; flex-wrap: wrap; }
.date-item label { font-size: .78rem; color: var(--muted); display: block; }
.date-item strong { font-size: 1rem; color: var(--text); }

.quote-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem; margin-bottom: 1.25rem;
}
.quote-row { display: flex; justify-content: space-between; padding: .35rem 0; border-bottom: 1px solid var(--border); }
.quote-row:last-child { border-bottom: none; font-weight: 700; font-size: 1.05rem; }

.form-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .75rem 1rem; margin-bottom: 1.25rem;
}
.form-grid label {
  display: flex; flex-direction: column; gap: .25rem;
  font-size: .85rem; font-weight: 600; color: var(--text);
}
.form-grid input {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: .55rem .75rem; font-size: .95rem; width: 100%;
  transition: border-color .15s;
}
.form-grid input:focus { outline: none; border-color: var(--green); }
.span2 { grid-column: 1 / -1; }

/* W-48: Guest count + pet selector */
#guest-selector { margin: 1rem 0; }
.guest-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; }
.guest-field { font-size: .9rem; font-weight: 600; display: flex; flex-direction: column; gap: .25rem; }
.guest-field span { font-size: .85rem; color: var(--muted); font-weight: 500; }
.guest-field select { border: 1px solid var(--border); border-radius: 5px; padding: .45rem .6rem; font-size: .9rem; }
.guest-row { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.guest-row label { font-size: .9rem; font-weight: 600; display: flex; flex-direction: column; gap: .25rem; }
.guest-row select { border: 1px solid var(--border); border-radius: 5px; padding: .45rem .6rem; font-size: .9rem; }
.pet-toggle { flex-direction: row !important; gap: .5rem !important; align-items: center; cursor: pointer; }
.pet-toggle input[type="checkbox"] { width: 1.1rem; height: 1.1rem; accent-color: var(--green); }

.traveler-list { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1rem; }
.traveler-row {
  display: grid; grid-template-columns: 1fr 1fr 140px 80px 1fr auto;
  gap: .5rem; align-items: end;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: .75rem;
}
.traveler-row label { display: flex; flex-direction: column; gap: .2rem; font-size: .8rem; font-weight: 600; }
.traveler-row input { border: 1px solid var(--border); border-radius: 5px; padding: .45rem .6rem; font-size: .9rem; }
.traveler-row .btn-remove {
  background: none; border: 1px solid #f5c6c6; color: var(--color-danger-hover);
  border-radius: 5px; padding: .45rem .65rem; cursor: pointer; font-size: .85rem;
  align-self: flex-end;
}
.traveler-row .btn-remove:hover { background: #f5c6c6; }
.traveler-row input.readonly { background: #f0f0f0; color: var(--color-text-light); cursor: default; }

.summary-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.25rem; margin-bottom: 1.25rem;
}
.sum-section { margin-bottom: 1rem; }
.sum-section h4 { font-size: .8rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: .4rem; }
.sum-row { display: flex; justify-content: space-between; font-size: .9rem; padding: .2rem 0; }

.notes-label {
  display: flex; flex-direction: column; gap: .25rem;
  font-size: .85rem; font-weight: 600; color: var(--text);
  margin-bottom: 1.25rem;
}
.notes-label textarea {
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: .55rem .75rem; font-size: .95rem; width: 100%;
  font-family: inherit; resize: vertical; min-height: 60px;
  transition: border-color .15s;
}
.notes-label textarea:focus { outline: none; border-color: var(--green); }
.sum-notes-text { font-size: .9rem; white-space: pre-line; margin: 0; }

.gdpr-row {
  display: flex; align-items: flex-start; gap: .65rem;
  background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius);
  padding: .9rem 1rem; margin-bottom: 1.25rem;
  font-size: .88rem; color: var(--muted);
}
.gdpr-row input[type=checkbox] { margin-top: .15rem; flex-shrink: 0; }
.gdpr-row a { color: var(--green); }

.form-error {
  background: #fee; border: 1px solid #f5c6c6; border-radius: var(--radius);
  padding: .75rem 1rem; color: var(--color-danger-hover); margin-bottom: 1rem; font-size: .9rem;
}

.info-note {
  background: #e8f4fd; border: 1px solid #b8daf0; border-radius: var(--radius);
  padding: .75rem 1rem; color: #1a5276; margin-bottom: 1rem; font-size: .9rem;
}

.step-nav {
  display: flex; gap: .75rem; justify-content: flex-end; margin-top: 1.5rem;
}

.wizard-success { text-align: center; padding: 2.5rem 1rem; }
.success-icon { font-size: 3rem; color: var(--green); margin-bottom: .75rem; }
.token-line { margin-top: 1rem; font-size: .9rem; color: var(--muted); }
.token-line code { background: var(--bg); padding: .2rem .5rem; border-radius: var(--radius-sm); word-break: break-all; font-size: .82rem; }

/* ── Footer ─────────────────────────────────────────────────────────────────── */
#footer {
  background: #1a2e1b; color: rgba(255,255,255,.7);
  padding: 2rem 1.25rem;
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: .85rem; }
.footer-links { display: flex; gap: 1.25rem; }
.footer-links a { color: rgba(255,255,255,.7); font-size: .85rem; }
.footer-links a:hover { color: var(--color-white); text-decoration: none; }

/* ── Lightbox ───────────────────────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.9);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
}
.lb-image { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-sm); }
.lb-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15); border: none; color: var(--color-white);
  font-size: 2.5rem; padding: .5rem .9rem; cursor: pointer; border-radius: var(--radius-sm);
  transition: background .15s;
}
.lb-nav:hover { background: rgba(255,255,255,.3); }
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-close {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,.15); border: none; color: var(--color-white);
  font-size: 1.1rem; padding: .4rem .75rem; cursor: pointer; border-radius: var(--radius-sm);
}
.lb-close:hover { background: rgba(255,255,255,.3); }
.lb-caption {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,.6); color: var(--color-white);
  padding: .5rem 1rem; border-radius: var(--radius-sm);
  max-width: 80%; text-align: center; font-size: .95rem; line-height: 1.4;
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-menu {
    display: none; flex-direction: column;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--color-white); border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem; gap: .75rem; box-shadow: var(--shadow);
  }
  .nav-menu.open { display: flex; }
  .hamburger { display: block; }

  .cal-months { grid-template-columns: 1fr; }
  .form-grid  { grid-template-columns: 1fr; }
  .span2      { grid-column: 1; }
  .traveler-row { grid-template-columns: 1fr 1fr; }
  .traveler-row label:nth-child(3),
  .traveler-row label:nth-child(5) { grid-column: 1 / -1; }

  .info-cards { grid-template-columns: 1fr 1fr; }
  .amenity-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }

  h2 { font-size: 1.6rem; }
  #hero { min-height: 55vh; }
}

@media (max-width: 540px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
  }
}

@media (max-width: 480px) {
  .info-cards { grid-template-columns: 1fr; }
  .wizard-progress small { display: none; }
  .step-nav { flex-direction: column-reverse; }
  .step-nav button { width: 100%; }
}

/* Property listing */
.property-listing-section { padding-top: 6rem; }
.property-set-filter { margin-bottom: 1rem; }
.btn-filter {
  padding: 0.4rem 1rem;
  border: 1px solid #ccc;
  border-radius: 2rem;
  background: #fff;
  color: #333;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s, color 0.2s;
}
.btn-filter:hover { background: #f0f0f0; }
.btn-filter.active {
  background: var(--primary, #2d6a4f);
  color: #fff;
  border-color: var(--primary, #2d6a4f);
}
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.property-card {
  background: var(--bg-card, #fff);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.property-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--bg-alt, #f5f5f5);
}
.property-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}
.property-card:hover .property-card-image img { transform: scale(1.05); }
.property-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  color: var(--muted, #999);
}
.property-card-body { padding: 1.25rem; }
.property-card-name {
  font-size: 1.25rem;
  margin: 0 0 .25rem 0;
  color: var(--text);
}
.property-card-location {
  color: var(--muted, #777);
  font-size: .9rem;
  margin: 0 0 .75rem 0;
}
.property-card-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
  font-size: .9rem;
  color: var(--muted, #777);
}
.property-card-price { font-weight: 600; color: var(--text); }
.property-card-btn {
  display: inline-block;
  padding: .5rem 1.5rem;
  font-size: .9rem;
}

/* Listing toolbar — filter & sort controls */
.listing-toolbar {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.listing-toolbar-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.listing-toolbar-group label {
  font-size: 0.8rem;
  color: var(--muted, #777);
  font-weight: 500;
}
.listing-toolbar-group select {
  padding: 0.4rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
}
.listing-reset-btn {
  align-self: flex-end;
  font-size: 0.85rem;
}
.listing-no-results {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted, #777);
}
.listing-no-results p { margin-bottom: 1rem; }

@media (max-width: 480px) {
  .property-grid { grid-template-columns: 1fr; }
  .property-card-image { height: 180px; }
  .listing-toolbar { flex-direction: column; align-items: stretch; }
}

/* Multi-property calendar (#222) */
.mpc-nav { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.mpc-hint { color: var(--muted); font-size: .9rem; margin-bottom: 1rem; }

.mpc-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.mpc-grid {
  border-collapse: collapse;
  min-width: 100%;
  font-size: .82rem;
}

.mpc-grid th, .mpc-grid td {
  border: 1px solid var(--border);
  text-align: center;
  padding: 0;
}

.mpc-prop-header {
  position: sticky;
  left: 0;
  z-index: 2;
  background: var(--bg-alt, #f8f9fa);
  min-width: 140px;
  text-align: left !important;
  padding: .5rem !important;
}

.mpc-month-label {
  background: var(--bg-alt, #f8f9fa);
  font-weight: 600;
  font-size: .8rem;
  padding: .3rem !important;
  white-space: nowrap;
}

.mpc-date-header {
  background: var(--bg-alt, #f8f9fa);
  min-width: 34px;
  padding: .2rem !important;
}
.mpc-date-header.weekend { background: #f0f0f0; }
.mpc-dow { display: block; font-size: .7rem; color: var(--muted); font-weight: 400; }
.mpc-day-num { display: block; font-size: .8rem; font-weight: 600; }

.mpc-prop-label {
  position: sticky;
  left: 0;
  z-index: 1;
  background: #fff;
  min-width: 140px;
  max-width: 180px;
  text-align: left !important;
  padding: .4rem .6rem !important;
  vertical-align: middle;
}
.mpc-prop-name { display: block; font-weight: 600; font-size: .85rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mpc-prop-city { display: block; font-size: .75rem; color: var(--muted); }

.mpc-clear-btn {
  position: absolute;
  top: 2px; right: 2px;
  background: none; border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 2px;
}
.mpc-clear-btn:hover { color: #c00; }

.mpc-cell {
  width: 34px;
  height: 28px;
  cursor: default;
  transition: background .15s;
}
.mpc-cell.free { cursor: pointer; background: #e8f5e9; }
.mpc-cell.free:hover { background: var(--badge-paid-bg, #c8e6c9); }
.mpc-cell.booked { background: #f5c6c6; }
.mpc-cell.past { background: #fafafa; }
.mpc-cell.checkin { background: var(--green, #2d6a4f); }
.mpc-cell.checkout { background: var(--green, #2d6a4f); }
.mpc-cell.inrange { background: #c8e6c9; }

.mpc-selections {
  margin-top: 1.5rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.mpc-selections h3 { font-size: 1rem; margin: 0 0 .75rem; }
.mpc-sel-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 0;
  font-size: .9rem;
}
.mpc-sel-item + .mpc-sel-item { border-top: 1px solid var(--border); }
.mpc-sel-remove {
  margin-left: auto;
  background: none; border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  padding: 0 .3rem;
}
.mpc-sel-remove:hover { color: #c00; }
