/* styles.css - minimal, extend as needed */
:root {
  --primary: #d63333;
  --muted: #6b7280;
  --max-width: 1100px;
  --container-padding: 16px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}
* { box-sizing: border-box; }
body { margin:0; color:#111; background:#f7f7f8; line-height:1.45; }
.container { max-width: var(--max-width); margin:0 auto; padding: var(--container-padding); }

/* Header */
.site-header { background:#fff; border-bottom:1px solid #eee; }
.header-inner { display:flex; align-items:center; justify-content:space-between; gap:12px;}
.logo img { display:block; }
.main-nav a { margin-left:14px; text-decoration:none; color:#111; font-weight:600; }
.main-nav .cta { background:var(--primary); color:#fff; padding:8px 12px; border-radius:6px; text-decoration:none; }

/* Layout */
.site-main { padding: 18px 0; display:flex; gap:18px; }
.left-col { flex: 3; }
.right-col { flex: 1; min-width:260px; }

/* Listing card */
.card { background:#fff; border-radius:8px; box-shadow:0 1px 2px rgba(0,0,0,0.04); padding:12px; margin-bottom:12px; display:flex; gap:12px; }
.card img { width:160px; height:110px; object-fit:cover; border-radius:6px; }
.card .meta { flex:1; }
.h-title { margin:0 0 6px; font-size:16px; }
.h-sub { color:var(--muted); font-size:13px; margin-bottom:8px; }

.price { font-weight:700; color:var(--primary); }

/* Search box */
.search-box { background:#fff; padding:12px; border-radius:8px; margin-bottom:12px; }
.search-box label { display:block; font-size:13px; color:var(--muted); margin-bottom:6px; }
.search-box input, .search-box select { width:100%; padding:8px; margin-bottom:8px; border:1px solid #e6e6e6; border-radius:6px; }

/* Footer */
.site-footer { margin-top:40px; background:#111; color:#fff; padding:18px 0; }
.site-footer a { color:#fff; text-decoration:none; }
.site-footer .container { display:flex; gap:18px; }
.site-footer .col { flex:1; }

/* Responsive */
@media (max-width:900px) {
  .site-main { flex-direction:column; }
  .card img { width:120px; height:90px; }
}

