/* bonbon-theme v3 — minimal normalization, footer styles, NO layout overrides */
:root {
  --bb-primary: #16a34a;
  --bb-primary-hover: #15803d;
  --bb-dark: #111111;
  --bb-text: #1e293b;
  --bb-muted: #64748b;
  --bb-border: #e5e7eb;
}
body { padding-top: 56px; margin: 0; }
.bb-nav * { color: inherit; }

/* === Universal footer === */
.bb-footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 40px 16px 28px;
  margin-top: 48px;
  font: 400 14px/1.5 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.bb-footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px;
}
.bb-footer a { color: #cbd5e1; text-decoration: none; }
.bb-footer a:hover { color: #16a34a; }
.bb-footer-brand {
  display: inline-flex; align-items: center; gap: 8px;
  color: #ffffff; font-weight: 800; font-size: 18px; text-decoration: none;
  margin-bottom: 8px;
}
.bb-footer-brand-dot {
  width: 18px; height: 18px; background: #16a34a; border-radius: 50%; display: inline-block;
}
.bb-footer-tag { margin: 0; color: #94a3b8; max-width: 400px; }
.bb-footer h4 {
  margin: 0 0 12px 0; color: #f1f5f9;
  font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
}
.bb-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.bb-footer-bottom {
  max-width: 1200px; margin: 28px auto 0; padding-top: 20px;
  border-top: 1px solid #1e293b;
  color: #64748b; font-size: 12px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.bb-footer-bottom a { color: #94a3b8; }
@media (max-width: 768px) {
  .bb-footer-inner { grid-template-columns: 1fr; gap: 24px; }
  .bb-footer-bottom { flex-direction: column; align-items: flex-start; }
}
