/* ============================================================
   DineApp.ai — styles.css
   Production stylesheet for dineapp.ai
   ============================================================ */

:root {
  --cream: #FDF6EE;
  --warm: #F5ECD7;
  --spice: #C94A1A;
  --spice2: #E8631F;
  --spice-lt: #FEF0E8;
  --gold: #B8860B;
  --gold-lt: #FFF8E7;
  --green: #1A7A3F;
  --green-lt: #E8F5ED;
  --dark: #1C0A02;
  --dark2: #3D1A07;
  --text: #1C1208;
  --muted: #7A6A55;
  --border: #E8D9C4;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 2px 20px rgba(90,50,10,.09);
  --shadow-lg: 0 8px 40px rgba(90,50,10,.15);
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all .25s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav.scrolled {
  background: rgba(253,246,238,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  padding-top: 0;
  padding-bottom: 0;
}
.nav.scrolled .nav-inner { padding: 12px 24px; }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  width: 34px; height: 34px;
  background: var(--spice);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 17px; color: #fff; font-weight: 700;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 18px; color: var(--text);
  font-weight: 600;
}
.logo-dot { color: var(--spice); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link {
  text-decoration: none;
  font-size: 14px;
  color: var(--muted);
  padding: 6px 12px;
  border-radius: 8px;
  transition: all .15s;
}
.nav-link:hover { color: var(--text); background: var(--warm); }

.nav-cta {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  background: var(--spice);
  color: #fff;
  padding: 8px 18px;
  border-radius: 10px;
  transition: background .15s;
}
.nav-cta:hover { background: var(--spice2); }

/* search in nav */
.search-nav-bar {
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 520px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.sns-icon { padding: 0 10px; color: var(--muted); font-size: 14px; }
.sns-input {
  flex: 1; border: none; outline: none;
  font-size: 14px; font-family: var(--font-body);
  color: var(--text); background: transparent;
  padding: 10px 0;
}
.sns-input::placeholder { color: #C4B49A; }
.sns-btn {
  background: var(--spice); color: #fff;
  border: none; padding: 0 18px;
  font-size: 13px; font-weight: 600;
  cursor: pointer; font-family: var(--font-body);
  transition: background .15s; height: 100%;
  min-height: 42px;
}
.sns-btn:hover { background: var(--spice2); }

/* mobile burger */
.nav-burger {
  display: none;
  background: none; border: none;
  font-size: 20px; cursor: pointer;
  color: var(--text); margin-left: auto;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 12px 24px 16px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  text-decoration: none;
  color: var(--text);
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border: none; }
.mob-cta {
  background: var(--spice);
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  margin-top: 8px;
}

@media (max-width: 700px) {
  .nav-links, .search-nav-bar { display: none; }
  .nav-burger { display: block; }
}

/* ── HOME HERO ───────────────────────────────────────────── */
.hero-home {
  min-height: 100vh;
  background: linear-gradient(160deg, #1C0A02 0%, #3D1A07 50%, #5C2E10 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  right: -40px; bottom: -60px;
  font-family: var(--font-display);
  font-size: clamp(140px, 22vw, 320px);
  font-weight: 700;
  color: rgba(255,255,255,.03);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.hero-content {
  max-width: 640px;
  position: relative;
  z-index: 1;
  animation: fadeUp .7s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #F5A058;
  margin-bottom: 18px;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 72px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -.02em;
  font-weight: 700;
}
.hero-h1 em { color: #F5A058; font-style: italic; }

.hero-p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.65);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 500px;
}

/* home search */
.home-search { margin-bottom: 0; }
.hs-bar {
  display: flex;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.3);
  max-width: 580px;
}
.hs-icon { width: 50px; display: flex; align-items: center; justify-content: center; color: var(--spice); font-size: 16px; flex-shrink: 0; }
.hs-input {
  flex: 1; border: none; outline: none;
  font-size: 15px; font-family: var(--font-body);
  color: var(--text); padding: 16px 0; background: transparent;
}
.hs-input::placeholder { color: #C4B49A; }
.hs-btn {
  background: var(--spice); color: #fff;
  border: none; padding: 0 24px;
  font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: var(--font-body);
  transition: background .15s; white-space: nowrap;
}
.hs-btn:hover { background: var(--spice2); }

.hs-chips {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 14px; max-width: 580px;
}
.hchip {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.75);
  font-size: 12px; padding: 6px 14px;
  border-radius: 20px; cursor: pointer;
  border: 1px solid rgba(255,255,255,.15);
  transition: all .15s; user-select: none;
}
.hchip:hover {
  background: rgba(249,160,88,.25);
  color: #F5A058;
  border-color: rgba(249,160,88,.4);
}

/* stats */
.hero-stats {
  display: flex; align-items: center; gap: 0;
  margin-top: 60px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  padding: 18px 28px;
  backdrop-filter: blur(10px);
  animation: fadeUp .7s .2s ease both;
}
.hstat { text-align: center; padding: 0 24px; }
.hstat-n { font-family: var(--font-display); font-size: 24px; color: #fff; font-weight: 700; }
.hstat-l { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 2px; }
.hstat-div { width: 1px; height: 40px; background: rgba(255,255,255,.15); flex-shrink: 0; }

/* ── SECTIONS ────────────────────────────────────────────── */
.section-eyebrow {
  font-size: 11px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--spice); margin-bottom: 10px;
}

.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  color: var(--text);
  margin-bottom: 40px;
  line-height: 1.2;
}

.section-how {
  padding: 90px 0;
  background: var(--white);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step-card {
  flex: 1;
  padding: 32px 24px;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all .2s;
}
.step-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.step-num { font-size: 11px; font-weight: 600; color: var(--spice); letter-spacing: .1em; margin-bottom: 12px; }
.step-icon { font-size: 32px; margin-bottom: 12px; }
.step-card h3 { font-family: var(--font-display); font-size: 20px; color: var(--text); margin-bottom: 10px; }
.step-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.step-connector { font-size: 24px; color: var(--border); padding: 80px 12px 0; flex-shrink: 0; }

/* featured */
.section-featured { padding: 90px 0; background: var(--cream); }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}
.feat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-decoration: none;
  transition: all .2s;
  display: block;
}
.feat-card:hover { border-color: var(--spice); box-shadow: var(--shadow); transform: translateY(-2px); }
.feat-emoji { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 12px; }
.feat-score { font-family: var(--font-display); font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.feat-name { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.feat-meta { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.feat-badges { display: flex; flex-wrap: wrap; gap: 5px; }
.fbadge { font-size: 10px; background: var(--warm); color: var(--muted); padding: 3px 8px; border-radius: 20px; border: 1px solid var(--border); }

/* categories */
.section-cats { padding: 90px 0; background: var(--white); }
.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.cat-card {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-decoration: none;
  text-align: center;
  transition: all .2s;
  display: block;
}
.cat-card:hover { border-color: var(--spice); background: var(--spice-lt); transform: translateY(-2px); box-shadow: var(--shadow); }
.cat-icon { font-size: 28px; margin-bottom: 10px; }
.cat-name { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.cat-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }

/* biz cta */
.section-biz { padding: 80px 0; background: var(--cream); }
.biz-card {
  background: linear-gradient(135deg, #1C0A02, #3D1A07, #5C2E10);
  border-radius: 20px;
  padding: 50px 48px;
  display: flex;
  align-items: center;
  gap: 60px;
}
.biz-left { flex: 1; }
.biz-right { flex-shrink: 0; display: flex; flex-direction: column; gap: 20px; }
.biz-stat { display: flex; flex-direction: column; align-items: flex-end; }
.bs-n { font-family: var(--font-display); font-size: 36px; color: #F5A058; font-weight: 700; line-height: 1; }
.bs-l { font-size: 12px; color: rgba(255,255,255,.5); }

.btn-light {
  display: inline-block;
  text-decoration: none;
  background: #fff;
  color: var(--spice);
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: 11px;
  transition: all .15s;
}
.btn-light:hover { background: var(--warm); }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: #120600;
  padding: 60px 0 0;
}
.footer-top {
  display: flex; gap: 60px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand { flex-shrink: 0; }
.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.fl-col { display: flex; flex-direction: column; gap: 10px; }
.fl-head { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.fl-col a { font-size: 13px; color: rgba(255,255,255,.4); text-decoration: none; transition: color .15s; }
.fl-col a:hover { color: rgba(255,255,255,.8); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0;
  font-size: 12px; color: rgba(255,255,255,.25);
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-block; text-decoration: none;
  background: var(--spice); color: #fff;
  font-weight: 700; font-size: 14px;
  padding: 13px 28px; border-radius: 12px;
  transition: background .15s;
}
.btn-primary:hover { background: var(--spice2); }
.btn-primary.btn-lg { padding: 16px 34px; font-size: 15px; border-radius: 14px; }

.btn-outline {
  display: inline-block; text-decoration: none;
  background: transparent; color: rgba(255,255,255,.8);
  font-weight: 500; font-size: 14px;
  padding: 13px 28px; border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,.25);
  transition: all .15s;
}
.btn-outline:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.5); }

/* ── SEARCH PAGE ─────────────────────────────────────────── */
.search-body { background: var(--cream); }

.filters-bar {
  position: fixed; top: 57px; left: 0; right: 0;
  z-index: 99;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.filters-inner {
  display: flex; gap: 7px; padding: 10px 20px;
  overflow-x: auto;
}
.filters-inner::-webkit-scrollbar { display: none; }
.flt {
  display: flex; align-items: center; gap: 5px;
  padding: 6px 14px; border-radius: 20px;
  border: 1.5px solid var(--border);
  font-size: 12px; font-weight: 500;
  cursor: pointer; white-space: nowrap;
  background: var(--white); color: var(--muted);
  font-family: var(--font-body);
  transition: all .15s;
}
.flt:hover { border-color: var(--spice); color: var(--spice); }
.flt.on { background: var(--spice-lt); border-color: var(--spice); color: var(--spice); }

.search-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  margin-top: 104px;
  min-height: calc(100vh - 104px);
}

.results-col {
  padding: 16px 16px 40px;
  border-right: 1px solid var(--border);
  overflow-y: auto;
}

.detail-col {
  padding: 16px;
  position: sticky;
  top: 104px;
  height: calc(100vh - 104px);
  overflow-y: auto;
}

.results-hdr {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.rh-count { font-size: 13px; color: var(--muted); }
.rh-count strong { color: var(--text); }
.rh-sort {
  font-size: 12px; border: 1.5px solid var(--border);
  border-radius: 8px; padding: 6px 10px;
  background: var(--white); color: var(--text);
  font-family: var(--font-body); outline: none; cursor: pointer;
}

/* restaurant card */
.rest-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all .2s;
}
.rest-card:hover { border-color: var(--spice); box-shadow: var(--shadow); transform: translateY(-1px); }
.rest-card.selected { border-color: var(--spice); box-shadow: 0 0 0 3px rgba(201,74,26,.12); }

.rc-top { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.rc-emoji {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
}
.rc-info { flex: 1; }
.rc-name { font-family: var(--font-display); font-size: 17px; color: var(--text); margin-bottom: 3px; line-height: 1.2; }
.rc-meta { font-size: 11px; color: var(--muted); line-height: 1.55; }
.rc-score { text-align: right; flex-shrink: 0; }
.rc-score .sn { font-family: var(--font-display); font-size: 26px; font-weight: 700; line-height: 1; }
.rc-score .ss { font-size: 11px; color: var(--gold); }
.rc-score .sc { font-size: 10px; color: var(--muted); margin-top: 2px; }

.rc-badges { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 11px; }
.rbadge {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 10px; padding: 3px 8px; border-radius: 20px; font-weight: 500;
}
.rb-halal { background: #E8F5ED; color: #1A7A3F; border: 1px solid #A3D4B5; }
.rb-veg   { background: #E8F5ED; color: #1A7A3F; border: 1px solid #A3D4B5; }
.rb-open  { background: #E8F5ED; color: #1A7A3F; }
.rb-del   { background: #EEF2FF; color: #3730A3; }
.rb-buf   { background: var(--gold-lt); color: #92400E; border: 1px solid #D4B250; }
.rb-cat   { background: var(--spice-lt); color: var(--spice); }

/* mini score bars */
.mini-bars { display: flex; flex-direction: column; gap: 5px; margin-bottom: 11px; }
.mbar { display: flex; align-items: center; gap: 8px; }
.mbar-lbl { font-size: 10px; color: var(--muted); width: 72px; flex-shrink: 0; text-align: right; }
.mbar-track { flex: 1; height: 5px; background: #F0E9DF; border-radius: 3px; overflow: hidden; }
.mbar-fill { height: 100%; border-radius: 3px; transition: width .6s ease; }
.mbar-val { font-size: 10px; font-weight: 600; width: 24px; text-align: right; flex-shrink: 0; }

/* dish tags */
.rc-dishes { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 11px; }
.dtag { font-size: 10px; background: var(--warm); color: var(--text); padding: 3px 9px; border-radius: 20px; font-weight: 500; border: 1px solid var(--border); }
.dtag.star { background: var(--gold-lt); border-color: #D4B250; color: var(--gold); }

.rc-verdict {
  background: linear-gradient(135deg, var(--green-lt), #D8EFDF);
  border-radius: 9px; padding: 9px 11px;
  font-size: 11px; color: var(--green); line-height: 1.55;
  border: 1px solid #A3D4B5; margin-bottom: 11px;
}

.rc-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.rc-map-btn {
  background: var(--spice); color: #fff; border: none;
  border-radius: 9px; padding: 7px 16px;
  font-size: 12px; font-weight: 600; cursor: pointer;
  font-family: var(--font-body); transition: background .15s;
  text-decoration: none; display: inline-block;
}
.rc-map-btn:hover { background: var(--spice2); }
.rc-cmp-btn {
  background: var(--warm); color: var(--text);
  border: 1px solid var(--border); border-radius: 9px;
  padding: 7px 13px; font-size: 12px; font-weight: 500;
  cursor: pointer; font-family: var(--font-body); transition: all .15s;
}
.rc-cmp-btn:hover, .rc-cmp-btn.added { border-color: var(--spice); color: var(--spice); background: var(--spice-lt); }

/* detail panel */
.detail-panel {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.dp-empty { text-align: center; padding: 60px 24px; }
.dpe-icon { font-size: 44px; margin-bottom: 14px; }
.dpe-title { font-family: var(--font-display); font-size: 20px; color: var(--text); margin-bottom: 8px; }
.dpe-sub { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* panel header */
.dp-hdr {
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; justify-content: space-between;
}
.dp-hdr-name { font-family: var(--font-display); font-size: 18px; color: var(--text); margin-bottom: 2px; }
.dp-hdr-sub { font-size: 11px; color: var(--muted); }
.dp-hdr-score { text-align: right; }
.dp-hdr-num { font-family: var(--font-display); font-size: 24px; font-weight: 700; line-height: 1; }
.dp-hdr-cnt { font-size: 10px; color: var(--muted); margin-top: 2px; }

/* panel tabs */
.dp-tabs { display: flex; border-bottom: 1px solid var(--border); }
.dptab {
  flex: 1; padding: 10px 6px; text-align: center;
  font-size: 12px; font-weight: 500; cursor: pointer;
  color: var(--muted); border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: all .15s;
}
.dptab.on { color: var(--spice); border-bottom-color: var(--spice); }
.dptabpg { display: none; padding: 16px 18px; }
.dptabpg.on { display: block; }

/* full score bars */
.fscore-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.fscore-lbl { font-size: 11px; color: var(--muted); width: 90px; flex-shrink: 0; text-align: right; }
.fscore-track { flex: 1; height: 7px; background: #F0E9DF; border-radius: 4px; overflow: hidden; }
.fscore-fill { height: 100%; border-radius: 4px; }
.fscore-val { font-size: 11px; font-weight: 600; width: 26px; text-align: right; flex-shrink: 0; }

/* donut */
.donut-wrap { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.donut-legend { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.dl-row { display: flex; align-items: center; gap: 7px; font-size: 11px; color: var(--muted); }
.dl-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.dl-val { margin-left: auto; font-weight: 600; color: var(--text); font-size: 12px; }

/* alert boxes */
.alert-g { background: var(--green-lt); border: 1px solid #A3D4B5; border-radius: 8px; padding: 8px 10px; font-size: 11px; color: var(--green); line-height: 1.55; margin-bottom: 6px; }
.alert-r { background: #FFECEC; border: 1px solid #F5B0B0; border-radius: 8px; padding: 8px 10px; font-size: 11px; color: #9B1C1C; line-height: 1.55; margin-bottom: 6px; }
.alert-y { background: var(--gold-lt); border: 1px solid #D4B250; border-radius: 8px; padding: 8px 10px; font-size: 11px; color: #78530A; line-height: 1.55; margin-bottom: 6px; }

/* review card */
.rev-card { border: 1px solid var(--border); border-radius: 10px; padding: 10px; margin-bottom: 8px; }
.rev-card:last-child { margin-bottom: 0; }
.rev-hdr { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 5px; }
.rev-auth { font-size: 11px; font-weight: 600; color: var(--text); }
.rev-src { font-size: 10px; color: var(--muted); }
.rev-stars { font-size: 11px; color: var(--gold); }
.rev-text { font-size: 11px; color: var(--muted); line-height: 1.6; }

/* comparison table */
.cmp-table { width: 100%; border-collapse: collapse; font-size: 11px; }
.cmp-table th { padding: 6px 8px; text-align: left; font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); border-bottom: 1px solid var(--border); }
.cmp-table td { padding: 8px; border-bottom: 1px solid var(--border); color: var(--muted); vertical-align: middle; }
.cmp-table tr:last-child td { border-bottom: none; }
.cmp-table tr:hover td { background: var(--cream); cursor: pointer; }
.cmp-name { font-weight: 500; color: var(--text); }
.cmp-score { font-weight: 700; font-size: 14px; }

/* map box */
.map-box {
  background: linear-gradient(135deg, #E8F0FF, #D5E3FF);
  border-radius: 10px; height: 130px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-size: 13px; color: #3730A3;
  cursor: pointer; border: 1px solid #C7D7F5;
  gap: 6px; transition: all .15s; text-decoration: none;
  margin-bottom: 12px;
}
.map-box:hover { background: linear-gradient(135deg, #D5E3FF, #C0D4FF); }

/* nearby */
.nearby-scroll { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.nearby-scroll::-webkit-scrollbar { display: none; }
.nb-card {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: 10px; padding: 10px; flex-shrink: 0; width: 130px;
  cursor: pointer; transition: all .15s;
}
.nb-card:hover { border-color: var(--spice); background: var(--spice-lt); }
.nb-emoji { font-size: 18px; margin-bottom: 4px; }
.nb-name { font-size: 11px; font-weight: 600; color: var(--text); margin-bottom: 2px; line-height: 1.3; }
.nb-score { font-size: 12px; font-weight: 700; color: var(--spice); }
.nb-dist { font-size: 10px; color: var(--muted); }

/* panel section label */
.psec { font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin: 12px 0 7px; }
.psec:first-child { margin-top: 0; }

/* ── BIZ PAGE ─────────────────────────────────────────────── */
.biz-hero {
  padding: 120px 24px 80px;
  background: linear-gradient(160deg, #1C0A02, #3D1A07);
  text-align: center;
}
.biz-hero-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: #F5A058; margin-bottom: 16px;
}
.biz-hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  color: #fff; line-height: 1.15;
  margin-bottom: 20px; letter-spacing: -.02em; font-weight: 700;
}
.biz-hero-h1 em { color: #F5A058; font-style: italic; }
.biz-hero-p {
  font-size: 17px; color: rgba(255,255,255,.65);
  max-width: 560px; margin: 0 auto 32px; line-height: 1.7;
}
.biz-hero-ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }
.biz-hero-social { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.45); }

.section-features { padding: 90px 0; background: var(--white); }
.feat-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 16px;
}
.ff-card {
  padding: 28px 24px;
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: all .2s;
}
.ff-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--spice); }
.ff-icon { font-size: 28px; margin-bottom: 12px; }
.ff-card h3 { font-family: var(--font-display); font-size: 18px; color: var(--text); margin-bottom: 8px; }
.ff-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

.section-pricing { padding: 90px 0; background: var(--cream); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 16px;
  align-items: stretch;
}
.price-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  display: flex; flex-direction: column; position: relative;
}
.price-card.featured {
  border-color: var(--spice);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, #fff, #FEF8F4);
}
.pc-popular {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--spice); color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 16px; border-radius: 20px; white-space: nowrap;
}
.pc-name { font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 8px; }
.pc-price { font-family: var(--font-display); font-size: 44px; font-weight: 700; color: var(--text); margin-bottom: 10px; line-height: 1; }
.pc-price span { font-size: 16px; font-weight: 400; color: var(--muted); }
.pc-desc { font-size: 13px; color: var(--muted); margin-bottom: 24px; line-height: 1.6; }
.pc-features { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 28px; flex: 1; }
.pc-features li { font-size: 13px; color: var(--muted); }
.pc-features li:has(✓) { color: var(--text); }
.pc-btn {
  display: block; text-align: center; text-decoration: none;
  background: var(--warm); color: var(--text);
  border: 1.5px solid var(--border);
  padding: 12px 24px; border-radius: 11px;
  font-size: 14px; font-weight: 600;
  font-family: var(--font-body); transition: all .15s;
  cursor: pointer;
}
.pc-btn:hover { border-color: var(--spice); color: var(--spice); }
.pc-btn-featured { background: var(--spice); color: #fff; border-color: var(--spice); }
.pc-btn-featured:hover { background: var(--spice2); color: #fff; }

.section-signup { padding: 90px 0; background: var(--white); }
.signup-card {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 50px 48px;
  max-width: 800px; margin: 0 auto;
}
.signup-form { display: flex; flex-direction: column; gap: 16px; }
.sf-row { display: flex; gap: 16px; }
.sf-field { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.sf-field label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.sf-field input {
  padding: 12px 14px; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: 14px;
  font-family: var(--font-body); color: var(--text);
  background: var(--white); outline: none; transition: border-color .15s;
}
.sf-field input:focus { border-color: var(--spice); }
.sf-field input::placeholder { color: #C4B49A; }
.sf-submit {
  background: var(--spice); color: #fff; border: none;
  padding: 16px 32px; border-radius: 12px;
  font-size: 15px; font-weight: 700;
  cursor: pointer; font-family: var(--font-body);
  transition: background .15s; align-self: flex-start;
}
.sf-submit:hover { background: var(--spice2); }
.sf-note { font-size: 12px; color: var(--muted); }
.sf-note a { color: var(--spice); text-decoration: none; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .search-layout { grid-template-columns: 1fr; }
  .detail-col { position: relative; top: auto; height: auto; }
  .biz-card { flex-direction: column; gap: 30px; padding: 36px 28px; }
  .biz-right { align-items: flex-start; }
  .hero-stats { flex-wrap: wrap; gap: 16px; }
  .hstat { text-align: left; }
  .hstat-div { display: none; }
  .steps-grid { flex-direction: column; }
  .step-connector { display: none; }
  .sf-row { flex-direction: column; }
  .footer-top { flex-direction: column; gap: 30px; }
  .footer-links { gap: 30px; }
  .signup-card { padding: 32px 24px; }
}

@media (max-width: 600px) {
  .hero-home { padding: 90px 20px 50px; }
  .section-how, .section-featured, .section-cats, .section-biz,
  .section-features, .section-pricing, .section-signup { padding: 60px 0; }
  .pricing-grid { grid-template-columns: 1fr; }
}
