/* ============================================================
   KronosProperty — South African Property Platform
   Design System CSS
   ============================================================
   Mobile-first. No frameworks. System fonts. Fast.
   Target: <25KB total CSS.
   ============================================================ */

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

:root {
  --primary: #1a365d;
  --primary-light: #2a4a7f;
  --primary-dark: #0f2440;
  --accent: #38a169;
  --accent-light: #48bb78;
  --accent-dark: #2f855a;
  --surface: #f7fafc;
  --surface-alt: #edf2f7;
  --text: #2d3748;
  --text-light: #718096;
  --text-muted: #a0aec0;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --max-width: 1200px;
  --nav-height: 64px;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-light); }

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

h1, h2, h3, h4 { line-height: 1.3; color: var(--primary-dark); }
h1 { font-size: 2rem; font-weight: 700; }
h2 { font-size: 1.5rem; font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

.main-content {
  flex: 1;
  padding-top: var(--nav-height);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  z-index: 100;
  display: flex;
  align-items: center;
}

.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.nav-brand span { color: var(--accent); }

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  transition: 0.3s;
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.hero h1 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

/* --- Search Bar --- */
.search-bar {
  display: flex;
  gap: 0.5rem;
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  box-shadow: var(--shadow-lg);
}

.search-bar input {
  flex: 1;
  border: none;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  color: var(--text);
  background: transparent;
  outline: none;
  border-radius: var(--radius);
}

.search-bar input::placeholder { color: var(--text-muted); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: var(--white);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  background: var(--surface);
  border-color: var(--primary);
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }

/* --- Property Card --- */
.property-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  padding: 2rem 0;
}

.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  border: 1px solid var(--border);
}

.property-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.property-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--surface-alt);
}

.property-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--surface-alt) 0%, var(--border) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 2.5rem;
}

.property-card-body {
  padding: 1rem 1.25rem;
}

.property-card-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.property-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.25rem;
}

.property-card-location {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.property-card-stats {
  display: flex;
  gap: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-light);
}

.property-card-stat {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.property-card-tag {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  text-transform: uppercase;
}

.tag-listed { background: #c6f6d5; color: #22543d; }
.tag-under-offer { background: #fefcbf; color: #744210; }
.tag-sold { background: #fed7d7; color: #9b2c2c; }

/* --- Listing Detail --- */

/* ─── Photo Gallery Grid ───────────────────────────────────────── */
.gallery-grid {
  display: grid;
  gap: 4px;
  height: 480px;
  overflow: hidden;
  background: var(--surface-alt);
  /* Default: 5+ images — Airbnb-style 1 large + 4 small mosaic */
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}

/* 1 image — single full-width hero */
.gallery-count-1 {
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

/* 2 images — side by side */
.gallery-count-2 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
}

/* 3 images — 1 big left, 2 stacked right */
.gallery-count-3 {
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr;
}

/* 4 images — 1 big left, 3 stacked right */
.gallery-count-4 {
  grid-template-columns: 3fr 2fr;
  grid-template-rows: 1fr 1fr 1fr;
}

/* Main cell spans full height on left */
.gallery-cell-main {
  grid-row: 1 / -1;
}

/* Hide images beyond 5 in the grid — they're in the lightbox */
.gallery-grid .gallery-cell:nth-child(n+6) { display: none; }

.gallery-cell {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--surface-alt);
  min-height: 0; /* Allow grid cells to shrink */
}

.gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
  will-change: transform;
}

.gallery-cell:hover img {
  transform: scale(1.03);
  filter: brightness(0.92);
}

.gallery-show-all {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(255,255,255,0.95);
  color: var(--text);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-md);
  transition: background 0.2s, transform 0.15s;
  z-index: 2;
  backdrop-filter: blur(8px);
}

.gallery-show-all:hover {
  background: #fff;
  transform: scale(1.02);
}

/* ─── Lightbox ─────────────────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 10;
  background: none;
  border: none;
  color: rgba(255,255,255,0.85);
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px 12px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.lightbox-close:hover {
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.lightbox-counter {
  position: absolute;
  top: 22px;
  left: 24px;
  z-index: 10;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-size: 2.2rem;
  line-height: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
  padding: 0;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-50%) scale(1.08);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-stage {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1100px;
  height: calc(100vh - 140px);
  padding: 0 72px;
  user-select: none;
  -webkit-user-select: none;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius);
  transition: opacity 0.2s ease;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.lightbox-caption {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 12px;
  max-width: 600px;
  line-height: 1.4;
  min-height: 1.4em;
}

.lightbox-thumbs {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  gap: 6px;
  padding: 12px 24px 16px;
  overflow-x: auto;
  justify-content: center;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.lightbox-thumbs::-webkit-scrollbar { display: none; }

.lightbox-thumb {
  flex-shrink: 0;
  width: 64px;
  height: 44px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.5;
  transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
  padding: 0;
  background: none;
}

.lightbox-thumb.active {
  opacity: 1;
  border-color: #fff;
  transform: scale(1.08);
}

.lightbox-thumb:hover {
  opacity: 0.85;
}

.lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── Gallery Mobile Responsive ────────────────────────────────── */
@media (max-width: 768px) {
  .gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    height: 280px;
    gap: 2px;
  }

  .gallery-cell {
    flex: 0 0 88%;
    scroll-snap-align: center;
    height: 280px;
    min-height: 280px;
  }

  .gallery-cell-main {
    flex: 0 0 88%;
  }

  .gallery-cell:nth-child(n+6) { display: flex !important; }

  .gallery-show-all {
    bottom: 12px;
    right: 12px;
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .lightbox-stage { padding: 0 12px; height: calc(100vh - 120px); }
  .lightbox-nav { width: 40px; height: 40px; font-size: 1.8rem; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-thumbs { padding: 8px 12px 12px; gap: 4px; }
  .lightbox-thumb { width: 50px; height: 34px; }
}

.listing-header {
  background: var(--white);
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.listing-price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}

.listing-title {
  font-size: 1.25rem;
  color: var(--text);
  margin: 0.25rem 0;
}

.listing-location {
  color: var(--text-light);
  font-size: 1rem;
}

.listing-stats-bar {
  display: flex;
  gap: 2rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}

.listing-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.listing-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.listing-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.listing-body {
  padding: 2rem 0;
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 2rem;
}

.listing-main { min-width: 0; }

.listing-sidebar {
  position: sticky;
  top: calc(var(--nav-height) + 1rem);
  align-self: start;
}

.listing-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
}

.listing-section h3 {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

/* --- Features Grid --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--surface);
  border-radius: var(--radius);
  font-size: 0.9rem;
}

.feature-icon { font-size: 1.1rem; }

/* --- Transfer Costs Box --- */
.costs-table {
  width: 100%;
  border-collapse: collapse;
}

.costs-table tr { border-bottom: 1px solid var(--border); }
.costs-table tr:last-child { border-bottom: none; }

.costs-table td {
  padding: 0.75rem 0;
  font-size: 0.95rem;
}

.costs-table td:last-child {
  text-align: right;
  font-weight: 600;
}

.costs-table .costs-total td {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  border-top: 2px solid var(--primary);
  padding-top: 1rem;
}

/* --- Enquiry Card --- */
.enquiry-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.enquiry-card h3 { margin-bottom: 1rem; }

.enquiry-card .btn { width: 100%; margin-top: 0.5rem; }

/* --- Calculator --- */
.calc-container {
  max-width: 800px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.calc-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.calc-input-group {
  margin-bottom: 1.5rem;
}

.calc-input-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.calc-input-group input,
.calc-input-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.2s;
}

.calc-input-group input:focus,
.calc-input-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.15);
}

.calc-result {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.calc-result-main {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 1rem;
}

/* --- Search Filters --- */
.search-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  padding: 2rem 0;
}

.filter-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  position: sticky;
  top: calc(var(--nav-height) + 1rem);
  align-self: start;
  height: fit-content;
}

.filter-panel h3 {
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.filter-group {
  margin-bottom: 1.25rem;
}

.filter-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-group select,
.filter-group input {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: var(--text);
}

.filter-price-range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.search-results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.search-count {
  font-size: 0.95rem;
  color: var(--text-light);
}

.search-sort select {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
}

/* --- Value Props (Landing) --- */
.value-props {
  padding: 3rem 0;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* --- Footer --- */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
  padding: 2.5rem 0 1.5rem;
  margin-top: auto;
}

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

.footer h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.footer p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer a {
  color: rgba(255,255,255,0.7);
  display: block;
  font-size: 0.9rem;
  padding: 0.2rem 0;
}
.footer a:hover { color: var(--accent-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-muted { color: var(--text-light); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.3rem; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-hamburger { display: block; }

  .hero { padding: 2rem 0; }
  .hero h1 { font-size: 1.75rem; }

  .search-bar {
    flex-direction: column;
    border-radius: var(--radius);
  }

  .property-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .filter-panel {
    position: static;
    margin-bottom: 1rem;
  }

  .listing-body {
    grid-template-columns: 1fr;
  }

  .listing-sidebar {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

@media (max-width: 480px) {
  .container { padding: 0 0.75rem; }
  .property-card-body { padding: 0.75rem 1rem; }
  .listing-stats-bar { gap: 1rem; }
}

/* --- Empty/Loading States --- */
.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-light);
}

.empty-state-icon { font-size: 3rem; margin-bottom: 1rem; }
.empty-state h3 { color: var(--text); margin-bottom: 0.5rem; }

.skeleton {
  background: linear-gradient(90deg, var(--surface-alt) 25%, var(--border) 50%, var(--surface-alt) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius);
}

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

/* --- Property card image placeholder improvements --- */
.property-card-img-placeholder {
  width: 100%; height: 200px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%); font-size: 3rem;
}
.property-card-img { width: 100%; height: 200px; object-fit: cover; }
