/* ==========================================================================
   SOLWEL INSTALLER PRO — distributor portal
   Brand: V3 light (Montserrat · solar orange #F59A00 · charcoal #3D3A3B)
   Divergence from the consumer site: denser grid, tighter radii, mono SKUs,
   steel chrome. Same brand, tool-like instead of lifestyle.
   ========================================================================== */

:root {
  --sand: #faf8f5;
  --sand-2: #f1eee8;
  --sand-3: #e9e5de;
  --white: #ffffff;
  --ink: #3d3a3b;
  --ink-2: #2b292a;
  --steel: #24282a;
  --steel-2: #1a1d1f;
  --muted: rgba(61, 58, 59, 0.66);
  --muted-2: rgba(61, 58, 59, 0.42);
  --line: rgba(56, 50, 48, 0.14);
  --line-2: rgba(56, 50, 48, 0.08);
  --volt: #f59a00;
  --volt-deep: #d98700;
  --volt-tint: rgba(245, 154, 0, 0.1);
  --green: #1f8a54;
  --red: #b4443a;
  --font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  --r: 10px;
  --r-sm: 6px;
  --shadow: 0 1px 2px rgba(56, 50, 48, 0.05), 0 6px 20px rgba(56, 50, 48, 0.06);
  --shadow-lg: 0 18px 50px rgba(56, 50, 48, 0.16);
  --wrap: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; letter-spacing: -0.02em; line-height: 1.1; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.display { font-weight: 900; }
.mono { font-family: var(--mono); font-size: 0.86em; letter-spacing: -0.01em; }
.kicker {
  display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--volt-deep);
}
.muted { color: var(--muted); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: var(--r-sm); border: 0;
  font-size: 13.5px; font-weight: 800; letter-spacing: 0.01em;
  transition: background .16s, color .16s, box-shadow .16s, transform .16s;
  white-space: nowrap;
}
.btn-volt { background: var(--volt); color: #fff; }
.btn-volt:hover { background: var(--ink); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--volt); }
.btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--volt); color: var(--volt-deep); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: var(--volt); color: #fff; }
.btn-sm { padding: 9px 15px; font-size: 12.5px; }
.btn-block { width: 100%; }

/* ---------- utility bar ---------- */
.util {
  background: var(--steel); color: rgba(255, 255, 255, 0.72);
  font-size: 12px; font-weight: 600;
}
.util-inner { display: flex; align-items: center; gap: 22px; height: 38px; }
.util strong { color: #fff; font-weight: 800; }
.util .spacer { margin-left: auto; }
.util a { color: rgba(255, 255, 255, 0.72); transition: color .15s; }
.util a:hover { color: var(--volt); }
.util .pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 3px 10px; border-radius: 999px; background: rgba(245, 154, 0, 0.16);
  color: var(--volt); font-weight: 800; font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.dot { width: 6px; height: 6px; border-radius: 999px; background: currentColor; flex: none; }
@media (max-width: 900px) { .util-hide { display: none; } }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, 0.94); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.head-inner { display: flex; align-items: center; gap: 24px; height: 74px; }
.logo img { height: 30px; width: auto; }
.logo .pro-tag {
  display: inline-block; margin-left: 9px; padding: 3px 8px;
  border-radius: 4px; background: var(--ink); color: #fff;
  font-size: 10px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase;
  vertical-align: 4px;
}
.searchbar { flex: 1; max-width: 560px; position: relative; }
.searchbar input {
  width: 100%; height: 44px; padding: 0 44px 0 42px;
  border-radius: var(--r-sm); border: 1.5px solid var(--line);
  background: var(--sand); font: inherit; font-size: 14px; color: var(--ink);
  transition: border-color .15s, background .15s;
}
.searchbar input:focus { outline: 0; border-color: var(--volt); background: #fff; }
.searchbar .ico { position: absolute; left: 14px; top: 13px; width: 18px; height: 18px; color: var(--muted-2); }
.searchbar .hint {
  position: absolute; right: 12px; top: 12px; font-size: 11px; font-weight: 700;
  color: var(--muted-2); border: 1px solid var(--line); border-radius: 4px; padding: 2px 6px;
}
.head-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.icon-btn {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 12px; border-radius: var(--r-sm); color: var(--ink);
  font-size: 12.5px; font-weight: 700; transition: background .15s;
}
.icon-btn:hover { background: var(--sand-2); }
.icon-btn svg { width: 19px; height: 19px; }
.icon-btn .count {
  position: absolute; top: 3px; left: 24px; min-width: 17px; height: 17px;
  border-radius: 999px; background: var(--volt); color: #fff;
  font-size: 10px; font-weight: 900; display: grid; place-items: center; padding: 0 4px;
}
.nav-toggle { display: none; background: 0; border: 0; padding: 8px; color: var(--ink); }

/* ---------- primary nav ---------- */
.navbar { background: #fff; border-bottom: 1px solid var(--line); position: relative; z-index: 55; }
.navbar-inner { display: flex; align-items: center; gap: 4px; height: 48px; }
.navbar a, .navbar button.navlink {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0 14px; height: 48px; background: 0; border: 0;
  font-size: 13px; font-weight: 700; color: var(--ink);
  border-bottom: 2px solid transparent; transition: color .15s, border-color .15s;
}
.navbar a:hover, .navbar button.navlink:hover,
.navbar a.is-active { color: var(--volt-deep); border-bottom-color: var(--volt); }
.navbar .chev { width: 13px; height: 13px; opacity: .5; }
.navbar .nav-right { margin-left: auto; display: flex; gap: 4px; }
.navbar .nav-right a { color: var(--muted); font-weight: 700; }

/* mega menu */
.mega {
  position: absolute; left: 0; right: 0; top: 100%;
  background: #fff; border-bottom: 1px solid var(--line);
  box-shadow: 0 24px 40px rgba(56, 50, 48, 0.1);
  padding: 30px 0 34px; display: none;
}
.mega.is-open { display: block; }
.mega-grid { display: grid; grid-template-columns: repeat(4, 1fr) 1.15fr; gap: 30px; }
.mega h4 {
  font-size: 11px; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid var(--line-2);
}
.mega ul li a {
  display: block; height: auto; padding: 6px 0; border: 0;
  font-size: 13.5px; font-weight: 600; color: var(--muted);
}
.mega ul li a:hover { color: var(--volt-deep); border: 0; }
.mega-promo {
  background: var(--sand-2); border-radius: var(--r); padding: 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.mega-promo .t { font-size: 17px; font-weight: 900; letter-spacing: -0.02em; }
.mega-promo p { font-size: 13px; color: var(--muted); }

/* ---------- hero slider (promo carousel, old-site pattern) ---------- */
.hero { position: relative; background: var(--steel); overflow: hidden; }
.slides { position: relative; height: clamp(420px, 46vw, 560px); }
.slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity .6s ease;
  display: flex; align-items: center; pointer-events: none;
}
.slide.is-on { opacity: 1; pointer-events: auto; }
.slide-bg { position: absolute; inset: 0; }
.slide-bg img { width: 100%; height: 100%; object-fit: cover; }
.slide-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(26, 29, 31, .93) 0%, rgba(26, 29, 31, .78) 42%, rgba(26, 29, 31, .25) 100%);
}
.slide-copy { position: relative; max-width: 620px; color: #fff; padding: 40px 0; }
.slide-copy .kicker { color: var(--volt); }
.slide-copy h1, .slide-copy h2 {
  font-size: clamp(30px, 4.1vw, 54px); font-weight: 900; margin: 12px 0 14px;
}
.slide-copy p { color: rgba(255, 255, 255, 0.78); font-size: 16px; max-width: 50ch; }
.slide-copy .price-row { display: flex; align-items: baseline; gap: 12px; margin-top: 16px; }
.slide-copy .price { font-size: 34px; font-weight: 900; color: var(--volt); }
.slide-copy .price-note { font-size: 13px; color: rgba(255, 255, 255, 0.6); font-weight: 700; }
.slide-ctas { display: flex; gap: 10px; margin-top: 22px; flex-wrap: wrap; }
.slide-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 5px 12px;
  border-radius: 999px; background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 11.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: #fff;
}
.slider-nav {
  position: absolute; bottom: 24px; left: 0; right: 0; z-index: 3;
  display: flex; align-items: center; gap: 10px;
}
.slider-dots { display: flex; gap: 8px; }
.slider-dots button {
  width: 34px; height: 4px; border-radius: 999px; border: 0;
  background: rgba(255, 255, 255, 0.3); transition: background .2s;
}
.slider-dots button.is-on { background: var(--volt); }
.slider-arrows { margin-left: auto; display: flex; gap: 8px; }
.slider-arrows button {
  width: 38px; height: 38px; border-radius: var(--r-sm); border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06); color: #fff; display: grid; place-items: center;
  transition: background .15s;
}
.slider-arrows button:hover { background: var(--volt); border-color: var(--volt); }
.slider-arrows svg { width: 17px; height: 17px; }

/* ---------- quick strip under hero ---------- */
.qstrip { background: #fff; border-bottom: 1px solid var(--line); }
.qstrip-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.qstrip-item {
  display: flex; align-items: center; gap: 13px; padding: 20px 24px;
  border-right: 1px solid var(--line-2);
}
.qstrip-item:last-child { border-right: 0; }
.qstrip-item svg { width: 24px; height: 24px; color: var(--volt); flex: none; }
.qstrip-item .t { font-size: 13.5px; font-weight: 800; }
.qstrip-item .d { font-size: 12px; color: var(--muted); }

/* ---------- section shell ---------- */
.section { padding: clamp(48px, 5.5vw, 76px) 0; }
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 28px; flex-wrap: wrap;
}
.section-head h2 { font-size: clamp(24px, 3vw, 38px); font-weight: 900; margin-top: 8px; }
.section-head p { color: var(--muted); font-size: 15px; max-width: 62ch; margin-top: 10px; }
.link-more {
  font-size: 13px; font-weight: 800; color: var(--volt-deep);
  display: inline-flex; align-items: center; gap: 6px;
}
.link-more:hover { gap: 10px; }

/* ---------- category tabs + product rail (old-site pattern, modernized) ---------- */
.cat-tabs {
  display: flex; gap: 6px; border-bottom: 1px solid var(--line);
  margin-bottom: 26px; overflow-x: auto; scrollbar-width: none;
}
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab {
  background: 0; border: 0; padding: 14px 18px 13px;
  font-size: 13.5px; font-weight: 800; color: var(--muted);
  border-bottom: 2px solid transparent; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 9px; transition: color .15s;
}
.cat-tab .n {
  font-size: 11px; font-weight: 800; color: var(--muted-2);
  background: var(--sand-2); border-radius: 999px; padding: 1px 7px;
}
.cat-tab:hover { color: var(--ink); }
.cat-tab.is-on { color: var(--ink); border-bottom-color: var(--volt); }
.cat-tab.is-on .n { background: var(--volt-tint); color: var(--volt-deep); }

/* ---------- product card ---------- */
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.prod-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
.prod-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  display: flex; flex-direction: column; overflow: hidden;
  transition: border-color .16s, box-shadow .16s, transform .16s;
}
.prod-card:hover { border-color: rgba(245, 154, 0, 0.6); box-shadow: var(--shadow); transform: translateY(-2px); }
.prod-media {
  position: relative; aspect-ratio: 4 / 3; background: var(--sand);
  display: grid; place-items: center; padding: 16px; border-bottom: 1px solid var(--line-2);
}
.prod-media img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.prod-flags { position: absolute; top: 10px; left: 10px; display: flex; flex-direction: column; gap: 5px; }
.flag {
  font-size: 10px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 4px; background: var(--ink); color: #fff;
}
.flag.volt { background: var(--volt); }
.flag.green { background: var(--green); }
.prod-body { padding: 14px 15px 15px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.prod-brand {
  font-size: 10.5px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted-2);
}
.prod-title {
  font-size: 14px; font-weight: 800; line-height: 1.3; letter-spacing: -0.01em;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.prod-card:hover .prod-title { color: var(--volt-deep); }
.spec-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.spec-chip {
  font-size: 10.5px; font-weight: 800; padding: 3px 7px; border-radius: 4px;
  background: var(--sand-2); color: var(--muted); letter-spacing: 0.02em;
}
.prod-sku { font-family: var(--mono); font-size: 11px; color: var(--muted-2); }
.prod-foot { margin-top: auto; padding-top: 10px; border-top: 1px solid var(--line-2); }
.price-block { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.price-list { font-size: 18px; font-weight: 900; letter-spacing: -0.02em; }
.price-lbl { font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); }
.price-pro {
  font-size: 11.5px; font-weight: 800; color: var(--volt-deep);
  display: flex; align-items: center; gap: 5px; margin-top: 3px;
}
.price-pro svg { width: 12px; height: 12px; }
.stock-line {
  display: flex; align-items: center; gap: 7px; margin-top: 9px;
  font-size: 11.5px; font-weight: 700; color: var(--muted);
}
.stock-line .dot { background: var(--green); }
.stock-line.out .dot { background: var(--muted-2); }
.prod-actions { display: flex; gap: 6px; margin-top: 11px; }
.prod-actions .btn { flex: 1; }

/* horizontal rail on mobile */
@media (max-width: 1100px) { .prod-grid, .prod-grid.cols-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 780px) { .prod-grid, .prod-grid.cols-5 { grid-template-columns: repeat(2, 1fr); } }

/* ---------- brand strip ---------- */
.brands { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.brand-row { display: grid; grid-template-columns: repeat(6, 1fr); }
.brand-cell {
  display: grid; place-items: center; padding: 26px 12px; text-align: center;
  border-right: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2);
}
.brand-cell:nth-child(6n) { border-right: 0; }
.brand-cell .bn {
  font-size: clamp(14px, 1.5vw, 18px); font-weight: 900; letter-spacing: -0.02em;
  color: #78716c; transition: color .15s;
}
.brand-cell .bd { font-size: 10.5px; font-weight: 700; color: var(--muted-2); margin-top: 3px; }
.brand-cell:hover .bn { color: var(--volt-deep); }
@media (max-width: 900px) {
  .brand-row { grid-template-columns: repeat(3, 1fr); }
  .brand-cell:nth-child(6n) { border-right: 1px solid var(--line-2); }
  .brand-cell:nth-child(3n) { border-right: 0; }
}

/* ---------- split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(28px, 4.5vw, 64px); align-items: center; }
.split.rev .split-media { order: 2; }
.split-media { border-radius: var(--r); overflow: hidden; aspect-ratio: 4 / 3; background: var(--sand-3); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-copy h2 { font-size: clamp(24px, 3.2vw, 40px); font-weight: 900; margin: 10px 0 14px; }
.split-copy > p { color: var(--muted); font-size: 15.5px; margin-bottom: 20px; }
.check-list li {
  display: flex; gap: 12px; align-items: flex-start; padding: 12px 0;
  border-top: 1px solid var(--line-2); font-size: 14px; color: var(--muted);
}
.check-list li b { color: var(--ink); font-weight: 800; }
.check-list li::before {
  content: "✓"; flex: none; width: 20px; height: 20px; border-radius: 999px;
  background: var(--volt); color: #fff; font-size: 11px; font-weight: 900;
  display: grid; place-items: center; margin-top: 1px;
}

/* ---------- stat band ---------- */
.stat-band { background: var(--steel); color: #fff; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat {
  padding: 34px 24px; border-right: 1px solid rgba(255, 255, 255, 0.09);
}
.stat:last-child { border-right: 0; }
.stat .num { font-size: clamp(28px, 3.4vw, 42px); font-weight: 900; color: var(--volt); letter-spacing: -0.03em; }
.stat .lbl { font-size: 12.5px; font-weight: 700; color: rgba(255, 255, 255, 0.62); margin-top: 6px; }
@media (max-width: 760px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } .qstrip-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- pricing tiers ---------- */
.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tier {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 24px 22px; display: flex; flex-direction: column; gap: 12px;
}
.tier.is-hi { border-color: var(--volt); box-shadow: 0 0 0 3px var(--volt-tint); position: relative; }
.tier.is-hi::before {
  content: "Most common"; position: absolute; top: -11px; left: 22px;
  background: var(--volt); color: #fff; font-size: 10px; font-weight: 900;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; border-radius: 999px;
}
.tier .tname { font-size: 17px; font-weight: 900; }
.tier .tvol { font-size: 12px; font-weight: 800; color: var(--volt-deep); letter-spacing: 0.04em; text-transform: uppercase; }
.tier ul li {
  font-size: 13px; color: var(--muted); padding: 7px 0;
  border-top: 1px solid var(--line-2); display: flex; gap: 9px;
}
.tier ul li b { color: var(--ink); font-weight: 800; }
@media (max-width: 1000px) { .tier-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- warehouses ---------- */
.wh-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.wh {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px; display: flex; gap: 20px;
}
.wh .flagbox {
  width: 52px; height: 52px; border-radius: var(--r-sm); flex: none;
  background: var(--volt-tint); color: var(--volt-deep); display: grid; place-items: center;
  font-size: 18px; font-weight: 900;
}
.wh h3 { font-size: 18px; font-weight: 900; }
.wh .role { font-size: 11px; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted-2); margin-top: 4px; }
.wh address { font-style: normal; font-size: 13.5px; color: var(--muted); margin: 12px 0; line-height: 1.6; }
.wh .wh-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.wh .wh-meta span {
  font-size: 11.5px; font-weight: 800; padding: 4px 9px; border-radius: 4px;
  background: var(--sand-2); color: var(--muted);
}

/* ---------- tools / resources cards ---------- */
.tool-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tool {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 24px; display: flex; flex-direction: column; gap: 10px;
  transition: border-color .16s, transform .16s;
}
.tool:hover { border-color: rgba(245, 154, 0, .6); transform: translateY(-2px); }
.tool .ic {
  width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--volt-tint);
  color: var(--volt-deep); display: grid; place-items: center;
}
.tool .ic svg { width: 20px; height: 20px; }
.tool h3 { font-size: 16.5px; font-weight: 900; }
.tool p { font-size: 13.5px; color: var(--muted); }
.tool .go { margin-top: auto; padding-top: 12px; font-size: 12.5px; font-weight: 800; color: var(--volt-deep); }
@media (max-width: 900px) { .tool-grid { grid-template-columns: 1fr; } .wh-grid { grid-template-columns: 1fr; } .split { grid-template-columns: 1fr; } .split.rev .split-media { order: 0; } }

/* ---------- news ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.news-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color .16s, transform .16s;
}
.news-card:hover { border-color: rgba(245, 154, 0, .6); transform: translateY(-2px); }
.news-card .nm { aspect-ratio: 16 / 9; background: var(--sand-3); overflow: hidden; }
.news-card .nm img { width: 100%; height: 100%; object-fit: cover; }
.news-card .nb { padding: 18px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.news-card .tagrow { display: flex; gap: 8px; align-items: center; font-size: 11px; font-weight: 800; color: var(--muted-2); }
.news-card .tagrow .cat { color: var(--volt-deep); letter-spacing: 0.1em; text-transform: uppercase; }
.news-card h3 { font-size: 15.5px; font-weight: 800; line-height: 1.3; }
@media (max-width: 900px) { .news-grid { grid-template-columns: 1fr; } }

/* ---------- CTA band ---------- */
.cta {
  background: linear-gradient(115deg, var(--steel-2) 0%, #2f3436 60%, #3a3132 100%);
  color: #fff; border-radius: var(--r); padding: clamp(34px, 4.5vw, 58px);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 34px; align-items: center;
}
.cta h2 { font-size: clamp(24px, 3.2vw, 40px); font-weight: 900; margin: 10px 0 12px; }
.cta p { color: rgba(255, 255, 255, 0.72); font-size: 15px; }
.cta-form { display: flex; flex-direction: column; gap: 10px; }
.cta-form input, .cta-form select, .cta-form textarea {
  height: 46px; padding: 0 14px; border-radius: var(--r-sm); border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07); color: #fff; font: inherit; font-size: 14px;
}
.cta-form textarea { height: auto; padding: 12px 14px; resize: vertical; }
.cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(255, 255, 255, 0.42); }
.cta-form input:focus, .cta-form select:focus, .cta-form textarea:focus { outline: 0; border-color: var(--volt); }
.cta-form .fine { font-size: 11.5px; color: rgba(255, 255, 255, 0.45); }
@media (max-width: 900px) { .cta { grid-template-columns: 1fr; } }

/* ---------- footer ---------- */
.site-footer { background: var(--steel-2); color: rgba(255, 255, 255, 0.62); margin-top: clamp(48px, 6vw, 84px); }
.foot-top { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 34px; padding: 56px 0 44px; }
.foot-brand img { height: 28px; filter: brightness(0) invert(1); opacity: .92; }
.foot-brand p { font-size: 13.5px; margin-top: 16px; max-width: 34ch; }
.foot-col h4 {
  font-size: 11px; font-weight: 900; letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff; margin-bottom: 14px;
}
.foot-col a { display: block; font-size: 13.5px; padding: 5px 0; color: rgba(255, 255, 255, 0.6); transition: color .15s; }
.foot-col a:hover { color: var(--volt); }
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09); padding: 20px 0;
  display: flex; gap: 18px; flex-wrap: wrap; font-size: 12px; color: rgba(255, 255, 255, 0.4);
}
.foot-bottom .spacer { margin-left: auto; }
@media (max-width: 1000px) { .foot-top { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   CATALOG PAGE
   ========================================================================== */
.crumbs { font-size: 12.5px; color: var(--muted-2); padding: 18px 0; display: flex; gap: 8px; flex-wrap: wrap; }
.crumbs a { color: var(--muted); font-weight: 700; }
.crumbs a:hover { color: var(--volt-deep); }

.cat-hero { background: #fff; border-bottom: 1px solid var(--line); padding-bottom: 26px; }
.cat-hero h1 { font-size: clamp(26px, 3.4vw, 40px); font-weight: 900; }
.cat-hero p { color: var(--muted); font-size: 15px; margin-top: 10px; max-width: 66ch; }

.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 32px; align-items: start; padding-top: 30px; }
.facets { position: sticky; top: 130px; }
.facet { border-bottom: 1px solid var(--line); padding: 16px 0; }
.facet:first-child { padding-top: 0; }
.facet h4 {
  font-size: 11px; font-weight: 900; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: 12px;
}
.facet label {
  display: flex; align-items: center; gap: 9px; padding: 5px 0;
  font-size: 13.5px; font-weight: 600; color: var(--muted); cursor: pointer;
}
.facet label:hover { color: var(--ink); }
.facet input[type="checkbox"] { accent-color: var(--volt); width: 15px; height: 15px; }
.facet label .n { margin-left: auto; font-size: 11.5px; color: var(--muted-2); font-weight: 700; }
.facet .clear { font-size: 12px; font-weight: 800; color: var(--volt-deep); background: 0; border: 0; padding: 0; }

.shop-bar {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding-bottom: 18px; border-bottom: 1px solid var(--line); margin-bottom: 22px;
}
.shop-bar .count { font-size: 13px; font-weight: 700; color: var(--muted); }
.shop-bar .spacer { margin-left: auto; }
.shop-bar select {
  height: 38px; padding: 0 32px 0 12px; border-radius: var(--r-sm);
  border: 1px solid var(--line); background: #fff; font: inherit; font-size: 13px; font-weight: 700;
  color: var(--ink); appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233d3a3b' stroke-width='2.5'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat: no-repeat; background-position: right 10px center; background-size: 14px;
}
.active-chips { display: flex; gap: 7px; flex-wrap: wrap; }
.active-chip {
  display: inline-flex; align-items: center; gap: 6px; padding: 5px 9px;
  border-radius: 999px; background: var(--volt-tint); color: var(--volt-deep);
  font-size: 11.5px; font-weight: 800; border: 0;
}
.empty { padding: 60px 0; text-align: center; color: var(--muted); }
.facet-toggle { display: none; }
@media (max-width: 950px) {
  .shop-layout { grid-template-columns: 1fr; }
  .facets { position: static; display: none; }
  .facets.is-open { display: block; }
  .facet-toggle { display: inline-flex; }
}

/* ==========================================================================
   PRODUCT PAGE
   ========================================================================== */
.pdp { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 4vw, 56px); padding-top: 12px; }
.pdp-media {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  aspect-ratio: 1 / 1; display: grid; place-items: center; padding: 40px;
}
.pdp-media img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.pdp-info h1 { font-size: clamp(24px, 3vw, 34px); font-weight: 900; margin: 8px 0 12px; }
.pdp-meta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; font-size: 12.5px; color: var(--muted); }
.pdp-price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 22px; margin: 22px 0;
}
.pdp-price-row { display: flex; align-items: baseline; gap: 12px; }
.pdp-price { font-size: 32px; font-weight: 900; letter-spacing: -0.03em; }
.pdp-locked {
  margin-top: 14px; padding: 13px 15px; border-radius: var(--r-sm);
  background: var(--volt-tint); border: 1px dashed rgba(245, 154, 0, .5);
  font-size: 13px; font-weight: 700; color: var(--volt-deep);
  display: flex; align-items: center; gap: 10px;
}
.pdp-locked svg { width: 16px; height: 16px; flex: none; }
.qty-row { display: flex; gap: 10px; margin-top: 16px; }
.qty-input {
  width: 92px; height: 46px; border-radius: var(--r-sm); border: 1px solid var(--line);
  padding: 0 12px; font: inherit; font-weight: 800; text-align: center;
}
.tier-table { width: 100%; border-collapse: collapse; margin-top: 16px; font-size: 13px; }
.tier-table th {
  text-align: left; font-size: 10.5px; font-weight: 900; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted-2); padding: 8px 10px; border-bottom: 1px solid var(--line);
}
.tier-table td { padding: 9px 10px; border-bottom: 1px solid var(--line-2); font-weight: 700; }
.tier-table td:last-child { text-align: right; color: var(--volt-deep); font-weight: 900; }
.spec-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.spec-table td { padding: 11px 0; border-bottom: 1px solid var(--line-2); }
.spec-table td:first-child { color: var(--muted); width: 44%; }
.spec-table td:last-child { font-weight: 800; }
.doc-row {
  display: flex; align-items: center; gap: 12px; padding: 13px 15px;
  border: 1px solid var(--line); border-radius: var(--r-sm); background: #fff; margin-bottom: 8px;
  font-size: 13.5px; font-weight: 700;
}
.doc-row svg { width: 18px; height: 18px; color: var(--volt); flex: none; }
.doc-row .sz { margin-left: auto; font-size: 11.5px; color: var(--muted-2); font-weight: 700; }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; } }

/* ==========================================================================
   PRO / DEALER PAGE
   ========================================================================== */
.pro-hero { background: var(--steel); color: #fff; position: relative; overflow: hidden; }
.pro-hero-bg { position: absolute; inset: 0; opacity: .3; }
.pro-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.pro-hero-inner { position: relative; padding: clamp(50px, 6vw, 88px) 0; max-width: 720px; }
.pro-hero h1 { font-size: clamp(30px, 4.4vw, 56px); font-weight: 900; margin: 14px 0 16px; }
.pro-hero p { color: rgba(255, 255, 255, 0.76); font-size: 16.5px; }
.step-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: s; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 24px 22px;
  position: relative;
}
.step::before {
  counter-increment: s; content: "0" counter(s);
  font-size: 30px; font-weight: 900; color: transparent;
  -webkit-text-stroke: 1.5px rgba(245, 154, 0, .7); display: block; margin-bottom: 10px;
}
.step h3 { font-size: 15.5px; font-weight: 900; margin-bottom: 7px; }
.step p { font-size: 13.5px; color: var(--muted); }
@media (max-width: 950px) { .step-grid { grid-template-columns: repeat(2, 1fr); } }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: clamp(24px, 3vw, 38px); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 11.5px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); }
.field input, .field select, .field textarea {
  height: 46px; padding: 0 13px; border-radius: var(--r-sm); border: 1px solid var(--line);
  background: var(--sand); font: inherit; font-size: 14px; color: var(--ink);
}
.field textarea { height: auto; padding: 12px 13px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--volt); background: #fff; }
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: 0; border: 0; padding: 18px 40px 18px 0;
  font-size: 15.5px; font-weight: 800; color: var(--ink); position: relative;
}
.faq-q::after {
  content: "+"; position: absolute; right: 6px; top: 15px; font-size: 22px;
  font-weight: 400; color: var(--volt); transition: transform .2s;
}
.faq-item.is-open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 0 20px; font-size: 14.5px; color: var(--muted); max-width: 78ch; }
.faq-item.is-open .faq-a { display: block; }

/* ==========================================================================
   SITEMAP / REDIRECT PAGE
   ========================================================================== */
.map-legend { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0 26px; }
.lg {
  display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 800;
  padding: 6px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--line);
}
.lg .sw { width: 9px; height: 9px; border-radius: 3px; }
.sw-keep { background: var(--green); }
.sw-redirect { background: var(--volt); }
.sw-new { background: #5b7cc7; }
.sw-retire { background: var(--red); }

.ia-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ia-node {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 20px 22px;
}
.ia-node h3 { font-size: 15px; font-weight: 900; margin-bottom: 4px; }
.ia-node .path { font-family: var(--mono); font-size: 11.5px; color: var(--volt-deep); margin-bottom: 12px; }
.ia-node ul li {
  font-size: 13px; color: var(--muted); padding: 6px 0; border-top: 1px solid var(--line-2);
  display: flex; gap: 8px; align-items: flex-start;
}
.ia-node ul li .sw { width: 8px; height: 8px; border-radius: 2px; margin-top: 6px; flex: none; }
@media (max-width: 950px) { .ia-grid { grid-template-columns: 1fr; } }

.map-tools { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; margin-bottom: 16px; }
.map-tools input {
  height: 42px; padding: 0 14px; border-radius: var(--r-sm); border: 1px solid var(--line);
  background: #fff; font: inherit; font-size: 14px; min-width: 280px; flex: 1; max-width: 420px;
}
.map-tools input:focus { outline: 0; border-color: var(--volt); }
.filter-chip {
  padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line); background: #fff;
  font-size: 12.5px; font-weight: 800; color: var(--muted);
}
.filter-chip.is-on { background: var(--ink); color: #fff; border-color: var(--ink); }

.map-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); background: #fff; }
.map-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 860px; }
.map-table thead th {
  position: sticky; top: 0; background: var(--sand-2); z-index: 2;
  text-align: left; font-size: 10.5px; font-weight: 900; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted-2); padding: 12px 14px; border-bottom: 1px solid var(--line);
}
.map-table td { padding: 11px 14px; border-bottom: 1px solid var(--line-2); vertical-align: top; }
.map-table tbody tr:hover { background: var(--sand); }
.map-table .u { font-family: var(--mono); font-size: 11.5px; word-break: break-all; }
.map-table .u.old { color: var(--muted); }
.map-table .u.new { color: var(--ink); font-weight: 700; }
.status {
  display: inline-flex; align-items: center; gap: 6px; padding: 3px 9px; border-radius: 4px;
  font-size: 10.5px; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap;
}
.status.keep { background: rgba(31, 138, 84, .12); color: var(--green); }
.status.redirect { background: var(--volt-tint); color: var(--volt-deep); }
.status.new { background: rgba(91, 124, 199, .13); color: #4a68ad; }
.status.retire { background: rgba(180, 68, 58, .12); color: var(--red); }
.note { font-size: 12px; color: var(--muted); }

.callout {
  border-left: 3px solid var(--volt); background: #fff; border-radius: 0 var(--r) var(--r) 0;
  padding: 18px 22px; margin: 20px 0; font-size: 14px; color: var(--muted);
}
.callout b { color: var(--ink); }
.callout.warn { border-left-color: var(--red); }

/* ---------- notice ribbon (preview only) ----------
   Sits bottom-LEFT: the chat launcher owns the bottom-right corner. */
.preview-ribbon {
  position: fixed; left: 14px; bottom: 14px; z-index: 90;
  background: var(--ink); color: #fff; border-radius: 999px;
  padding: 9px 16px; font-size: 11.5px; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; box-shadow: var(--shadow-lg);
}
@media (max-width: 560px) {
  .preview-ribbon { font-size: 10px; padding: 7px 12px; }
  body.sw-active .preview-ribbon { display: none; }
}

/* ==========================================================================
   PRO DESK — chat widget
   Same markup contract as the consumer site's Solar Assistant so the two stay
   maintainable together; restyled to the Pro language (steel head, 12px radii,
   mono part numbers, denser cards).
   ========================================================================== */

.sw-launch {
  position: fixed; right: 20px; bottom: 20px; z-index: 900;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: #fff; border: 0;
  font-family: var(--font); font-size: 12.5px; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 14px 22px; border-radius: 999px; cursor: pointer;
  box-shadow: 0 10px 30px rgba(56, 50, 48, .3);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.sw-launch:hover { background: var(--volt); box-shadow: 0 14px 36px rgba(245, 154, 0, .38); }
.sw-launch:active { transform: scale(.97); }
.sw-launch svg { width: 18px; height: 18px; }
.sw-launch .sw-dot {
  position: absolute; top: -3px; right: -3px; width: 12px; height: 12px;
  background: var(--volt); border: 2px solid var(--sand); border-radius: 999px;
}
.sw-launch[hidden] { display: none; }

.sw-panel {
  position: fixed; right: 20px; bottom: 20px; z-index: 901;
  width: min(392px, calc(100vw - 40px));
  height: min(640px, calc(100vh - 40px));
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: 0 26px 70px rgba(56, 50, 48, .32);
  display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; transform: translateY(14px) scale(.98); pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.sw-panel.is-open { opacity: 1; transform: none; pointer-events: auto; }

.sw-head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px; background: var(--steel); color: #fff; flex: none;
}
.sw-head .sw-av {
  width: 36px; height: 36px; border-radius: var(--r-sm); flex: none;
  background: var(--volt); display: grid; place-items: center;
}
.sw-head .sw-av svg { width: 19px; height: 19px; color: #fff; }
.sw-head .sw-who { font-weight: 900; font-size: 14.5px; line-height: 1.2; letter-spacing: -0.01em; }
.sw-head .sw-status { font-size: 11px; color: rgba(255, 255, 255, .62); }
.sw-head .sw-status i {
  display: inline-block; width: 6px; height: 6px; border-radius: 999px;
  background: #6cc070; margin-right: 5px;
}
.sw-head .sw-close {
  margin-left: auto; background: transparent; border: 0; color: rgba(255, 255, 255, .7);
  cursor: pointer; padding: 6px; border-radius: var(--r-sm); line-height: 0;
}
.sw-head .sw-close:hover { background: rgba(255, 255, 255, .12); color: #fff; }
.sw-head .sw-close svg { width: 18px; height: 18px; }

.sw-log {
  flex: 1; overflow-y: auto; padding: 16px 15px 6px;
  background: var(--sand); display: flex; flex-direction: column; gap: 11px;
  scroll-behavior: smooth;
}
.sw-msg { max-width: 88%; font-size: 13.5px; line-height: 1.55; }
.sw-msg.bot {
  align-self: flex-start; background: #fff; color: var(--ink);
  border: 1px solid var(--line); border-radius: 3px 12px 12px 12px; padding: 12px 14px;
}
.sw-msg.me {
  align-self: flex-end; background: var(--ink); color: #fff;
  border-radius: 12px 3px 12px 12px; padding: 11px 14px; font-weight: 600;
}
.sw-msg.bot b { font-weight: 800; }
.sw-msg.bot a { color: var(--volt-deep); font-weight: 800; text-decoration: underline; }
.sw-msg.bot ul { margin: 8px 0 0; padding-left: 17px; }
.sw-msg.bot li { margin-bottom: 5px; }
.sw-msg .sw-note {
  display: block; margin-top: 9px; padding-top: 8px; border-top: 1px solid var(--line-2);
  font-size: 12px; color: var(--muted-2); font-style: italic;
}

.sw-typing { align-self: flex-start; display: flex; gap: 4px; padding: 13px; }
.sw-typing span {
  width: 6px; height: 6px; border-radius: 999px; background: rgba(61, 58, 59, .32);
  animation: swb 1.1s infinite ease-in-out;
}
.sw-typing span:nth-child(2) { animation-delay: .15s; }
.sw-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes swb { 0%,60%,100% { transform: translateY(0); opacity: .45; } 30% { transform: translateY(-5px); opacity: 1; } }

/* product card — the B2B version leads with brand, part number and stock */
.sw-card {
  align-self: flex-start; width: 88%; background: #fff;
  border: 1px solid rgba(245, 154, 0, .55); border-radius: 12px; overflow: hidden;
  display: flex; gap: 0;
}
.sw-card .sw-cm {
  width: 92px; flex: none; background: var(--sand);
  display: grid; place-items: center; padding: 10px; border-right: 1px solid var(--line-2);
}
.sw-card .sw-cm img { width: 100%; height: auto; object-fit: contain; mix-blend-mode: multiply; }
.sw-card .sw-cb { padding: 11px 13px 12px; min-width: 0; flex: 1; }
.sw-card .sw-cbrand {
  font-size: 9.5px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted-2);
}
.sw-card .sw-cn { font-weight: 800; font-size: 13px; line-height: 1.3; margin-top: 2px; }
.sw-card .sw-csku { font-family: var(--mono); font-size: 10.5px; color: var(--muted-2); margin-top: 3px; }
.sw-card .sw-cstock {
  display: flex; align-items: center; gap: 6px; margin-top: 6px;
  font-size: 11px; font-weight: 700; color: var(--muted);
}
.sw-card .sw-cstock i { width: 6px; height: 6px; border-radius: 999px; background: var(--green); flex: none; }
.sw-card .sw-cstock.out i { background: var(--muted-2); }
.sw-card .sw-cp { font-weight: 900; font-size: 16px; margin-top: 7px; letter-spacing: -0.02em; }
.sw-card .sw-cp small { font-size: 10px; color: var(--muted-2); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.sw-card .sw-crow { display: flex; gap: 6px; margin-top: 9px; }
.sw-card .sw-cta {
  flex: 1; text-align: center; background: var(--volt); color: #fff; border: 0;
  font-family: var(--font); font-size: 10.5px; font-weight: 900;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 8px 6px; border-radius: var(--r-sm); text-decoration: none; cursor: pointer;
}
.sw-card .sw-cta:hover { background: var(--ink); }
.sw-card .sw-cta.ghost { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.sw-card .sw-cta.ghost:hover { background: var(--ink); color: #fff; box-shadow: none; }
.sw-card .sw-cta:disabled { background: var(--green); color: #fff; box-shadow: none; cursor: default; }

.sw-chips {
  display: flex; flex-wrap: wrap; gap: 6px; padding: 4px 15px 11px;
  background: var(--sand); flex: none;
}
.sw-chip {
  background: #fff; border: 1px solid rgba(245, 154, 0, .45); color: var(--volt-deep);
  font-family: var(--font); font-size: 12px; font-weight: 800;
  padding: 7px 12px; border-radius: 999px; cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.sw-chip:hover { background: var(--volt); color: #fff; border-color: var(--volt); }

.sw-form {
  display: flex; gap: 8px; padding: 11px 12px;
  border-top: 1px solid var(--line); background: #fff; flex: none;
}
.sw-form input {
  flex: 1; min-width: 0; border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 11px 14px; font-family: var(--font); font-size: 13px; color: var(--ink);
  outline: none; background: var(--sand);
}
.sw-form input:focus { border-color: var(--volt); background: #fff; }
.sw-form button {
  flex: none; width: 40px; height: 40px; border-radius: var(--r-sm); border: 0;
  background: var(--volt); color: #fff; cursor: pointer; display: grid; place-items: center;
}
.sw-form button:hover { background: var(--ink); }
.sw-form button svg { width: 17px; height: 17px; }

.sw-foot {
  padding: 0 12px 10px; background: #fff; font-size: 10.5px;
  color: var(--muted-2); text-align: center; flex: none;
}

@media (max-width: 560px) {
  .sw-panel { right: 0; bottom: 0; width: 100vw; height: 100dvh; border-radius: 0; border: 0; }
  .sw-launch { right: 14px; bottom: 14px; padding: 12px 18px; font-size: 11.5px; }
  .sw-card { width: 96%; }
}
@media (prefers-reduced-motion: reduce) {
  .sw-panel, .sw-launch { transition: none; }
  .sw-typing span { animation: none; }
  .sw-log { scroll-behavior: auto; }
}

/* ---------- mobile nav ---------- */
@media (max-width: 1040px) {
  .navbar-inner { overflow-x: auto; scrollbar-width: none; }
  .navbar-inner::-webkit-scrollbar { display: none; }
  .searchbar { display: none; }
  .head-inner { height: 62px; }
}
@media (max-width: 640px) {
  .head-actions .icon-btn span { display: none; }
  .qstrip-item { padding: 15px 16px; }
  .mega-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- mobile hero ----------
   The 90deg scrim only works when the copy sits in a left column; on a phone
   the copy spans the frame, so the gradient has to run top-to-bottom instead. */
@media (max-width: 760px) {
  .util-inner { gap: 14px; }
  .util .pill { display: none; }
  .slides { height: auto; min-height: 460px; }
  .slide { position: relative; inset: auto; display: none; }
  .slide.is-on { display: flex; }
  .slide-bg::after {
    background: linear-gradient(180deg, rgba(26, 29, 31, .72) 0%, rgba(26, 29, 31, .82) 55%, rgba(26, 29, 31, .95) 100%);
  }
  .slide-copy { padding: 34px 0 74px; }
  .slide-ctas .btn { flex: 1; }
  .slider-nav { bottom: 18px; }
  .slider-arrows { display: none; }
  .prod-grid, .prod-grid.cols-5 { grid-template-columns: 1fr; }
  .cta { padding: 26px 22px; }
}
