body {
  background: #f4f6f9;
  font-size: 0.92rem;
}

/* Stat cards */
.stat-card {
  background: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
  text-align: center;
}
.stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}
.stat-label {
  font-size: 0.75rem;
  color: #6c757d;
  margin-top: 2px;
}

/* Listing cards */
.listing-card {
  border: none;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
  transition: box-shadow .15s;
}
.listing-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.14);
}
.listing-img {
  height: 180px;
  object-fit: cover;
  border-radius: 6px 6px 0 0;
}
.price-tag {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
}
.yield-badge {
  background: #198754;
  color: #fff;
  font-size: 0.78rem;
}

/* Filters */
.form-select-sm { font-size: 0.85rem; }
