
/* Reset & Base */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
background: #f9fafb;
color: #111;
line-height: 1.4;
}
a { text-decoration: none; color: inherit; }

/* Layout */
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }
.row { display: flex; gap: 12px; }
.between { justify-content: space-between; }
.center { align-items: center; }
.gap { gap: 16px; }
.pad { padding: 40px 0; }

/* Header */
.header {
background: #fff;
border-bottom: 1px solid #e5e7eb;
padding: 14px 0;
position: sticky;
top: 0;
z-index: 10;
}
.brand { font-weight: 700; font-size: 20px; display: flex; align-items: center; gap: 6px; }
.logo { font-size: 22px; }
.nav a { margin-left: 16px; font-weight: 500; color: #374151; }
.nav a:hover { color: #2563eb; }

/* Hero */
.hero {
background: linear-gradient(135deg, #2563eb, #1d4ed8);
color: #fff;
padding: 60px 0;
text-align: center;
}
.hero h1 { font-size: 32px; margin-bottom: 14px; }
.hero p { font-size: 18px; margin-bottom: 24px; }
.hero-actions { display: flex; justify-content: center; gap: 12px; margin-bottom: 20px; }
.search { max-width: 500px; margin: 0 auto; }
.search input {
flex: 1;
padding: 12px;
border: none;
border-radius: 8px 0 0 8px;
}
.search button {
padding: 12px 20px;
border: none;
background: #111;
color: #fff;
border-radius: 0 8px 8px 0;
}

/* Buttons */
.btn {
padding: 10px 18px;
border-radius: 8px;
font-weight: 600;
background: #e5e7eb;
color: #111;
display: inline-block;
}
.btn.primary { background: #fff; color: #2563eb; }
.btn.small { padding: 6px 12px; font-size: 14px; }

/* Categories */
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.chip {
background: #fff;
border: 1px solid #e5e7eb;
border-radius: 999px;
padding: 6px 14px;
font-size: 14px;
}
.chip:hover { background: #2563eb; color: #fff; }

/* Listings */
.grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); gap: 20px; }
.card {
background: #fff;
border: 1px solid #e5e7eb;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 1px 3px rgba(0,0,0,0.06);
display: flex;
flex-direction: column;
}
.thumb { position: relative; display: block; }
.thumb img { width: 100%; height: 200px; object-fit: cover; }
.badge {
position: absolute; top: 10px; left: 10px;
background: #2563eb; color: #fff;
padding: 4px 8px; border-radius: 6px;
font-size: 12px; font-weight: 600;
}
.badge.new { background: #16a34a; }
.card-body { padding: 14px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.title { font-size: 16px; font-weight: 600; }
.meta { font-size: 13px; color: #6b7280; }
.price { font-size: 18px; font-weight: 700; }

/* CTA */
.cta {
background: #2563eb;
color: #fff;
padding: 40px 0;
text-align: center;
}
.cta h3 { font-size: 24px; margin-bottom: 8px; }

/* Footer */
.footer {
background: #fff;
border-top: 1px solid #e5e7eb;
padding: 20px 0;
font-size: 14px;
}
.footer .link { color: #374151; }
.footer .link:hover { color: #2563eb; }

/* Utils */
.muted { color: #6b7280; }
.small { font-size: 13px; }
