
:root {
  --bg: #f5f7fb;
  --card: #ffffff;
  --text: #15202b;
  --muted: #5d6b7a;
  --line: #dfe6ee;
  --brand: #0b5fff;
  --brand-dark: #0845ba;
  --accent: #00a676;
  --shadow: 0 10px 30px rgba(15, 23, 42, .08);
  --radius: 18px;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; background: var(--bg); color: var(--text); }
a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.topbar { background: #071827; color: white; position: sticky; top: 0; z-index: 50; box-shadow: 0 4px 20px rgba(0,0,0,.16); }
.nav { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.logo { color: white; font-weight: 800; font-size: 22px; letter-spacing: -.02em; }
.logo span { color: var(--accent); }
.navlinks { display: flex; gap: 18px; flex-wrap: wrap; }
.navlinks a { color: #d8e4f2; font-weight: 600; }
.hero { background: radial-gradient(circle at 15% 15%, rgba(0,166,118,.23), transparent 30%), radial-gradient(circle at 85% 20%, rgba(11,95,255,.24), transparent 35%), linear-gradient(135deg, #071827, #0d2b45); color: white; padding: 76px 0 56px; }
.hero h1 { font-size: clamp(36px, 5vw, 62px); line-height: 1.02; margin: 0 0 18px; max-width: 850px; letter-spacing: -.045em; }
.hero p { font-size: 20px; line-height: 1.55; max-width: 760px; color: #d6e1ed; margin: 0 0 28px; }
.searchbox { background: white; border-radius: var(--radius); padding: 14px; box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr auto; gap: 10px; max-width: 760px; }
.searchbox input { border: 1px solid var(--line); border-radius: 12px; padding: 15px 16px; font-size: 16px; }
.btn { display: inline-block; border: none; border-radius: 12px; padding: 12px 16px; background: var(--brand); color: white; font-weight: 800; cursor: pointer; text-align: center; }
.btn:hover { background: var(--brand-dark); color: white; text-decoration: none; }
.btn.alt { background: #eaf1ff; color: var(--brand-dark); }
.section { padding: 44px 0; }
.section h2 { font-size: 30px; margin: 0 0 18px; letter-spacing: -.025em; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(278px, 1fr)); gap: 20px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.card-img { width: 100%; height: 190px; background: #e8eef5; object-fit: cover; object-position: top left; display: block; }
.card-body { padding: 17px; }
.card h3 { margin: 0 0 8px; font-size: 20px; line-height: 1.2; }
.meta { color: var(--muted); line-height: 1.45; font-size: 14px; }
.rating { display: inline-flex; align-items: center; gap: 6px; background: #fff8e5; color: #6f4b00; border: 1px solid #ffe3a3; border-radius: 999px; padding: 5px 9px; font-weight: 800; font-size: 13px; margin: 10px 0; }
.card-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.breadcrumbs { color: var(--muted); margin-bottom: 18px; font-size: 14px; }
.panel { background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.split { display: grid; grid-template-columns: minmax(0, 440px) minmax(0, 1fr); gap: 26px; align-items: start; }
.shop-shot { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.list-clean { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px,1fr)); gap: 10px 20px; padding-left: 20px; }
.state-list { columns: 3; list-style: none; padding-left: 0; }
.state-list li { break-inside: avoid; margin: 0 0 8px; }
.city-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.city-pills a { background: white; border: 1px solid var(--line); border-radius: 999px; padding: 8px 11px; color: var(--text); box-shadow: 0 4px 14px rgba(15,23,42,.05); }
.filters { display: flex; gap: 10px; margin: 16px 0 24px; flex-wrap: wrap; }
.filters input { flex: 1; min-width: 260px; border: 1px solid var(--line); border-radius: 12px; padding: 13px 14px; font-size: 15px; }
.footer { margin-top: 50px; background: #071827; color: #d8e4f2; padding: 34px 0; }
.footer a { color: white; }
.badge { display: inline-block; background: #e9fff7; color: #006b4d; border: 1px solid #bff5e3; padding: 5px 9px; border-radius: 999px; font-size: 13px; font-weight: 800; }
.empty { padding: 28px; text-align: center; color: var(--muted); background: white; border: 1px dashed var(--line); border-radius: var(--radius); }
@media (max-width: 820px) {
  .searchbox { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .state-list { columns: 1; }
  .nav { align-items: flex-start; flex-direction: column; padding: 16px 0; }
}
