/* ═══════════════════════════════════════════════════════════════════════════
   PowerHub.ng — Main Stylesheet
   Extracted from powerhub_homepage.html
   Fonts: Plus Jakarta Sans (headings/nav/buttons), DM Sans (body), IBM Plex Mono (prices/numbers)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Reset & Base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }
input, select, textarea { font-family: inherit; }

/* ── Design Tokens ────────────────────────────────────────────────────── */
:root {
  --navy:       #1B2A4A;
  --navy-mid:   #243660;
  --blue:       #2563EB;
  --blue-light: #EFF6FF;
  --blue-mid:   #DBEAFE;
  --orange:     #F97316;
  --orange-light: #FFF7ED;
  --orange-mid: #FED7AA;
  --white:      #FFFFFF;
  --surface:    #F8FAFC;
  --surface-2:  #F1F5F9;
  --border:     #E2E8F0;
  --border-mid: #CBD5E1;
  --text:       #0F172A;
  --text-mid:   #334155;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --green:      #16A34A;
  --green-light:#DCFCE7;
  --red:        #DC2626;
  --red-light:  #FEE2E2;
  --amber:      #D97706;
  --amber-light:#FEF3C7;
  --purple:     #7C3AED;
  --purple-light:#EDE9FE;
  --teal:       #0F766E;
  --teal-light: #CCFBF1;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 12px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg:  0 10px 30px rgba(0,0,0,.10), 0 4px 10px rgba(0,0,0,.06);
  --radius:     4px;
  --radius-md:  6px;
  --container:  1400px;
}

/* ── Utilities ────────────────────────────────────────────────────────── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.tag {
  display: inline-flex; align-items: center; gap: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; padding: 3px 8px; border-radius: 2px;
}
.tag-blue   { background: var(--blue-light);  color: var(--blue); }
.tag-orange { background: var(--orange-light); color: var(--orange); border: 1px solid var(--orange-mid); }
.tag-green  { background: var(--green-light);  color: var(--green); }
.tag-navy   { background: var(--navy); color: var(--white); }
.tag-amber  { background: var(--amber-light); color: var(--amber); }
.tag-purple { background: var(--purple-light); color: var(--purple); }
.tag-teal   { background: var(--teal-light); color: var(--teal); }

.verified-badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--green); background: var(--green-light);
  padding: 2px 7px; border-radius: 2px; letter-spacing: .03em;
  white-space: nowrap;
}
.verified-badge::before { content: '✓'; font-size: 10px; }
.official-badge {
  display: inline-flex; align-items: center; gap: 3px; font-size: 10.5px;
  font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--amber); background: var(--amber-light); padding: 2px 7px; border-radius: 2px;
}
.star-row { display: flex; align-items: center; gap: 4px; color: var(--orange); font-size: 12px; }
.star-row span { color: var(--text-muted); font-size: 12px; font-family: 'DM Sans', sans-serif; }

/* ── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700;
  border-radius: var(--radius); transition: all .18s ease; white-space: nowrap;
  letter-spacing: .01em;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  padding: 10px 20px; font-size: 14px;
  box-shadow: 0 2px 0 #C05405;
}
.btn-primary:hover { background: #EA6C0A; transform: translateY(-1px); box-shadow: 0 3px 0 #C05405; }
.btn-navy {
  background: var(--navy); color: var(--white);
  padding: 10px 20px; font-size: 14px;
  box-shadow: 0 2px 0 #0F1A2E;
}
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-outline {
  background: var(--white); color: var(--navy);
  border: 2px solid var(--navy); padding: 8px 18px; font-size: 14px;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-ghost {
  background: transparent; color: var(--text-mid);
  padding: 8px 14px; font-size: 13px; font-weight: 600;
}
.btn-ghost:hover { background: var(--surface); color: var(--navy); }
.btn-sm { padding: 7px 14px; font-size: 12px; }
.btn-xs { padding: 5px 10px; font-size: 11.5px; }
.btn-icon { width: 36px; height: 36px; padding: 0; border-radius: var(--radius); }
.wa-btn {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 10px; background: #25D366; color: var(--white);
  border-radius: var(--radius); font-size: 11.5px; font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif; transition: background .15s;
  white-space: nowrap;
}
.wa-btn:hover { background: #1ebe5d; }
.wa-btn svg { width: 12px; height: 12px; }
.wa-btn-sm { padding: 6px 11px; font-size: 12px; }
.wa-btn-sm svg { width: 12px; height: 12px; }

/* ── Announcement Bar ─────────────────────────────────────────────────── */
.announcement-bar {
  background: var(--orange-light);
  border-bottom: 1px solid var(--orange-mid);
  padding: 8px 0;
}
.announcement-bar .container {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  flex-wrap: wrap;
}
.ann-left { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.ann-pulse {
  width: 7px; height: 7px; border-radius: 50%; background: var(--orange);
  animation: pulse 2s infinite; flex-shrink: 0;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.3); }
}
.ann-text { font-size: 12.5px; font-weight: 500; color: var(--text-mid); }
.ann-text strong { color: var(--orange); }
.ann-links { display: flex; gap: 16px; }
.ann-links a {
  font-size: 12px; font-weight: 700; color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  letter-spacing: .03em; text-transform: uppercase;
  border-bottom: 1px solid transparent;
}
.ann-links a:hover { border-bottom-color: var(--navy); }

/* ── Header ───────────────────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 2px solid var(--navy);
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex; align-items: center; gap: 0;
  height: 64px;
}

/* Logo */
.logo {
  display: flex; align-items: center; gap: 9px;
  text-decoration: none; margin-right: 28px; flex-shrink: 0;
}
.logo-icon {
  width: 34px; height: 34px; background: var(--navy);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 20px; height: 20px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px; font-weight: 800; color: var(--navy); letter-spacing: -.02em;
}
.logo-tagline { font-size: 9.5px; color: var(--text-muted); font-weight: 500; letter-spacing: .04em; text-transform: uppercase; margin-top: 1px; }

/* Primary Nav */
.primary-nav { display: flex; align-items: center; gap: 2px; flex: 1; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 12px; font-size: 13.5px; font-weight: 600;
  color: var(--text-mid); font-family: 'Plus Jakarta Sans', sans-serif;
  border-radius: var(--radius); transition: all .15s;
  white-space: nowrap;
}
.nav-link:hover, .nav-item.active > .nav-link { color: var(--navy); background: var(--surface); }
.nav-chevron { width: 14px; height: 14px; transition: transform .2s; flex-shrink: 0; }
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-top: 3px solid var(--orange);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  min-width: 520px; padding: 16px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all .2s ease; pointer-events: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4px;
}
.dropdown.dropdown-wide { min-width: 640px; grid-template-columns: 1fr 1fr 1fr; }
.dropdown.dropdown-sm { min-width: 220px; grid-template-columns: 1fr; }
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}
.dd-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 12px; border-radius: var(--radius); transition: background .15s;
  border: 1px solid transparent;
}
.dd-item:hover { background: var(--surface); border-color: var(--border); }
.dd-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--surface-2); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; margin-top: 1px;
}
.dd-icon svg { width: 16px; height: 16px; }
.dd-text { display: flex; flex-direction: column; }
.dd-name { font-size: 13px; font-weight: 700; color: var(--navy); font-family: 'Plus Jakarta Sans', sans-serif; }
.dd-desc { font-size: 11.5px; color: var(--text-muted); margin-top: 1px; }
.dd-divider { grid-column: 1/-1; height: 1px; background: var(--border); margin: 4px 0; }
.dd-header { grid-column: 1/-1; font-size: 10px; font-weight: 700; color: var(--text-light); letter-spacing: .08em; text-transform: uppercase; padding: 4px 12px 2px; }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.search-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 12px; border: 1px solid var(--border);
  border-radius: var(--radius); background: var(--surface);
  font-size: 13px; color: var(--text-muted); font-family: 'DM Sans', sans-serif;
  cursor: pointer; transition: all .15s; min-width: 180px;
}
.search-btn:hover { border-color: var(--blue); background: var(--white); }
.search-btn svg { width: 14px; height: 14px; flex-shrink: 0; }
.search-shortcut {
  margin-left: auto; font-size: 10.5px; font-family: 'IBM Plex Mono', monospace;
  background: var(--white); border: 1px solid var(--border-mid);
  padding: 1px 5px; border-radius: 3px; color: var(--text-light);
}
.header-divider { width: 1px; height: 28px; background: var(--border); margin: 0 4px; }
.login-btn {
  font-size: 13px; font-weight: 600; color: var(--text-mid);
  font-family: 'Plus Jakarta Sans', sans-serif; padding: 7px 14px;
  border-radius: var(--radius); transition: all .15s;
}
.login-btn:hover { background: var(--surface); color: var(--navy); }

/* Mobile menu toggle */
.menu-toggle { display: none; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: var(--radius); border: 1px solid var(--border); }
.menu-toggle:hover { background: var(--surface); }
.menu-toggle svg { width: 18px; height: 18px; }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: var(--white); overflow-y: auto;
}
.mobile-nav.open { display: flex; flex-direction: column; }
.mobile-nav-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-bottom: 2px solid var(--navy);
  position: sticky; top: 0; background: var(--white); z-index: 1;
}
.mobile-nav-close { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: var(--radius); }
.mobile-nav-body { padding: 16px 20px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.mobile-search {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 14px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); margin-bottom: 12px;
  font-size: 14px; color: var(--text-muted); font-family: 'DM Sans', sans-serif;
}
.mobile-search svg { width: 16px; height: 16px; flex-shrink: 0; }
.mob-section { font-size: 10px; font-weight: 700; color: var(--text-light); letter-spacing: .08em; text-transform: uppercase; padding: 12px 4px 6px; }
.mob-link {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 12px; border-radius: var(--radius); font-size: 14px;
  font-weight: 600; color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif;
  transition: background .15s;
}
.mob-link:hover { background: var(--surface); }
.mob-link svg { width: 16px; height: 16px; color: var(--text-muted); flex-shrink: 0; }
.mob-icon { width: 30px; height: 30px; border-radius: var(--radius); background: var(--surface-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mobile-nav-footer { padding: 16px 20px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 8px; }

/* ── Search Modal ─────────────────────────────────────────────────────── */
.search-modal {
  display: none; position: fixed; inset: 0; z-index: 3000;
  background: rgba(0,0,0,.5); backdrop-filter: blur(4px);
  align-items: flex-start; justify-content: center;
  padding-top: 80px;
}
.search-modal.open { display: flex; }
.search-modal-inner {
  background: var(--white); border-radius: var(--radius-md);
  width: 100%; max-width: 680px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.search-modal-top {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; border-bottom: 1px solid var(--border);
}
.search-modal-top svg { width: 18px; height: 18px; color: var(--text-muted); flex-shrink: 0; }
.search-modal-input {
  flex: 1; border: none; outline: none; font-size: 16px;
  font-family: 'DM Sans', sans-serif; color: var(--text);
}
.search-modal-input::placeholder { color: var(--text-light); }
.search-modal-close {
  width: 30px; height: 30px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: var(--radius); flex-shrink: 0;
  font-size: 12px; color: var(--text-muted); cursor: pointer; transition: all .15s;
}
.search-modal-close:hover { background: var(--surface); color: var(--navy); }
.search-modal-body { padding: 16px; }
.search-hint { font-size: 11px; color: var(--text-light); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; margin-bottom: 10px; }
.search-quick-links { display: flex; gap: 8px; flex-wrap: wrap; }
.search-quick-link {
  padding: 6px 12px; border: 1px solid var(--border); border-radius: 20px;
  font-size: 13px; color: var(--text-mid); font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600; transition: all .15s; cursor: pointer;
}
.search-quick-link:hover { border-color: var(--navy); color: var(--navy); background: var(--surface); }

/* ── Category Strip ───────────────────────────────────────────────────── */
.category-strip {
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 0;
}
.category-strip-inner {
  display: flex; align-items: stretch; overflow-x: auto;
  scrollbar-width: none; -ms-overflow-style: none;
}
.category-strip-inner::-webkit-scrollbar { display: none; }
.cat-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; font-size: 12.5px; font-weight: 700;
  color: var(--text-mid); font-family: 'Plus Jakarta Sans', sans-serif;
  border-right: 1px solid var(--border); white-space: nowrap;
  transition: all .15s; cursor: pointer; flex-shrink: 0;
  border-bottom: 2px solid transparent;
}
.cat-pill svg { width: 14px; height: 14px; flex-shrink: 0; }
.cat-pill:hover { color: var(--navy); background: var(--white); border-bottom-color: var(--orange); }
.cat-pill.active { color: var(--orange); background: var(--white); border-bottom-color: var(--orange); }

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero {
  padding: 44px 0 36px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap;
}
.hero-badge {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  background: var(--navy); color: var(--white); padding: 4px 10px; border-radius: 2px;
}
.hero-stat-quick { font-size: 12px; color: var(--text-muted); }
.hero-stat-quick strong { color: var(--green); font-weight: 700; }
.hero-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 4vw, 42px); font-weight: 800;
  color: var(--navy); line-height: 1.15; letter-spacing: -.025em;
  margin-bottom: 14px;
}
.hero-headline .accent { color: var(--orange); }
.hero-headline .underline-accent {
  text-decoration: underline; text-decoration-color: var(--orange);
  text-underline-offset: 4px; text-decoration-thickness: 3px;
}
.hero-sub {
  font-size: 15px; color: var(--text-mid); line-height: 1.65;
  max-width: 520px; margin-bottom: 24px;
}
.hero-ctas { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-features {
  display: flex; align-items: center; gap: 0; flex-wrap: wrap;
  padding-top: 20px; border-top: 1px solid var(--border);
}
.hero-feat {
  display: flex; align-items: center; gap: 7px; padding: 6px 16px 6px 0;
  font-size: 12.5px; color: var(--text-mid); font-weight: 500;
}
.hero-feat:not(:last-child) { border-right: 1px solid var(--border); margin-right: 16px; }
.hero-feat svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }

/* Hero Right Card */
.hero-right { display: flex; flex-direction: column; gap: 12px; }
.hero-card {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; background: var(--white);
  box-shadow: var(--shadow-sm);
}
.hero-card-header {
  padding: 10px 14px; background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.hero-card-title { font-size: 11px; font-weight: 800; color: var(--navy); text-transform: uppercase; letter-spacing: .06em; font-family: 'Plus Jakarta Sans', sans-serif; }
.hero-card-body { padding: 14px; }
.quick-stat-row { display: flex; align-items: center; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid var(--border); }
.quick-stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.qsr-label { font-size: 12.5px; color: var(--text-mid); display: flex; align-items: center; gap: 6px; }
.qsr-label svg { width: 13px; height: 13px; color: var(--text-light); }
.qsr-val { font-family: 'IBM Plex Mono', monospace; font-size: 13px; font-weight: 600; color: var(--navy); }
.qsr-val.green { color: var(--green); }
.qsr-val.orange { color: var(--orange); }
.gas-locator-mini { display: flex; gap: 8px; }
.gas-input {
  flex: 1; padding: 9px 12px; border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 13px; font-family: 'DM Sans', sans-serif; color: var(--text);
  outline: none; transition: border-color .15s;
}
.gas-input:focus { border-color: var(--blue); }
.gas-input::placeholder { color: var(--text-light); }
.gas-search-btn {
  padding: 9px 14px; background: var(--orange); color: var(--white); border-radius: var(--radius);
  font-size: 13px; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif;
  display: flex; align-items: center; gap: 6px; flex-shrink: 0;
  transition: background .15s;
}
.gas-search-btn:hover { background: #EA6C0A; }
.gas-search-btn svg { width: 14px; height: 14px; }
.hero-card-footer {
  padding: 8px 14px; background: var(--surface);
  border-top: 1px solid var(--border); font-size: 11.5px; color: var(--text-muted);
  display: flex; align-items: center; gap: 5px;
}
.hero-card-footer svg { width: 12px; height: 12px; color: var(--green); }

/* ── Stats Band ───────────────────────────────────────────────────────── */
.stats-band {
  padding: 20px 0; background: var(--navy);
  border-bottom: 3px solid var(--orange);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  padding: 12px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.12);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(22px, 3vw, 30px); font-weight: 800;
  color: var(--white); line-height: 1.1;
  letter-spacing: -.02em;
}
.stat-num span { color: var(--orange); }
.stat-label { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 3px; font-weight: 500; }

/* ── Section Headers ──────────────────────────────────────────────────── */
.section-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 20px; gap: 16px; flex-wrap: wrap;
}
.section-label {
  font-size: 10.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--orange); font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: 4px;
  display: flex; align-items: center; gap: 6px;
}
.section-label::before { content: ''; display: block; width: 16px; height: 2px; background: var(--orange); }
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(18px, 2.5vw, 24px); font-weight: 800;
  color: var(--navy); letter-spacing: -.02em; line-height: 1.2;
}
.section-desc { font-size: 13.5px; color: var(--text-muted); margin-top: 3px; }
.see-all {
  font-size: 12.5px; font-weight: 700; color: var(--blue);
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: flex; align-items: center; gap: 4px; white-space: nowrap;
  border-bottom: 1px solid transparent; transition: border-color .15s;
}
.see-all:hover { border-bottom-color: var(--blue); }
.see-all svg { width: 13px; height: 13px; }

/* ── Categories Section ───────────────────────────────────────────────── */
.categories-section { padding: 40px 0; background: var(--white); border-bottom: 1px solid var(--border); }
.categories-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px;
}
.cat-card {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 18px 14px; text-align: center; background: var(--white);
  transition: all .2s ease; cursor: pointer; position: relative; overflow: hidden;
}
.cat-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--orange); transform: scaleX(0);
  transition: transform .2s ease; transform-origin: left;
}
.cat-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.cat-card:hover::before { transform: scaleX(1); }
.cat-card-icon {
  width: 44px; height: 44px; margin: 0 auto 10px;
  background: var(--surface-2); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.cat-card-icon svg { width: 22px; height: 22px; color: var(--navy); }
.cat-card:hover .cat-card-icon { background: var(--orange-light); }
.cat-card:hover .cat-card-icon svg { color: var(--orange); }
.cat-name {
  font-size: 12.5px; font-weight: 800; color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: 3px;
  line-height: 1.3;
}
.cat-count { font-size: 11px; color: var(--text-muted); }

/* ── Marketplace Preview ──────────────────────────────────────────────── */
.marketplace-section { padding: 40px 0; background: var(--surface); border-bottom: 1px solid var(--border); }
.marketplace-layout { display: grid; grid-template-columns: 220px 1fr; gap: 20px; align-items: start; }
.marketplace-filters {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  background: var(--white); overflow: hidden; position: sticky; top: 84px;
}
.filter-header {
  padding: 12px 14px; background: var(--navy); color: var(--white);
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: flex; align-items: center; gap: 8px;
}
.filter-header svg { width: 14px; height: 14px; }
.filter-group { padding: 12px 14px; border-bottom: 1px solid var(--border); }
.filter-group:last-child { border-bottom: none; }
.filter-group-title {
  font-size: 10.5px; font-weight: 800; color: var(--text-light);
  text-transform: uppercase; letter-spacing: .07em;
  font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: 9px;
}
.filter-option {
  display: flex; align-items: center; justify-content: space-between;
  padding: 5px 0; cursor: pointer;
}
.filter-opt-left { display: flex; align-items: center; gap: 8px; }
.filter-checkbox {
  width: 15px; height: 15px; border: 1.5px solid var(--border-mid);
  border-radius: 2px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .15s;
}
.filter-checkbox.checked { background: var(--blue); border-color: var(--blue); }
.filter-checkbox.checked::after { content: '✓'; font-size: 9px; color: white; font-weight: 800; }
.filter-opt-name { font-size: 12.5px; color: var(--text-mid); }
.filter-opt-count {
  font-size: 11px; color: var(--text-light); background: var(--surface-2);
  padding: 1px 6px; border-radius: 10px; font-family: 'IBM Plex Mono', monospace;
}
.filter-apply { width: 100%; padding: 10px; background: var(--orange); color: var(--white); font-size: 13px; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; border-radius: 0; transition: background .15s; }
.filter-apply:hover { background: #EA6C0A; }

/* Products Grid */
.products-top-bar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px; gap: 12px; flex-wrap: wrap;
}
.products-count { font-size: 13px; color: var(--text-muted); }
.products-count strong { color: var(--text); font-weight: 700; }
.sort-select {
  padding: 7px 12px; border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 12.5px; font-family: 'DM Sans', sans-serif; color: var(--text-mid);
  background: var(--white); cursor: pointer; outline: none;
}
.active-filters { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.filter-chip {
  display: flex; align-items: center; gap: 5px;
  padding: 4px 10px; background: var(--blue-light); color: var(--blue);
  border-radius: 20px; font-size: 11.5px; font-weight: 600; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.filter-chip:hover { background: #DBEAFE; }
.filter-chip svg { width: 10px; height: 10px; }
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.product-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: all .2s ease; cursor: pointer;
}
.product-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-mid); transform: translateY(-1px); }
.product-img {
  aspect-ratio: 4/3; background: var(--surface-2);
  display: flex; align-items: center; justify-content: center; position: relative;
  overflow: hidden; border-bottom: 1px solid var(--border);
}
.product-img svg { width: 48px; height: 48px; color: var(--text-light); }
.product-img-badge {
  position: absolute; top: 8px; left: 8px;
}
.product-img-vendors {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(255,255,255,.92); border: 1px solid var(--border);
  border-radius: 2px; padding: 2px 7px;
  font-size: 10.5px; font-weight: 700; color: var(--text-mid);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.product-body { padding: 12px; }
.product-brand { font-size: 10.5px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: .05em; font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: 4px; }
.product-name { font-size: 13px; font-weight: 700; color: var(--navy); font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.35; margin-bottom: 6px; }
.product-price-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 7px; }
.product-price { font-family: 'IBM Plex Mono', monospace; font-size: 13.5px; font-weight: 600; color: var(--text); }
.product-price small { font-size: 10.5px; color: var(--text-muted); font-family: 'DM Sans', sans-serif; }
.product-meta { display: flex; align-items: center; justify-content: space-between; padding-top: 8px; border-top: 1px solid var(--border); }
.product-contact {
  display: flex; gap: 6px;
}

/* ── Product card extras (category page uses these) ──────────────────── */
.product-brand-row { display: flex; align-items: center; gap: 6px; margin-bottom: 3px; }
.official-tag { font-size: 9.5px; font-weight: 700; color: var(--blue); background: var(--blue-light); border-radius: 10px; padding: 1px 6px; text-transform: uppercase; letter-spacing: .04em; font-family: 'Plus Jakarta Sans', sans-serif; }
.price-from-label { font-size: 10.5px; color: var(--text-muted); font-family: 'Plus Jakarta Sans', sans-serif; }
.price-main { font-family: 'IBM Plex Mono', monospace; font-size: 14px; font-weight: 700; color: var(--navy); }
.product-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 8px; border-top: 1px solid var(--border); margin-top: 4px; }
.product-actions { display: flex; align-items: center; gap: 6px; }
.view-prod-btn { display: inline-flex; align-items: center; gap: 3px; font-size: 12px; font-weight: 700; color: var(--navy); font-family: 'Plus Jakarta Sans', sans-serif; text-decoration: none; }
.view-prod-btn:hover { color: var(--orange); }
.view-prod-btn svg { width: 12px; height: 12px; }
.vendor-pill { display: inline-flex; align-items: center; gap: 4px; font-size: 10.5px; font-weight: 600; background: rgba(255,255,255,.9); border: 1px solid var(--border); border-radius: 10px; padding: 2px 7px; color: var(--text-mid); font-family: 'Plus Jakarta Sans', sans-serif; }
.vendor-pill svg { width: 10px; height: 10px; }

/* ── Category Page — Breadcrumb ──────────────────────────────────────── */
.breadcrumb-bar { background: var(--surface); border-bottom: 1px solid var(--border); padding: 10px 0; }
.breadcrumb-list { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.breadcrumb-list li { font-size: 12.5px; color: var(--text-muted); }
.breadcrumb-list a { color: var(--text-muted); text-decoration: none; transition: color .12s; }
.breadcrumb-list a:hover { color: var(--navy); }
.breadcrumb-sep { color: var(--border-mid); }
.breadcrumb-current { color: var(--navy); font-weight: 600; }

/* ── Category Hero ────────────────────────────────────────────────────── */
.category-hero { background: var(--white); border-bottom: 1px solid var(--border); }
.category-hero-inner { display: grid; grid-template-columns: 1fr 320px; gap: 40px; align-items: center; padding: 36px 0 28px; }
.cat-icon-row { display: flex; align-items: center; gap: 16px; margin-bottom: 14px; }
.cat-icon-box { width: 52px; height: 52px; border-radius: var(--radius-md); background: var(--orange-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cat-icon-box svg { width: 28px; height: 28px; color: var(--orange); }
.cat-label-top { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text-muted); font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: 4px; }
.cat-title { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(20px,2.5vw,30px); font-weight: 800; color: var(--navy); line-height: 1.2; margin: 0; }
.cat-desc { font-size: 14.5px; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; max-width: 520px; }
.cat-key-facts { display: flex; flex-wrap: wrap; gap: 14px; }
.cat-fact { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; color: var(--text-mid); }
.cat-fact svg { width: 13px; height: 13px; color: var(--orange); flex-shrink: 0; }
.cat-fact strong { color: var(--navy); font-weight: 700; }
.cat-stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 14px; }
.cat-stat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 14px 16px; text-align: center; }
.csn { font-family: 'IBM Plex Mono', monospace; font-size: 22px; font-weight: 700; color: var(--navy); line-height: 1; }
.csn span { font-size: 14px; color: var(--orange); }
.csl { font-size: 10.5px; color: var(--text-muted); font-weight: 600; margin-top: 4px; text-transform: uppercase; letter-spacing: .05em; font-family: 'Plus Jakarta Sans', sans-serif; }
.cat-cta-row { display: flex; flex-wrap: wrap; gap: 8px; }

/* ── Type Navigation ──────────────────────────────────────────────────── */
.type-nav-wrap { background: var(--surface); border-top: 1px solid var(--border); }
.type-nav { display: flex; gap: 4px; padding: 8px 0; overflow-x: auto; scrollbar-width: none; }
.type-nav::-webkit-scrollbar { display: none; }
.type-btn { display: inline-flex; align-items: center; gap: 7px; padding: 7px 14px; border-radius: var(--radius); background: transparent; border: 1px solid transparent; color: var(--text-mid); font-size: 13px; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif; text-decoration: none; transition: all .15s; white-space: nowrap; }
.type-btn:hover { background: var(--white); border-color: var(--border); color: var(--navy); }
.type-btn.active { background: var(--white); border-color: var(--navy); color: var(--navy); }
.type-btn-icon { width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.type-btn-icon svg { width: 18px; height: 18px; }
.type-count { font-size: 10.5px; color: var(--text-muted); background: var(--border); border-radius: 10px; padding: 1px 6px; font-weight: 700; }
.type-btn.active .type-count { background: var(--navy); color: var(--white); }

/* ── Brand Strip ──────────────────────────────────────────────────────── */
.brand-strip-wrap { padding: 12px 0; border-bottom: 1px solid var(--border); background: var(--white); }
.brand-strip-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.brand-strip-title { font-size: 12px; font-weight: 700; color: var(--text-mid); font-family: 'Plus Jakarta Sans', sans-serif; }
.brand-strip-all { font-size: 12px; color: var(--blue); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 3px; }
.brand-strip-all svg { width: 12px; height: 12px; }
.brand-scroll { display: flex; gap: 8px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
.brand-scroll::-webkit-scrollbar { display: none; }
.brand-card { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius-md); text-decoration: none; background: var(--white); transition: all .15s; min-width: 80px; text-align: center; flex-shrink: 0; }
.brand-card:hover { border-color: var(--border-mid); background: var(--surface); }
.brand-card.active { border-color: var(--navy); background: var(--navy); }
.brand-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--blue-light); color: var(--blue); font-size: 12px; font-weight: 800; display: flex; align-items: center; justify-content: center; font-family: 'Plus Jakarta Sans', sans-serif; }
.brand-card.active .brand-avatar { background: rgba(255,255,255,.15); color: var(--white); }
.brand-card-name { font-size: 11px; font-weight: 700; color: var(--navy); font-family: 'Plus Jakarta Sans', sans-serif; }
.brand-card.active .brand-card-name { color: var(--white); }
.brand-card-count { font-size: 10px; color: var(--text-muted); }
.brand-card.active .brand-card-count { color: rgba(255,255,255,.6); }

/* ── Category Main Layout ─────────────────────────────────────────────── */
.category-main { padding: 24px 0 60px; }
.category-layout { display: grid; grid-template-columns: 240px 1fr; gap: 24px; align-items: start; }

/* ── Filter Sidebar ───────────────────────────────────────────────────── */
.filter-sidebar { position: sticky; top: 80px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.filter-sidebar-header { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; background: var(--surface); border-bottom: 1px solid var(--border); }
.fsh-left { display: flex; align-items: center; gap: 6px; }
.fsh-left svg { width: 13px; height: 13px; color: var(--text-muted); }
.fsh-title { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--text-mid); font-family: 'Plus Jakarta Sans', sans-serif; }
.fsh-clear { font-size: 11.5px; color: var(--blue); font-weight: 600; text-decoration: none; }
.filter-group { border-bottom: 1px solid var(--border); }
.filter-group:last-child { border-bottom: none; }
.filter-group-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 11px 14px; background: none; border: none; cursor: pointer; text-align: left; }
.fgt-left { display: flex; align-items: center; gap: 6px; }
.fgt-title { font-size: 12.5px; font-weight: 700; color: var(--navy); font-family: 'Plus Jakarta Sans', sans-serif; }
.fgt-count { font-size: 10.5px; color: var(--blue); font-weight: 700; background: var(--blue-light); border-radius: 10px; padding: 1px 6px; }
.fgt-chevron { width: 14px; height: 14px; color: var(--text-muted); transition: transform .2s; flex-shrink: 0; }
.filter-group:not(.open) .fgt-chevron { transform: rotate(-90deg); }
.filter-group-body { padding: 4px 14px 12px; display: none; }
.filter-group.open .filter-group-body { display: block; }
.filter-option { display: flex; align-items: center; justify-content: space-between; padding: 5px 0; cursor: pointer; }
.fo-left { display: flex; align-items: center; gap: 8px; }
.fo-left input[type="radio"] { display: none; }
.filter-checkbox { width: 14px; height: 14px; border: 1.5px solid var(--border-mid); border-radius: 50%; flex-shrink: 0; transition: all .12s; }
.filter-checkbox.checked { background: var(--navy); border-color: var(--navy); }
.filter-opt-name { font-size: 13px; color: var(--text-mid); }
.filter-opt-count { font-size: 11px; color: var(--text-muted); }
.price-range-inputs { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.price-input-wrap { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.price-input-label { font-size: 10px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; font-family: 'Plus Jakarta Sans', sans-serif; }
.price-sep { color: var(--text-muted); font-size: 13px; flex-shrink: 0; }
.price-input { width: 100%; padding: 7px 8px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 12.5px; color: var(--text); font-family: 'DM Sans', sans-serif; outline: none; }
.price-input:focus { border-color: var(--blue); }
.price-apply { width: 100%; padding: 8px; background: var(--navy); color: var(--white); border: none; border-radius: var(--radius); font-size: 12px; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; cursor: pointer; transition: background .15s; }
.price-apply:hover { background: var(--navy-mid); }
.filter-actions { padding: 12px 14px; border-top: 1px solid var(--border); display: flex; gap: 8px; }
.filter-apply-btn { flex: 1; padding: 9px; background: var(--orange); color: var(--white); border: none; border-radius: var(--radius); font-size: 12.5px; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; cursor: pointer; transition: background .15s; }
.filter-apply-btn:hover { background: #EA6C0A; }
.filter-reset-btn { padding: 9px 14px; color: var(--text-muted); font-size: 12.5px; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif; text-decoration: none; border: 1px solid var(--border); border-radius: var(--radius); transition: all .12s; }
.filter-reset-btn:hover { border-color: var(--border-mid); color: var(--navy); }

/* ── Products Area ────────────────────────────────────────────────────── */
.active-filters-bar { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; padding: 10px 0; margin-bottom: 12px; border-bottom: 1px solid var(--border); }
.af-label { display: flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: var(--text-muted); font-family: 'Plus Jakarta Sans', sans-serif; white-space: nowrap; }
.af-label svg { width: 12px; height: 12px; }
.af-chips { display: flex; flex-wrap: wrap; gap: 6px; flex: 1; }
.af-chip { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; background: var(--navy); color: var(--white); border-radius: 20px; font-size: 11.5px; font-weight: 600; text-decoration: none; font-family: 'Plus Jakarta Sans', sans-serif; }
.af-chip svg { width: 10px; height: 10px; }
.af-chip.light { background: var(--surface); color: var(--text-mid); border: 1px solid var(--border); }
.clear-all-btn { display: inline-flex; align-items: center; gap: 4px; font-size: 11.5px; color: var(--text-muted); font-weight: 600; text-decoration: none; font-family: 'Plus Jakarta Sans', sans-serif; white-space: nowrap; }
.clear-all-btn:hover { color: var(--navy); }
.products-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; gap: 10px; flex-wrap: wrap; }
.topbar-left { display: flex; align-items: center; gap: 10px; }
.topbar-count { font-size: 13px; color: var(--text-muted); font-family: 'Plus Jakarta Sans', sans-serif; }
.topbar-count strong { color: var(--navy); font-weight: 700; }
.topbar-right { display: flex; align-items: center; gap: 8px; }
.mob-filter-btn { display: none; align-items: center; gap: 6px; padding: 7px 14px; background: var(--navy); color: var(--white); border: none; border-radius: var(--radius); font-size: 12.5px; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; cursor: pointer; }
.mob-filter-btn svg { width: 13px; height: 13px; }
.sort-sel { padding: 7px 12px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 12.5px; color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif; background: var(--white); outline: none; cursor: pointer; }
.products-grid-wrap { min-height: 200px; }
.pagination-wrap { padding: 24px 0 0; }

/* ── Editorial / FAQ / Related ────────────────────────────────────────── */
.editorial-wrap { padding: 40px 0 60px; background: var(--surface); border-top: 1px solid var(--border); }
.cat-faq { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; margin-bottom: 36px; }
.cat-faq-header { display: flex; align-items: center; padding: 14px 20px; border-bottom: 1px solid var(--border); background: var(--surface); }
.cat-faq-title { font-size: 13px; font-weight: 700; color: var(--navy); font-family: 'Plus Jakarta Sans', sans-serif; }
.faq-item { border-bottom: 1px solid var(--border); cursor: pointer; }
.faq-item:last-child { border-bottom: none; }
.faq-q { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 14px 20px; background: none; border: none; text-align: left; font-size: 14px; font-weight: 600; color: var(--navy); font-family: 'Plus Jakarta Sans', sans-serif; cursor: pointer; gap: 12px; }
.faq-q-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--surface); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .2s; }
.faq-q-icon svg { width: 13px; height: 13px; transition: transform .2s; }
.faq-item.open .faq-q-icon svg { transform: rotate(180deg); }
.faq-a { padding: 0 20px 16px; font-size: 13.5px; color: var(--text-mid); line-height: 1.7; display: none; }
.faq-item.open .faq-a { display: block; }
.related-cats { margin-top: 8px; }
.section-hdr { margin-bottom: 18px; }
.sh-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--orange); font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: 4px; }
.sh-title { font-size: 20px; font-weight: 800; color: var(--navy); font-family: 'Plus Jakarta Sans', sans-serif; }
.related-cats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.related-cat-card { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 20px 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); text-decoration: none; text-align: center; transition: all .15s; }
.related-cat-card:hover { border-color: var(--border-mid); box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.rcc-icon { width: 40px; height: 40px; border-radius: var(--radius-md); background: var(--orange-light); display: flex; align-items: center; justify-content: center; }
.rcc-icon svg { width: 20px; height: 20px; color: var(--orange); }
.rcc-name { font-size: 13px; font-weight: 700; color: var(--navy); font-family: 'Plus Jakarta Sans', sans-serif; }
.rcc-count { font-size: 11px; color: var(--text-muted); }

/* ── Mobile Filter Drawer ─────────────────────────────────────────────── */
.drawer-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 900; }
.drawer-overlay.open { display: block; }
.filter-drawer { position: fixed; right: -320px; top: 0; bottom: 0; width: 300px; background: var(--white); z-index: 901; display: flex; flex-direction: column; transition: right .25s ease; box-shadow: var(--shadow-lg); overflow: hidden; }
.filter-drawer.open { right: 0; }
.drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.drawer-title { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 700; color: var(--navy); font-family: 'Plus Jakarta Sans', sans-serif; }
.drawer-title svg { width: 14px; height: 14px; color: var(--text-muted); }
.drawer-close { background: var(--surface); border: none; border-radius: var(--radius); width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.drawer-close svg { width: 14px; height: 14px; color: var(--text-mid); }
.drawer-body { flex: 1; overflow-y: auto; }
.drawer-footer { padding: 12px 16px; border-top: 1px solid var(--border); display: flex; gap: 8px; flex-shrink: 0; }
.drawer-apply { flex: 1; padding: 11px; background: var(--orange); color: var(--white); border: none; border-radius: var(--radius); font-size: 13px; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; cursor: pointer; }
.drawer-reset { padding: 11px 14px; color: var(--text-muted); font-size: 13px; font-weight: 600; font-family: 'Plus Jakarta Sans', sans-serif; text-decoration: none; border: 1px solid var(--border); border-radius: var(--radius); }

/* ── Calculators Section ──────────────────────────────────────────────── */
.calculators-section { padding: 40px 0; background: var(--white); border-bottom: 1px solid var(--border); }
.calculators-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.calc-card {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; background: var(--white);
  box-shadow: var(--shadow-sm); transition: all .2s;
}
.calc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.calc-header {
  padding: 14px 18px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px; background: var(--surface);
}
.calc-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
}
.calc-icon.orange { background: var(--orange-light); }
.calc-icon.blue   { background: var(--blue-light); }
.calc-icon svg { width: 20px; height: 20px; }
.calc-icon.orange svg { color: var(--orange); }
.calc-icon.blue   svg { color: var(--blue); }
.calc-title { font-size: 14px; font-weight: 800; color: var(--navy); font-family: 'Plus Jakarta Sans', sans-serif; }
.calc-subtitle { font-size: 12px; color: var(--text-muted); margin-top: 1px; }
.calc-body { padding: 16px 18px; }
.calc-inputs { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.calc-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.calc-field { display: flex; flex-direction: column; gap: 4px; }
.calc-label { font-size: 11px; font-weight: 700; color: var(--text-mid); text-transform: uppercase; letter-spacing: .05em; font-family: 'Plus Jakarta Sans', sans-serif; }
.calc-select, .calc-input-field {
  padding: 8px 10px; border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 13px; font-family: 'DM Sans', sans-serif; color: var(--text);
  background: var(--white); outline: none; transition: border-color .15s; width: 100%;
}
.calc-select:focus, .calc-input-field:focus { border-color: var(--blue); }
.calc-result {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 12px 14px; margin-bottom: 12px;
}
.calc-result-row { display: flex; justify-content: space-between; align-items: center; padding: 4px 0; }
.calc-result-row:not(:last-child) { border-bottom: 1px solid var(--border); padding-bottom: 8px; margin-bottom: 4px; }
.cr-label { font-size: 12px; color: var(--text-muted); }
.cr-val { font-family: 'IBM Plex Mono', monospace; font-size: 13.5px; font-weight: 600; color: var(--navy); }
.cr-val.highlight { color: var(--orange); font-size: 15px; }
.calc-cta { width: 100%; }

/* ── How It Works ─────────────────────────────────────────────────────── */
.how-section { padding: 40px 0; background: var(--surface); border-bottom: 1px solid var(--border); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.how-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 22px 20px; position: relative;
}
.how-card::after {
  content: '→'; position: absolute; right: -14px; top: 50%;
  transform: translateY(-50%); font-size: 18px; color: var(--border-mid);
  font-weight: 300; z-index: 1;
}
.how-card:last-child::after { display: none; }
.how-step {
  width: 28px; height: 28px; background: var(--navy); color: var(--white);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 14px;
}
.how-icon { margin-bottom: 10px; }
.how-icon svg { width: 28px; height: 28px; color: var(--orange); }
.how-title { font-size: 14px; font-weight: 800; color: var(--navy); font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: 6px; }
.how-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── Featured Vendors ─────────────────────────────────────────────────── */
.vendors-section { padding: 40px 0; background: var(--white); border-bottom: 1px solid var(--border); }
.vendors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.vendor-card {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 16px; background: var(--white); transition: all .2s;
}
.vendor-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-mid); }
.vendor-top { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.vendor-avatar {
  width: 42px; height: 42px; border-radius: var(--radius);
  background: var(--surface-2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif; flex-shrink: 0;
}
.vendor-info { flex: 1; min-width: 0; }
.vendor-name { font-size: 13px; font-weight: 800; color: var(--navy); font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vendor-location { font-size: 11.5px; color: var(--text-muted); display: flex; align-items: center; gap: 3px; }
.vendor-location svg { width: 11px; height: 11px; flex-shrink: 0; }
.vendor-cats { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 10px; }
.vendor-cat-tag {
  font-size: 10px; font-weight: 700; color: var(--text-mid);
  background: var(--surface-2); padding: 2px 7px; border-radius: 2px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.vendor-footer {
  padding-top: 10px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.vendor-review { font-size: 11.5px; color: var(--text-muted); }
.vendor-review strong { color: var(--text); font-weight: 700; }

/* ── Locator Feature ──────────────────────────────────────────────────── */
.locator-section { padding: 40px 0; background: var(--surface); border-bottom: 1px solid var(--border); }
.locator-inner { display: grid; grid-template-columns: 1fr 420px; gap: 32px; align-items: start; }
.locator-desc { font-size: 14px; color: var(--text-mid); line-height: 1.7; margin-bottom: 20px; max-width: 460px; }
.locator-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.loc-feat {
  display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); border-left: 3px solid var(--orange);
}
.loc-feat svg { width: 16px; height: 16px; color: var(--orange); margin-top: 1px; flex-shrink: 0; }
.loc-feat-text { font-size: 13px; color: var(--text-mid); }
.loc-feat-text strong { color: var(--navy); font-weight: 700; }
.locator-widget {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-md);
}
.loc-widget-header {
  padding: 12px 16px; background: var(--navy); color: var(--white);
  display: flex; align-items: center; gap: 8px;
}
.loc-widget-header svg { width: 16px; height: 16px; }
.loc-widget-title { font-size: 13px; font-weight: 800; font-family: 'Plus Jakarta Sans', sans-serif; }
.loc-widget-body { padding: 16px; }
.loc-search-form { display: flex; gap: 8px; margin-bottom: 14px; }
.loc-input {
  flex: 1; padding: 10px 12px; border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 13.5px; font-family: 'DM Sans', sans-serif; outline: none; transition: border-color .15s;
}
.loc-input:focus { border-color: var(--blue); }
.loc-input::placeholder { color: var(--text-light); }
.loc-btn {
  padding: 10px 14px; background: var(--orange); color: var(--white); border-radius: var(--radius);
  font-size: 13px; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif;
  display: flex; align-items: center; gap: 6px; flex-shrink: 0; transition: background .15s;
}
.loc-btn:hover { background: #EA6C0A; }
.loc-btn svg { width: 14px; height: 14px; }
.loc-results { display: flex; flex-direction: column; gap: 8px; }
.loc-result-item {
  padding: 10px 12px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); display: flex; align-items: flex-start; gap: 10px;
  transition: all .15s;
}
.loc-result-item:hover { border-color: var(--orange-mid); background: var(--orange-light); }
.loc-result-icon {
  width: 30px; height: 30px; background: var(--orange-light); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.loc-result-icon svg { width: 14px; height: 14px; color: var(--orange); }
.loc-result-info { flex: 1; min-width: 0; }
.loc-result-name { font-size: 13px; font-weight: 700; color: var(--navy); font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: 2px; }
.loc-result-meta { font-size: 11.5px; color: var(--text-muted); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.loc-result-dist { font-size: 11px; font-weight: 700; color: var(--orange); font-family: 'IBM Plex Mono', monospace; white-space: nowrap; }
.loc-result-price {
  font-family: 'IBM Plex Mono', monospace; font-size: 12px; font-weight: 600;
  color: var(--green); background: var(--green-light); padding: 2px 7px; border-radius: 2px;
  white-space: nowrap;
}
.loc-widget-footer {
  padding: 10px 16px; border-top: 1px solid var(--border); background: var(--surface);
  display: flex; align-items: center; justify-content: space-between;
}

/* ── Articles ─────────────────────────────────────────────────────────── */
.articles-section { padding: 40px 0; background: var(--white); border-bottom: 1px solid var(--border); }
.articles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.article-card {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; background: var(--white); transition: all .2s; cursor: pointer;
}
.article-card:hover { box-shadow: var(--shadow-md); border-color: var(--border-mid); }
.article-thumb {
  aspect-ratio: 16/9; background: var(--surface-2);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  position: relative; border-bottom: 1px solid var(--border);
}
.article-thumb-icon { width: 40px; height: 40px; color: var(--text-light); opacity: .4; }
.article-thumb-cat {
  position: absolute; top: 10px; left: 10px;
}
.article-body { padding: 14px; }
.article-title { font-size: 14px; font-weight: 800; color: var(--navy); font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.4; margin-bottom: 6px; }
.article-excerpt { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 12px; }
.article-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--border); }
.article-date { font-size: 11px; color: var(--text-light); }
.article-read { font-size: 11.5px; font-weight: 700; color: var(--blue); font-family: 'Plus Jakarta Sans', sans-serif; display: flex; align-items: center; gap: 4px; }
.article-read svg { width: 12px; height: 12px; }

/* ── Vendor CTA Band ──────────────────────────────────────────────────── */
.vendor-cta-section {
  padding: 40px 0; background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.vendor-cta-inner {
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.vendor-cta-title { font-size: clamp(18px, 2.5vw, 26px); font-weight: 800; color: var(--navy); font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: -.02em; margin-bottom: 6px; }
.vendor-cta-sub { font-size: 14px; color: var(--text-mid); max-width: 520px; }
.vendor-cta-bullets { display: flex; align-items: center; gap: 20px; margin-top: 14px; flex-wrap: wrap; }
.vcb { font-size: 12.5px; color: var(--text-mid); display: flex; align-items: center; gap: 6px; font-weight: 500; }
.vcb svg { width: 14px; height: 14px; color: var(--green); flex-shrink: 0; }
.vendor-cta-actions { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
.vendor-cta-note { font-size: 11.5px; color: var(--text-muted); text-align: center; }

/* ── Trust Section ────────────────────────────────────────────────────── */
.trust-section { padding: 40px 0; background: var(--white); border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-card {
  padding: 18px 16px; border: 1px solid var(--border); border-radius: var(--radius-md);
  background: var(--white); transition: all .2s;
}
.trust-card:hover { border-color: var(--orange-mid); box-shadow: var(--shadow-sm); }
.trust-icon { width: 36px; height: 36px; margin-bottom: 12px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.trust-icon.orange { background: var(--orange-light); }
.trust-icon.blue   { background: var(--blue-light); }
.trust-icon.green  { background: var(--green-light); }
.trust-icon.navy   { background: var(--surface-2); }
.trust-icon svg { width: 18px; height: 18px; }
.trust-icon.orange svg { color: var(--orange); }
.trust-icon.blue   svg { color: var(--blue); }
.trust-icon.green  svg { color: var(--green); }
.trust-icon.navy   svg { color: var(--navy); }
.trust-title { font-size: 14px; font-weight: 800; color: var(--navy); font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: 5px; }
.trust-desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; }

/* ── Breadcrumb ───────────────────────────────────────────────────────── */
.breadcrumb-bar { padding: 12px 0; background: var(--white); border-bottom: 1px solid var(--border); }
.breadcrumb-list { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; font-size: 12.5px; color: var(--text-muted); font-family: 'Plus Jakarta Sans', sans-serif; }
.breadcrumb-list a { color: var(--text-muted); transition: color .15s; }
.breadcrumb-list a:hover { color: var(--navy); }
.breadcrumb-sep { color: var(--text-light); }
.breadcrumb-current { color: var(--navy); font-weight: 700; }

/* ── Pagination ───────────────────────────────────────────────────────── */
.pagination-wrap { display: flex; justify-content: center; padding: 20px 0; }
.pagination { display: flex; gap: 6px; align-items: center; }
.page-btn {
  min-width: 34px; height: 34px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: var(--radius);
  font-size: 13px; font-weight: 600; color: var(--text-mid);
  font-family: 'Plus Jakarta Sans', sans-serif; cursor: pointer; transition: all .15s; padding: 0 8px;
}
.page-btn:hover { border-color: var(--navy); color: var(--navy); background: var(--surface); }
.page-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.page-btn.disabled { opacity: .4; cursor: not-allowed; pointer-events: none; }
.page-btn svg { width: 13px; height: 13px; }
.page-ellipsis { width: 34px; text-align: center; font-size: 13px; color: var(--text-light); }

/* ── Footer ───────────────────────────────────────────────────────────── */
.footer-top { padding: 0; background: var(--white); }
.footer-newsletter {
  padding: 24px 0; background: var(--orange);
  border-top: 1px solid var(--border);
}
.newsletter-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.newsletter-text { color: var(--white); }
.newsletter-text strong {
  display: block; font-size: clamp(14px, 2vw, 17px); font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: 2px;
}
.newsletter-text span { font-size: 13px; opacity: .85; }
.newsletter-form { display: flex; gap: 8px; flex: 1; max-width: 380px; }
.newsletter-input {
  flex: 1; padding: 10px 14px; border: 2px solid rgba(255,255,255,.4);
  border-radius: var(--radius); font-size: 13.5px; font-family: 'DM Sans', sans-serif;
  background: rgba(255,255,255,.15); color: var(--white); outline: none; min-width: 0;
  transition: border-color .15s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,.6); }
.newsletter-input:focus { border-color: rgba(255,255,255,.8); }
.newsletter-btn {
  padding: 10px 18px; background: var(--navy); color: var(--white);
  border-radius: var(--radius); font-size: 13.5px; font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif; white-space: nowrap; flex-shrink: 0;
  transition: background .15s; cursor: pointer;
}
.newsletter-btn:hover { background: var(--navy-mid); }

.footer-main { padding: 40px 0 28px; background: var(--white); }
.footer-grid {
  display: grid; grid-template-columns: 240px 1fr 1fr 1fr 1fr;
  gap: 32px; margin-bottom: 32px;
}
.footer-brand { display: flex; flex-direction: column; }
.footer-logo { margin-bottom: 12px; }
.footer-about { font-size: 12.5px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; }
.footer-socials { display: flex; gap: 8px; }
.social-icon {
  width: 32px; height: 32px; border: 1px solid var(--border); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; transition: all .15s;
}
.social-icon:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }
.social-icon svg { width: 14px; height: 14px; }
.footer-col-title {
  font-size: 11px; font-weight: 800; color: var(--navy); text-transform: uppercase;
  letter-spacing: .08em; font-family: 'Plus Jakarta Sans', sans-serif;
  margin-bottom: 14px; padding-bottom: 8px; border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link {
  font-size: 13px; color: var(--text-muted); transition: color .15s;
  display: flex; align-items: center; gap: 5px;
}
.footer-link:hover { color: var(--navy); }
.footer-link svg { width: 12px; height: 12px; flex-shrink: 0; }
.footer-link-new {
  font-size: 9px; font-weight: 800; background: var(--orange);
  color: var(--white); padding: 1px 5px; border-radius: 2px;
  font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: .05em;
  text-transform: uppercase; margin-left: 2px;
}

/* Footer Bottom */
.footer-bottom {
  padding: 16px 0; border-top: 1px solid var(--border);
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: var(--text-light); }
.footer-copy a { color: var(--text-muted); font-weight: 600; }
.footer-copy a:hover { color: var(--navy); }
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal a { font-size: 12px; color: var(--text-muted); transition: color .15s; }
.footer-legal a:hover { color: var(--navy); }
.footer-made { font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 4px; }
.footer-made strong { color: var(--orange); font-weight: 700; }

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 1200px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: 1/-1; display: grid; grid-template-columns: 240px 1fr; gap: 24px; align-items: start; }
}
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: grid; grid-template-columns: 1fr 1fr; }
  .marketplace-layout { grid-template-columns: 1fr; }
  .marketplace-filters { display: none; }
  .locator-inner { grid-template-columns: 1fr; }
  .vendors-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .vendor-cta-inner { grid-template-columns: 1fr; }
  .vendor-cta-actions { flex-direction: row; align-items: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,.12); }
  /* Category page */
  .category-hero-inner { grid-template-columns: 1fr; gap: 24px; }
  .cat-hero-right { order: -1; }
  .cat-stats-grid { grid-template-columns: repeat(4, 1fr); }
  .related-cats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  /* Category page */
  .category-layout { grid-template-columns: 1fr; }
  .filter-sidebar { display: none; }
  .mob-filter-btn { display: inline-flex; }
  .primary-nav { display: none; }
  .search-btn { display: none; }
  .header-divider { display: none; }
  .login-btn { display: none; }
  .menu-toggle { display: flex; margin-left: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-brand { grid-column: 1/-1; display: block; }
  .footer-socials { margin-bottom: 0; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; }
  .how-card::after { display: none; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .calculators-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  /* Category page */
  .cat-key-facts { gap: 10px; }
  .cat-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .related-cats-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .vendors-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .hero-right { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .newsletter-inner { flex-direction: column; align-items: flex-start; }
  .newsletter-form { width: 100%; max-width: 100%; }
  .ann-links { display: none; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .calc-row { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .vendor-cta-actions { flex-direction: column; align-items: stretch; }
  .vendor-cta-actions .btn { text-align: center; justify-content: center; }
}
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .vendors-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-features { flex-direction: column; align-items: flex-start; gap: 6px; }
  .hero-feat:not(:last-child) { border-right: none; margin-right: 0; padding-right: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 360px) {
  .container { padding: 0 12px; }
  .hero { padding: 28px 0 24px; }
  .hero-headline { font-size: 22px; }
  .logo-tagline { display: none; }
  .categories-section, .marketplace-section, .calculators-section, .how-section,
  .vendors-section, .locator-section, .articles-section, .vendor-cta-section,
  .trust-section { padding: 28px 0; }
}
@media (max-width: 300px) {
  .container { padding: 0 10px; }
  :root { font-size: 13px; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cat-card-icon { width: 36px; height: 36px; }
}
