:root {
  --ink: #0f0f0e;
  --ink2: #2a2a28;
  --muted: #6b6b65;
  --light: #f7f5f0;
  --white: #ffffff;
  --border: rgba(15,15,14,0.1);
  --sl-green: #1a5c38;
  --sl-green2: #2d7a50;
  --sl-gold: #c8922a;
  --sl-gold2: #f0b84a;
  --radius: 14px;
  --tr: all 0.28s ease;
  --shadow: 0 2px 20px rgba(0,0,0,0.07);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--ink); background: var(--white); }
a { text-decoration: none; color: inherit; }
h1,h2,h3,h4 { font-family: 'Syne', sans-serif; }

.nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 0 2rem; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 34px; height: 34px; background: var(--sl-green); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.logo-mark svg { width: 18px; height: 18px; fill: white; }
.logo-text { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--ink); }
.logo-text span { color: var(--sl-green); }
.nav-right { display: flex; align-items: center; gap: 1.5rem; }
.nav-link { font-size: 0.875rem; color: var(--muted); transition: var(--tr); }
.nav-link:hover { color: var(--ink); }
.nav-btn { background: var(--sl-green); color: white; padding: 8px 18px; border-radius: 8px; font-size: 0.875rem; font-weight: 500; transition: var(--tr); }
.nav-btn:hover { background: var(--ink); }

.breadcrumb { padding: 1rem 2rem; font-size: 0.8rem; color: var(--muted); max-width: 1140px; margin: 0 auto; display: flex; align-items: center; gap: 6px; }
.breadcrumb a { color: var(--sl-green); }

.cat-hero { padding: 2.5rem 2rem 2rem; border-bottom: 1px solid var(--border); }
.cat-hero-inner { max-width: 1140px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; }
.cat-hero-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.cat-hero-title { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.cat-hero-sub { font-size: 1rem; color: var(--muted); }
.cat-hero-count { font-size: 0.875rem; color: var(--muted); }
.cat-hero-count strong { color: var(--sl-green); }

.filter-bar { background: var(--light); padding: 1rem 2rem; border-bottom: 1px solid var(--border); }
.filter-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.filter-label { font-size: 0.8rem; color: var(--muted); white-space: nowrap; }
.filter-chip { background: white; border: 1px solid var(--border); padding: 6px 14px; border-radius: 30px; font-size: 0.82rem; cursor: pointer; transition: var(--tr); white-space: nowrap; }
.filter-chip:hover, .filter-chip.active { background: var(--sl-green); color: white; border-color: var(--sl-green); }

.main-layout { max-width: 1140px; margin: 0 auto; padding: 2.5rem 2rem; display: grid; grid-template-columns: 260px 1fr; gap: 2.5rem; }
.sidebar { position: sticky; top: 80px; align-self: start; }
.sidebar-section { margin-bottom: 2rem; }
.sidebar-title { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.75rem; }
.sidebar-option { display: flex; align-items: center; justify-content: space-between; padding: 6px 0; cursor: pointer; }
.sidebar-option label { font-size: 0.875rem; cursor: pointer; display: flex; align-items: center; gap: 8px; }
.sidebar-option input[type=checkbox] { accent-color: var(--sl-green); width: 14px; height: 14px; }
.sidebar-count { font-size: 0.78rem; color: var(--muted); }
.sidebar-divider { height: 1px; background: var(--border); margin: 1rem 0; }

.listings-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.listings-count { font-size: 0.875rem; color: var(--muted); }
.listings-sort { display: flex; align-items: center; gap: 8px; font-size: 0.875rem; color: var(--muted); }
.listings-sort select { border: 1px solid var(--border); padding: 5px 10px; border-radius: 8px; font-size: 0.875rem; background: white; color: var(--ink); font-family: 'Inter', sans-serif; }

.listings-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

.biz-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: var(--tr); }
.biz-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.1); transform: translateY(-3px); border-color: var(--sl-green); }
.biz-card-img { height: 150px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; position: relative; }
.biz-badge { position: absolute; top: 10px; left: 10px; background: var(--sl-green); color: white; font-size: 0.68rem; font-weight: 500; padding: 3px 9px; border-radius: 20px; }
.biz-badge.gold { background: var(--sl-gold); }
.biz-badge.new { background: #185fa5; }
.biz-card-body { padding: 1rem 1.25rem; }
.biz-name { font-family: 'Syne', sans-serif; font-size: 0.95rem; font-weight: 600; margin-bottom: 3px; }
.biz-type { font-size: 0.78rem; color: var(--muted); margin-bottom: 8px; }
.biz-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.biz-rating { display: flex; align-items: center; gap: 4px; font-size: 0.8rem; }
.star { color: var(--sl-gold); font-size: 0.7rem; }
.biz-loc { font-size: 0.78rem; color: var(--muted); }
.biz-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 10px; }
.biz-tag { background: var(--light); font-size: 0.72rem; padding: 2px 8px; border-radius: 20px; color: var(--muted); }
.biz-actions { display: flex; gap: 6px; }
.biz-btn { flex: 1; padding: 8px; border-radius: 8px; font-size: 0.78rem; font-weight: 500; text-align: center; border: 1px solid var(--border); transition: var(--tr); cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 4px; }
.biz-btn-primary { background: var(--sl-green); color: white; border-color: var(--sl-green); }
.biz-btn-primary:hover { background: var(--ink); border-color: var(--ink); }
.biz-btn-wa { background: #25D366; color: white; border-color: #25D366; }
.biz-btn-wa:hover { filter: brightness(1.1); }

.empty-state { grid-column: 1/-1; text-align: center; padding: 4rem 2rem; border: 2px dashed var(--border); border-radius: var(--radius); }
.empty-icon { font-size: 3rem; margin-bottom: 1rem; }
.empty-title { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.empty-desc { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.5rem; }
.empty-btn { display: inline-block; background: var(--sl-green); color: white; padding: 10px 24px; border-radius: 8px; font-size: 0.875rem; font-weight: 500; }

.cta-banner { background: var(--sl-green); border-radius: var(--radius); padding: 2rem; margin-top: 2rem; display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.cta-banner-text h3 { font-size: 1.1rem; color: white; margin-bottom: 4px; }
.cta-banner-text p { font-size: 0.875rem; color: rgba(255,255,255,0.65); }
.cta-banner-btn { background: var(--sl-gold); color: white; padding: 10px 22px; border-radius: 8px; font-size: 0.875rem; font-weight: 500; white-space: nowrap; transition: var(--tr); }
.cta-banner-btn:hover { background: var(--sl-gold2); }

footer { background: var(--ink2); padding: 3rem 2rem 1.5rem; margin-top: 4rem; }
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-brand { font-family: 'Syne', sans-serif; font-size: 1.1rem; color: white; margin-bottom: 0.5rem; }
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.35); line-height: 1.65; }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sl-gold2); margin-bottom: 1rem; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.35); transition: color 0.3s; }
.footer-col a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.25rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.2); }

.wa-fixed { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 999; width: 52px; height: 52px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: var(--tr); }
.wa-fixed:hover { transform: scale(1.1); }
.wa-fixed svg { width: 26px; height: 26px; fill: white; }

@media (max-width: 900px) {
  .main-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; display: none; }
  .listings-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .listings-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .main-layout { padding: 1.5rem 1.25rem; }
}

/* ── SPACING FIXES ── */
.cat-hero { padding: 2.5rem 2rem 2rem; }
.main-layout { padding: 2rem 2rem 3rem; }

/* ── MOBILE NAV ── */
.nav-mobile-toggle { display: none; cursor: pointer; padding: 6px; }
.nav-mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; border-radius: 2px; transition: var(--tr); }

@media (max-width: 768px) {
  .nav { padding: 0 1.25rem; }
  .nav-right { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-right.open {
    display: flex; flex-direction: column;
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem; gap: 0.75rem; z-index: 999;
  }
  .cat-hero-inner { flex-direction: column; align-items: flex-start; }
  .biz-card-img { height: 130px; }
  .breadcrumb { padding: 0.75rem 1.25rem; }
  .filter-bar { padding: 0.75rem 1.25rem; }
  .cta-banner { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .listings-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; gap: 1.5rem; }
}
