:root {
  --primary: #f27f2f;
  --primary-hover: #e06e1a;
  --secondary: #116dc0;
  --secondary-hover: #0e5ca5;
  --dark: #2b3255;
  --text: #4a5568;
  --text-light: #718096;
  --bg: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,.08), 0 4px 6px -2px rgba(0,0,0,.04);
  --radius: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--gray-50);
  line-height: 1.6;
}

/* ── Header ── */
header {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo img { height: 36px; width: auto; }
.logo span {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #e06e1a 100%);
  color: #fff;
  padding: 60px 24px;
  text-align: center;
}
.hero h1 { font-size: 36px; font-weight: 800; margin-bottom: 12px; }
.hero p { font-size: 18px; opacity: .9; max-width: 600px; margin: 0 auto; }

/* ── Search ── */
.search-bar {
  max-width: 600px;
  margin: -28px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 10;
}
.search-bar input {
  width: 100%;
  padding: 16px 20px;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: 16px;
  outline: none;
  transition: box-shadow .2s;
}
.search-bar input:focus { box-shadow: 0 0 0 3px rgba(242,127,47,.3), var(--shadow-lg); }

/* ── Section ── */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
}
.section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 24px;
}

/* ── City Grid ── */
.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.city-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 24px;
  text-decoration: none;
  color: var(--dark);
  transition: all .2s;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.city-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(242,127,47,.15);
  transform: translateY(-2px);
}
.city-card .city-icon {
  width: 48px;
  height: 48px;
  background: var(--gray-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}
.city-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
.city-card .city-count { font-size: 13px; color: var(--text-light); }

/* ── Footer ── */
footer {
  .footer-inner
  background: var(--dark);
  color: rgba(255,255,255,.7);
  text-align: center;
  padding: 32px 24px;
  font-size: 14px;
}
footer a { color: var(--primary); text-decoration: none; }

/* ── City Page ── */
.city-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, #0e5ca5 100%);
  color: #fff;
  padding: 48px 24px;
  text-align: center;
}
.city-hero h1 { font-size: 32px; font-weight: 800; margin-bottom: 8px; }
.city-hero p { font-size: 16px; opacity: .9; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.category-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 20px;
  text-decoration: none;
  color: var(--dark);
  text-align: center;
  transition: all .2s;
  box-shadow: var(--shadow);
}
.category-card:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(242,127,47,.12);
  transform: translateY(-1px);
}
.category-card .cat-icon { font-size: 28px; margin-bottom: 8px; }
.category-card h4 { font-size: 14px; font-weight: 600; }
.category-card .cat-count { font-size: 12px; color: var(--text-light); margin-top: 4px; }

/* ── Breadcrumb ── */
.breadcrumb {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  font-size: 13px;
  color: var(--text-light);
}
.breadcrumb a { color: var(--secondary); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--text); padding: 0 6px; }

/* ── Business Cards ── */
.business-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.business-card {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 20px 24px;
  box-shadow: var(--shadow);
}
.business-card h3 { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 4px; }
.business-card .biz-rating { color: #f59e0b; font-size: 13px; margin-bottom: 6px; }
.business-card .biz-info { font-size: 13px; color: var(--text-light); line-height: 1.7; }
.business-card .biz-info a { color: var(--secondary); text-decoration: none; }
.business-card .biz-info a:hover { text-decoration: underline; }
.business-card .local-badge {
  display: inline-block;
  background: #d1fae5;
  color: #065f46;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .hero h1 { font-size: 26px; }
  .hero p { font-size: 15px; }
  .city-grid { grid-template-columns: 1fr 1fr; }
  .category-grid { grid-template-columns: 1fr 1fr; }
}

footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
footer .footer-cities {
  margin-bottom: 12px;
  font-size: 13px;
  line-height: 2;
}
footer .footer-cities a {
  color: #f27f2f;
  text-decoration: none;
  margin: 0 4px;
  white-space: nowrap;
}
footer .footer-cities a:hover {
  text-decoration: underline;
}

footer .footer-links {
  margin-bottom: 10px;
  font-size: 13px;
}
footer .footer-links a {
  color: #f27f2f;
  text-decoration: none;
}
footer .footer-links a:hover {
  text-decoration: underline;
}
footer .footer-cities strong {
  color: rgba(255,255,255,.9);
}
/* ── City Request Form ── */
.request-section {
  background: #fff;
  border-top: 1px solid var(--gray-200);
  padding: 48px 24px;
  text-align: center;
}
.request-inner {
  max-width: 520px;
  margin: 0 auto;
}
.request-inner h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.request-inner p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.request-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.request-form input {
  padding: 14px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: border-color .2s;
}
.request-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(242,127,47,.15);
}
.request-form .input-row {
  display: flex;
  gap: 10px;
}
.request-form .input-row input { flex: 1; }
.request-form button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.request-form button:hover { background: var(--primary-hover); }
.request-form button:disabled {
  opacity: .6;
  cursor: not-allowed;
}
.request-success {
  display: none;
  background: #d1fae5;
  color: #065f46;
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}
.request-error {
  display: none;
  background: #fee2e2;
  color: #991b1b;
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
}
.vote-count {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 4px;
}
