/* Tito — properties table */

.table {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.table-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.8fr 0.8fr 0.8fr 0.5fr;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-soft);
  font-size: 13px;
  cursor: pointer;
  transition: background 0.1s;
}

.table-row:last-child { border-bottom: none; }
.table-row:hover { background: var(--bg-warm); }
.table-row.head {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  background: var(--bg-soft);
  cursor: default;
}
.table-row.head:hover { background: var(--bg-soft); }

.cell-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cell-title strong { font-weight: 600; font-size: 13px; }
.cell-title span { color: var(--muted); font-size: 11px; }

.price-cell {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 500;
}
