/* wow-funnel – SmartBuyers1stChoice branding, mobile-first */
:root {
  --bg: #fff;
  --text: #1a1a1a;
  --muted: #666;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --border: #e5e7eb;
  --footer-bg: #000;
  --footer-text: #fff;
  --footer-muted: #999;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; font-size: 16px; line-height: 1.5; color: var(--text); background: var(--bg); min-height: 100vh; display: flex; flex-direction: column; }
.main-content { flex: 1; }

.container { max-width: 960px; margin: 0 auto; padding: 0 1rem; }

/* Header */
.site-header { background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,.08); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: .75rem 1rem; display: flex; align-items: center; justify-content: space-between; }
.logo-link { display: flex; align-items: center; text-decoration: none; color: var(--text); }
.logo-img { height: 40px; }
.logo-text { font-weight: 700; font-size: 1.1rem; display: none; }
.logo-img[style*="display: none"] + .logo-text { display: inline; }
.nav-links a { color: var(--text); text-decoration: none; margin-left: 1rem; }

/* Hero home */
.hero { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: #fff; padding: 2.5rem 1rem; text-align: center; }
.hero-title { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: .75rem; }
.hero-desc { max-width: 560px; margin: 0 auto; opacity: .95; }

/* Collections */
.collections { padding: 2rem 0; }
.collections h2 { margin-bottom: 1rem; }
.guide-list { list-style: none; }
.guide-list li { margin-bottom: .5rem; }
.guide-list a { color: var(--accent); text-decoration: none; }
.guide-list a:hover { text-decoration: underline; }
.empty-msg { color: var(--muted); }

/* Offer page */
.offer-page { padding-bottom: 2rem; }
.offer-hero { padding: 1.5rem 1rem; }
.offer-hero-inner { max-width: 960px; margin: 0 auto; display: grid; gap: 1.5rem; align-items: start; }
@media (min-width: 640px) { .offer-hero-inner { grid-template-columns: 1fr 1fr; } }
.offer-image-wrap { }
.offer-img { width: 100%; max-height: 360px; object-fit: contain; border-radius: 8px; }
.offer-title { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .5rem; }
.offer-subhead { color: var(--muted); margin-bottom: 1rem; }
.disclosure { font-size: .875rem; color: var(--muted); margin-bottom: 1rem; }
.disclosure-above { margin-top: .5rem; }
.cta-primary { display: inline-block; background: var(--accent); color: #fff; font-weight: 600; padding: .75rem 1.5rem; border-radius: 8px; text-decoration: none; }
.cta-primary:hover { background: var(--accent-hover); }
.cta-secondary { display: inline-block; color: var(--accent); font-weight: 500; margin-right: 1rem; }
.offer-bullets, .offer-description { padding: 1.5rem 1rem; }
.offer-bullets h2, .offer-description h2 { margin-bottom: 1rem; font-size: 1.25rem; }
.bullets { list-style: disc; padding-left: 1.5rem; }
.bullets li { margin-bottom: .5rem; }
.bullets.compact li { margin-bottom: .25rem; font-size: .95rem; }
.rich-desc { line-height: 1.6; }
.offer-cta-bottom { padding: 2rem 1rem; text-align: center; border-top: 1px solid var(--border); }
.comparison-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.comparison-card { border: 1px solid var(--border); border-radius: 8px; padding: .9rem; background: #fff; }
.comparison-card h3 { margin-bottom: .5rem; font-size: 1rem; }
.faq-wrap { display: grid; gap: .75rem; }
.faq-item { border: 1px solid var(--border); border-radius: 8px; padding: .8rem; background: #fff; }
.faq-item h3 { font-size: 1rem; margin-bottom: .25rem; }

/* Guide page */
.guide-page { padding: 1.5rem 0; }
.guide-title { margin-bottom: 1rem; }
.guide-desc { color: var(--muted); margin-bottom: 1rem; }
.guide-products { list-style: none; }
.guide-product-card { display: grid; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); grid-template-columns: 120px 1fr; align-items: start; }
.guide-product-img { width: 100%; max-width: 120px; border-radius: 6px; }

/* Footer – match existing branding */
.site-footer { background: var(--footer-bg); color: var(--footer-text); padding: 2rem 1rem; margin-top: auto; text-align: center; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-logo-img { max-width: 160px; filter: brightness(1.5); }
.footer-brand { display: block; font-weight: 700; margin-bottom: .5rem; }
.footer-disclosure { color: var(--footer-muted); font-size: .875rem; margin: .5rem 0; }
.footer-copy { color: var(--footer-muted); font-size: .875rem; }
