:root {
  color-scheme: light;
  --ink: #111820;
  --ink-soft: #343a40;
  --muted: #626b73;
  --line: #d9dee2;
  --line-strong: #bdc5cb;
  --panel: #ffffff;
  --soft: #f4f6f7;
  --soft-strong: #e9edef;
  --brand: #1f5eff;
  --brand-strong: #1748cc;
  --brand-soft: #eaf0ff;
  --accent: #e98a10;
  --accent-soft: #fff3df;
  --success: #176b4b;
  --max: 1440px;
  --shadow-sm: 0 10px 30px rgba(20, 25, 28, 0.07);
  --shadow-lg: 0 28px 80px rgba(20, 25, 28, 0.16);
  font-family: Aptos, "Segoe UI Variable", "Helvetica Neue", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 170px;
}

body {
  margin: 0;
  overflow-x: clip;
  background: #ffffff;
  color: var(--ink);
  line-height: 1.5;
}

body.filter-drawer-open,
body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
summary {
  -webkit-tap-highlight-color: transparent;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section,
.footer-inner,
.header-main,
.catalog-nav-inner,
.utility-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section.tight {
  padding: 48px 0;
}

.overline,
.eyebrow {
  display: block;
  margin: 0 0 10px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.scroll-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: 4;
  width: var(--scroll-progress, 0%);
  height: 2px;
  background: var(--brand);
  pointer-events: none;
  transition: width 80ms linear;
}

.utility-bar {
  min-height: 32px;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 32px;
  gap: 24px;
}

.utility-inner > div {
  display: flex;
  gap: 22px;
}

.utility-inner a:hover {
  color: #ffffff;
}

.header-main {
  display: grid;
  grid-template-columns: auto auto minmax(250px, 420px) auto;
  align-items: center;
  min-height: 82px;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 202px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  font-weight: 680;
  white-space: nowrap;
}

.primary-nav > a:hover {
  color: var(--brand);
}

.global-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-width: 0;
  height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  overflow: hidden;
  background: #ffffff;
}

.global-search:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}

.global-search input,
.global-search button {
  min-width: 0;
  border: 0;
  border-radius: 0;
}

.global-search input {
  padding: 0 15px;
}

.global-search button {
  padding: 0 20px;
  background: var(--ink);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.header-rfq,
.header-compare {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.header-rfq strong,
.header-compare strong {
  display: inline-grid;
  place-items: center;
  min-width: 25px;
  height: 25px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 12px;
}

.header-compare:hover,
.header-rfq:hover {
  color: var(--brand);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--brand);
  border-radius: 999px;
  background: var(--brand);
  color: #ffffff;
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  background: var(--brand-strong);
  border-color: var(--brand-strong);
  transform: translateY(-1px);
}

.button.secondary {
  background: #ffffff;
  border-color: var(--line-strong);
  color: var(--ink);
}

.button.secondary:hover {
  border-color: var(--ink);
  background: var(--soft);
}

.button.secondary.light {
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.button.small {
  min-height: 38px;
  padding: 0 12px;
  font-size: 12px;
}

.button.is-added,
.button.is-added:hover {
  border-color: var(--success);
  background: var(--success);
}

.menu-button {
  display: none;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.mega-nav {
  position: relative;
  height: auto;
}

.mega-nav > summary {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: transparent;
  color: var(--ink);
  font-weight: 680;
  cursor: pointer;
}

.mega-nav > summary::-webkit-details-marker {
  display: none;
}

.mega-nav > summary::after {
  content: "+";
  margin-left: 7px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
}

.mega-nav[open] > summary::after {
  content: "-";
}

.mega-panel {
  position: absolute;
  left: -170px;
  top: 57px;
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  width: min(1020px, calc(100vw - 48px));
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-lg);
  white-space: normal;
}

.mega-nav[open] .mega-panel {
  transform-origin: top left;
  animation: mega-enter 220ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.mega-intro {
  min-width: 0;
  padding: 8px 24px 8px 4px;
  border-right: 1px solid var(--line);
}

.mega-intro strong {
  display: block;
  font-size: 23px;
  line-height: 1.2;
}

.mega-intro p {
  margin: 10px 0 18px;
  color: var(--muted);
  font-size: 13px;
  overflow-wrap: anywhere;
}

.mega-categories {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
  padding-left: 24px;
}

.mega-categories a {
  display: grid;
  min-width: 0;
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
}

.mega-categories a:hover {
  background: var(--soft);
}

.mega-categories span {
  min-width: 0;
  overflow-wrap: anywhere;
  font-weight: 780;
}

.mega-categories small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.mobile-search-row {
  display: none;
}

.hero {
  --hero-shift-x: 0px;
  --hero-shift-y: 0px;
  position: relative;
  min-height: 610px;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: #eef1f3;
  color: var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(248, 250, 252, 0.48);
}

.hero::after {
  content: "";
  position: absolute;
  inset: -14px;
  z-index: 0;
  background: var(--hero-image) center / cover no-repeat;
  transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0) scale(1.035);
  transition: transform 260ms ease-out;
  animation: hero-settle 1200ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
  will-change: transform;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0 110px;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--brand);
}

.live-dot {
  position: relative;
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--brand);
}

.live-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid var(--brand);
  border-radius: 50%;
  animation: live-pulse 1800ms ease-out infinite;
}

.hero-inner > * {
  opacity: 0;
  transform: translateY(18px);
  animation: content-rise 640ms cubic-bezier(0.22, 0.75, 0.22, 1) forwards;
}

.hero-inner > :nth-child(1) {
  animation-delay: 120ms;
}

.hero-inner > :nth-child(2) {
  animation-delay: 190ms;
}

.hero-inner > :nth-child(3) {
  animation-delay: 270ms;
}

.hero-inner > :nth-child(4) {
  animation-delay: 350ms;
}

.hero-inner > :nth-child(5) {
  animation-delay: 420ms;
}

.hero-inner > :nth-child(6) {
  animation-delay: 480ms;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 68px;
  line-height: 0.99;
  font-weight: 720;
  letter-spacing: 0;
}

.hero p {
  max-width: 660px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.hero-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  max-width: 760px;
  margin-top: 28px;
  padding: 7px;
  border: 1px solid rgba(23, 26, 29, 0.08);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(20, 25, 28, 0.15);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-search:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 24px 65px rgba(20, 25, 28, 0.18);
}

.hero-search input {
  min-height: 50px;
  padding: 0 15px;
  border: 0;
  color: var(--ink);
  outline: none;
}

/* The hero search removes its outline for the seamless pill look, so it has to
   put a visible focus state back. Without this the primary entry point of the
   site is invisible to keyboard users. */
.hero-search input:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: -2px;
  border-radius: 8px;
}

.hero-search .button {
  min-height: 50px;
  padding-right: 24px;
  padding-left: 24px;
}

.popular-searches {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 14px;
  max-width: 900px;
  margin-top: 15px;
  color: var(--muted);
  font-size: 13px;
}

.popular-searches span {
  font-weight: 800;
}

.popular-searches a {
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-text-link {
  display: inline-flex;
  align-items: center;
  padding: 0 6px;
}

.hero-text-link::after {
  content: "+";
  margin-left: 8px;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1120px, calc(100% - 48px));
  margin: -38px auto 0;
  position: relative;
  z-index: 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  animation: service-rise 720ms 560ms cubic-bezier(0.22, 0.75, 0.22, 1) both;
}

.service-strip > div {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  min-width: 0;
  padding: 22px 26px;
  border-right: 1px solid var(--line);
}

.service-strip > div:last-child {
  border-right: 0;
}

.service-strip > div > span {
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
}

.service-strip p {
  display: grid;
  gap: 3px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.service-strip strong {
  color: var(--ink);
  font-size: 14px;
}

.category-ticker {
  width: 100%;
  max-width: 100vw;
  margin-top: 54px;
  overflow: hidden;
  contain: layout paint;
  border-top: 1px solid #2b2f34;
  border-bottom: 1px solid #2b2f34;
  background: var(--ink);
  color: #ffffff;
}

.category-ticker-track {
  display: flex;
  width: max-content;
  animation: category-scroll 34s linear infinite;
  will-change: transform;
}

.category-ticker:hover .category-ticker-track,
.category-ticker:focus-within .category-ticker-track {
  animation-play-state: paused;
}

.category-ticker-group {
  display: flex;
  flex: 0 0 auto;
}

.category-ticker a {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 27px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 13px;
  font-weight: 720;
  white-space: nowrap;
}

.category-ticker a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.category-ticker a:hover {
  background: #25292e;
}

.category-ticker small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.section-head.compact {
  margin-bottom: 20px;
}

.section-head h2,
.content h2,
.sourcing-intro h2,
.final-cta h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.08;
  font-weight: 700;
}

.section-head p,
.content p,
.muted {
  color: var(--muted);
}

.section-head p {
  max-width: 680px;
  margin: 9px 0 0;
}

.text-button,
.text-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--brand);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.text-link.standalone {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  white-space: nowrap;
}

.text-link.standalone::after {
  content: "+";
  margin-left: 8px;
}

.grid {
  display: grid;
  gap: 16px;
}

.category-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.supplier-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  overflow: hidden;
}

.category-card {
  min-height: 100%;
  border-color: transparent;
  background: transparent;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: none;
}

.category-card > a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.category-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.category-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 220ms ease;
}

.category-card:hover .category-image img {
  transform: scale(1.055);
}

.category-image > span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 8px;
  border-radius: 4px;
  background: var(--brand);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
}

.card-body {
  padding: 17px;
}

.category-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding-right: 3px;
  padding-left: 3px;
}

.card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}

.card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.category-card p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.home-category-grid .category-card p {
  display: none;
}

.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 17px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 820;
}

.card-link span {
  font-size: 18px;
  line-height: 1;
}

.catalogue-feature,
.brand-showcase {
  background: var(--soft);
}

.brand-showcase .section {
  padding-top: 62px;
  padding-bottom: 62px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.brand-grid a {
  display: grid;
  place-items: center;
  min-height: 100px;
  padding: 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.brand-grid img {
  max-width: 112px;
  max-height: 38px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.8;
  transition: filter 160ms ease, opacity 160ms ease;
}

.brand-grid a:hover img {
  filter: grayscale(0);
  opacity: 1;
}

.product-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  border-color: #e7eaed;
  border-radius: 8px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.compare-card-button {
  position: absolute;
  top: 11px;
  right: 11px;
  z-index: 4;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(23, 26, 29, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(20, 25, 28, 0.1);
  backdrop-filter: blur(8px);
}

.compare-card-button::before {
  content: "+";
  margin-right: 5px;
  color: var(--brand);
}

.compare-card-button:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.compare-card-button.is-selected {
  border-color: var(--brand);
  background: var(--brand);
  color: #ffffff;
}

.compare-card-button.is-selected::before {
  content: "";
  margin: 0;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.product-card .product-visual-stage > img {
  transition: transform 360ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.product-card:hover .product-visual-stage > img {
  transform: scale(1.035);
}

.card-image-link {
  display: block;
}

.product-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #f7f9fa;
}

.product-visual-stage {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 15 / 14;
  overflow: hidden;
  background: #f6f7f8;
}

.product-visual-stage > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-visual.compact {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

.product-visual.compact .product-visual-stage {
  aspect-ratio: 15 / 14;
}

.product-visual-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}

.product-visual-caption span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.image-view-button {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.image-dialog {
  width: min(1080px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: var(--shadow-lg);
}

.image-dialog::backdrop {
  background: rgba(10, 12, 14, 0.74);
}

.image-dialog-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.image-dialog > img {
  width: 100%;
  max-height: calc(100vh - 100px);
  object-fit: contain;
}

.product-card .card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.product-card-meta span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card .card-body > p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mini-specs {
  display: grid;
  margin: 12px 0 0;
}

.mini-specs div {
  display: grid;
  grid-template-columns: minmax(82px, 0.75fr) minmax(0, 1.25fr);
  gap: 8px;
  padding: 7px 0;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.mini-specs dt {
  color: var(--muted);
  font-weight: 700;
}

.mini-specs dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 700;
}

.product-card-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  padding-top: 11px;
  border-top: 1px solid var(--line);
}

.product-card-price span {
  color: var(--muted);
  font-size: 11px;
}

.product-card-price strong {
  color: var(--accent);
  font-size: 12px;
}

.card-actions {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 7px;
  margin-top: auto;
  padding-top: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.pill.price {
  background: var(--accent-soft);
  color: #8a5005;
}

.sourcing-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(480px, 1.3fr);
  gap: 80px;
  align-items: start;
}

.sourcing-intro p {
  max-width: 540px;
  color: var(--muted);
}

.sourcing-intro .button {
  margin-top: 14px;
}

.process-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-steps li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.process-steps li > span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 850;
}

.process-steps strong {
  font-size: 18px;
}

.process-steps p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.final-cta {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: #ffffff;
}

.final-cta .section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding-top: 54px;
  padding-bottom: 54px;
}

.final-cta p {
  max-width: 760px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.final-cta .overline {
  color: #8db2ff;
}

.final-cta .button {
  white-space: nowrap;
}

.page-hero {
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.page-hero .section {
  padding-top: 40px;
  padding-bottom: 50px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumb a:hover {
  color: var(--brand);
}

.page-hero-copy {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 80px;
  align-items: end;
}

.page-hero-copy .overline {
  grid-column: 1 / -1;
  margin-bottom: -60px;
}

.page-hero h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.05;
}

.page-hero-copy > p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.category-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 30px;
}

.category-intro h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.15;
}

.category-intro p {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--muted);
}

.category-intro-action {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.category-intro-action span {
  color: var(--muted);
  font-size: 12px;
}

.category-guides {
  margin-top: 64px;
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.guide-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.guide-link-grid a {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.guide-link-grid a:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.guide-link-grid strong {
  font-size: 17px;
  line-height: 1.25;
}

.guide-link-grid span {
  color: var(--muted);
  font-size: 13px;
}

.guide-market,
.guide-comparison,
.guide-sources,
.category-buyer-guide {
  margin-bottom: 56px;
}

.guide-market + .split,
.guide-comparison,
.guide-sources,
.category-buyer-guide {
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

.guide-table-wrap {
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #ffffff;
}

.guide-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  text-align: left;
}

.guide-table th,
.guide-table td {
  padding: 15px 17px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  font-size: 13px;
  line-height: 1.5;
}

.guide-table thead th {
  background: var(--ink);
  color: #ffffff;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.guide-table tbody th {
  width: 23%;
  color: var(--ink);
  font-weight: 800;
}

.guide-table tbody tr:last-child th,
.guide-table tbody tr:last-child td {
  border-bottom: 0;
}

.guide-table td strong {
  color: var(--brand-strong);
  white-space: nowrap;
}

.guide-disclaimer {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.guide-sources h2 {
  margin: 0;
  font-size: 26px;
}

.guide-sources p {
  max-width: 820px;
  margin: 10px 0 14px;
}

.guide-sources ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-sources a {
  color: var(--brand-strong);
  font-size: 13px;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.category-buyer-guide {
  margin-top: 64px;
}

.category-buyer-checklist {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: start;
  gap: 32px;
  margin: 38px 0;
}

.category-buyer-checklist h3 {
  margin: 0 0 6px;
  font-size: 24px;
}

.catalogue-section {
  padding-bottom: 0;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.catalog-layout .product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  padding: 12px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.category-toolbar {
  position: sticky;
  top: 153px;
  z-index: 8;
}

.catalog-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  min-width: 0;
}

.catalog-search input {
  border-radius: 5px 0 0 5px;
}

.catalog-search .button {
  min-height: 44px;
  border-radius: 0 5px 5px 0;
}

.catalog-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.catalog-controls label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.catalog-controls select {
  width: auto;
  min-height: 40px;
  padding-right: 34px;
}

.filter-trigger {
  display: none;
}

.filter-panel {
  position: sticky;
  top: 169px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
}

.filter-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 6px 10px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.filter-panel-head > div {
  display: grid;
}

.filter-panel-head .overline {
  margin-bottom: 4px;
}

.filter-panel-head .text-button {
  font-size: 11px;
}

.filter-close {
  display: none;
}

.filter-group {
  border-bottom: 1px solid var(--line);
}

.filter-group:last-child {
  border-bottom: 0;
}

.filter-group summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 16px;
  list-style: none;
  font-size: 13px;
  font-weight: 820;
  cursor: pointer;
}

.filter-group summary::-webkit-details-marker {
  display: none;
}

.filter-group summary::after {
  content: "+";
  color: var(--muted);
}

.filter-group[open] summary::after {
  content: "-";
}

.filter-options {
  max-height: 250px;
  overflow: auto;
  padding: 0 16px 12px;
}

.check-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 8px;
  padding: 6px 0;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 600;
}

.check-option input {
  width: 16px;
  min-height: 16px;
  margin-top: 1px;
  accent-color: var(--brand);
}

.check-option small {
  color: var(--muted);
  font-size: 10px;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: -8px 0 18px;
}

.active-filters button {
  min-height: 30px;
  padding: 0 9px;
  border: 1px solid #b8d9d5;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  text-transform: capitalize;
}

.no-results {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
  color: var(--muted);
}

.product-page {
  padding-top: 30px;
}

.product-page > .breadcrumb {
  margin-bottom: 30px;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 56px;
  align-items: start;
}

.product-summary-panel {
  position: sticky;
  top: 174px;
  min-width: 0;
}

.product-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-kicker span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.product-kicker span:first-child {
  border-color: #b8d9d5;
  background: var(--brand-soft);
  color: var(--brand-strong);
}

.product-summary-panel h1 {
  margin: 16px 0 0;
  font-size: 42px;
  line-height: 1.06;
}

.product-lead {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.quick-specs {
  margin: 22px 0 0;
}

.quick-specs div {
  display: grid;
  grid-template-columns: minmax(120px, 0.75fr) minmax(0, 1.25fr);
  gap: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.quick-specs div:last-child {
  border-bottom: 1px solid var(--line);
}

.quick-specs dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.quick-specs dd {
  margin: 0;
  font-size: 13px;
  font-weight: 750;
}

.quote-panel {
  margin-top: 22px;
  padding: 20px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--soft);
}

.quote-panel-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.quote-panel-top > div {
  display: grid;
}

.quote-panel-top span,
.quote-panel-top small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quote-panel-top strong {
  color: var(--accent);
  font-size: 18px;
}

.quote-panel h2 {
  margin: 17px 0 0;
  font-size: 22px;
}

.quote-panel > p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.quote-actions {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 8px;
  margin-top: 17px;
}

.quote-assurances {
  display: grid;
  gap: 7px;
  margin: 16px 0 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.compare-product-action {
  width: 100%;
  margin-top: 9px;
  min-height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 780;
  cursor: pointer;
}

.compare-product-action:hover,
.compare-product-action.is-selected {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brand-strong);
}

.quote-assurances li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 11px;
}

.quote-assurances li::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.product-anchor-nav {
  position: sticky;
  top: 153px;
  z-index: 9;
  display: flex;
  gap: 28px;
  margin-top: 56px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  font-size: 12px;
  font-weight: 800;
}

.product-anchor-nav a:hover {
  color: var(--brand);
}

.product-details-section {
  padding-bottom: 0;
}

.product-details-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 48px;
  align-items: start;
}

.technical-specs > p {
  max-width: 780px;
  margin: 0 0 22px;
  color: var(--muted);
}

.product-details-section h2 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.1;
}

.product-use-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
}

.product-use-panel > div {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.product-use-panel h2 {
  font-size: 22px;
}

.check-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 18px;
  color: var(--ink-soft);
  font-size: 13px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 2px;
  background: var(--brand);
}

.check-list a {
  color: var(--brand);
  font-weight: 750;
}

.verified-technical-facts {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.verified-technical-facts h3 {
  margin: 0 0 14px;
  font-size: 18px;
}

.verified-technical-facts .check-list {
  gap: 11px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  font-size: 13px;
}

.spec-table th,
.spec-table td {
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.spec-table tr:last-child th,
.spec-table tr:last-child td {
  border-bottom: 0;
}

.spec-table th {
  width: 34%;
  background: var(--soft);
  color: var(--muted);
  font-weight: 750;
}

.sourcing-note {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 50px;
  margin-top: 46px;
  padding: 28px;
  border-left: 4px solid var(--brand);
  background: var(--soft);
}

.sourcing-note h2 {
  font-size: 24px;
}

.sourcing-note p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
}

.sourcing-note a {
  color: var(--brand);
  font-weight: 750;
}

.product-buying-guide {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 52px;
  margin-top: 46px;
  padding: 38px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-buying-guide h2,
.product-guide-links h2,
.product-comparison h2 {
  margin: 0;
}

.product-buying-guide > div > p {
  max-width: 470px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.buyer-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.buyer-checklist li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.buyer-checklist li:nth-child(-n + 2) {
  border-top: 0;
}

.buyer-checklist span {
  color: var(--brand);
  font-size: 11px;
  font-weight: 850;
}

.buyer-checklist p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.45;
}

.product-guide-links {
  margin-top: 46px;
}

.product-guide-links > div:first-child {
  margin-bottom: 20px;
}

.product-comparison {
  margin-top: 36px;
}

.product-comparison .section-head {
  align-items: end;
}

.comparison-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  scrollbar-color: var(--line-strong) var(--soft);
}

.product-comparison .comparison-table th,
.product-comparison .comparison-table td {
  width: 230px;
  min-width: 190px;
}

.product-comparison .comparison-table thead th {
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.product-comparison .comparison-table thead th:first-child,
.product-comparison .comparison-table tbody th {
  position: sticky;
  left: 0;
  z-index: 3;
  width: 180px;
  min-width: 160px;
  background: var(--soft);
}

.product-comparison .comparison-table thead th:first-child {
  z-index: 4;
  color: var(--muted);
  font-size: 12px;
}

.product-comparison .comparison-table thead a {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.3;
}

.product-comparison .comparison-table thead a:hover {
  color: var(--brand);
}

.product-comparison .comparison-table thead small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 650;
}

.related-products {
  margin-top: 20px;
}

.product-mobile-bar {
  display: none;
}

.compare-tray {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 80;
  width: min(1320px, calc(100% - 32px));
  transform: translateX(-50%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.compare-tray-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 10px;
  animation: service-rise 300ms cubic-bezier(0.2, 0.72, 0.2, 1) both;
}

.compare-tray-heading {
  display: grid;
  min-width: 120px;
  padding: 0 8px;
}

.compare-tray-heading span {
  font-size: 12px;
  font-weight: 800;
}

.compare-tray-heading strong {
  color: var(--brand);
  font-size: 11px;
}

.compare-tray-items {
  display: flex;
  min-width: 0;
  gap: 8px;
  overflow-x: auto;
}

.compare-tray-item {
  position: relative;
  display: grid;
  grid-template-columns: 50px minmax(80px, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-width: 190px;
  max-width: 230px;
  padding: 5px 7px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
}

.compare-tray-item img {
  width: 50px;
  height: 44px;
  object-fit: contain;
  background: #ffffff;
}

.compare-tray-item > div {
  display: grid;
  min-width: 0;
}

.compare-tray-item strong,
.compare-tray-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compare-tray-item strong {
  font-size: 10px;
}

.compare-tray-item span {
  color: var(--muted);
  font-size: 9px;
}

.compare-tray-item button {
  align-self: start;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  cursor: pointer;
}

.compare-tray-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.compare-tray-actions .button {
  min-width: 174px;
  white-space: nowrap;
}

.button.is-disabled {
  border-color: var(--line);
  background: var(--soft-strong);
  color: var(--muted);
  cursor: not-allowed;
  transform: none;
}

body.compare-tray-visible {
  padding-bottom: 108px;
}

.compare-empty {
  max-width: 860px;
  padding: 34px;
  border-left: 4px solid var(--brand);
  background: var(--soft);
}

.compare-empty h2 {
  margin: 0;
  font-size: 34px;
}

.compare-empty p {
  max-width: 700px;
  color: var(--muted);
}

.compare-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.compare-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 24px;
}

.compare-toolbar h2 {
  margin: 0;
  font-size: 34px;
}

.compare-toolbar p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.compare-toolbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
}

.difference-toggle {
  display: flex;
  align-items: center;
  grid-template-columns: none;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  white-space: nowrap;
}

.difference-toggle input {
  width: 17px;
  min-height: 17px;
  margin: 0;
  accent-color: var(--brand);
}

.compare-table-shell {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  scroll-snap-type: x proximity;
  scrollbar-color: var(--line-strong) var(--soft);
}

.comparison-table {
  width: max-content;
  min-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
  width: 265px;
  padding: 14px 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.comparison-table tr > *:last-child {
  border-right: 0;
}

.comparison-table tbody tr:last-child > * {
  border-bottom: 0;
}

.comparison-table thead th {
  padding: 0;
  background: #ffffff;
  scroll-snap-align: start;
}

.comparison-table .comparison-label-head,
.comparison-table tbody th {
  position: sticky;
  left: 0;
  z-index: 3;
  width: 180px;
  background: var(--soft);
}

.comparison-label-head {
  padding: 18px !important;
}

.comparison-label-head span,
.comparison-label-head small {
  display: block;
}

.comparison-label-head span {
  font-size: 16px;
}

.comparison-label-head small {
  margin-top: 4px;
  color: var(--brand);
  font-size: 11px;
}

.comparison-product {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 16px;
}

.comparison-product > button {
  align-self: end;
  margin-bottom: 4px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  font-weight: 750;
  cursor: pointer;
}

.comparison-product > button:hover {
  color: var(--brand);
}

.comparison-product-image {
  width: 100%;
  height: auto;
  aspect-ratio: 15 / 14;
  object-fit: contain;
  background: var(--soft);
}

.comparison-brand-logo {
  width: auto;
  max-width: 105px;
  height: 28px;
  margin: 12px 0 8px;
  object-fit: contain;
  object-position: left center;
}

.comparison-brand-name {
  margin: 12px 0 5px;
  color: var(--brand);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.comparison-product strong {
  display: block;
  font-size: 14px;
  line-height: 1.25;
}

.comparison-product > span {
  margin: 5px 0 12px;
  color: var(--muted);
  font-size: 10px;
}

.comparison-product .button {
  margin-top: auto;
}

.comparison-table tbody th {
  z-index: 2;
  color: var(--muted);
  font-size: 12px;
}

.comparison-table tbody td {
  font-size: 12px;
  font-weight: 650;
}

.comparison-table tbody tr.is-different th {
  color: var(--brand-strong);
}

.comparison-table tbody tr.is-different td {
  background: #f5f8ff;
}

.comparison-table td.is-unspecified {
  color: #8a9298;
  font-weight: 500;
}

.compare-footnote {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 30px;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.compare-footnote p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.rfq-page {
  padding-top: 42px;
}

.rfq-progress {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 32px;
  border: 1px solid var(--line);
}

.rfq-progress > div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 10px 16px;
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.rfq-progress > div:last-child {
  border-right: 0;
}

.rfq-progress span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--soft-strong);
  font-weight: 800;
}

.rfq-progress .is-active {
  color: var(--brand-strong);
  background: var(--brand-soft);
}

.rfq-progress .is-active span {
  background: var(--brand);
  color: #ffffff;
}

.rfq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(310px, 0.55fr);
  gap: 28px;
  align-items: start;
}

.quote-form {
  display: grid;
  gap: 18px;
}

.form-section {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.form-section legend {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px;
}

.form-section legend span {
  color: var(--brand);
  font-size: 11px;
  font-weight: 850;
}

.form-section legend strong {
  font-size: 19px;
}

.form-section > p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
}

/* Single column with the label above the input. Multi-column forms make the eye
   jump sideways between fields and slow completion; the RFQ is the only thing on
   this page, so vertical length costs less than scan friction. */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 620px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 750;
}

label small {
  color: var(--muted);
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  background: #ffffff;
  color: var(--ink);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}

textarea {
  min-height: 170px;
  resize: vertical;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0 4px;
  font-weight: 560;
  line-height: 1.5;
}

.consent-field input {
  flex: 0 0 auto;
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--brand);
}

.consent-field a {
  color: var(--brand);
  text-decoration: underline;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 4px;
}

.form-submit .button {
  min-width: 210px;
}

.form-status {
  color: var(--muted);
  font-size: 12px;
}

.form-status[data-state="success"] {
  color: var(--success);
  font-weight: 760;
}

.form-status[data-state="error"] {
  color: #a52a21;
  font-weight: 700;
}

button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.rfq-sidebar {
  position: sticky;
  top: 174px;
  display: grid;
  gap: 16px;
}

.quote-summary,
.rfq-help {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
}

.quote-summary h2,
.rfq-help h2 {
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.quote-summary p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.quote-summary ul {
  display: grid;
  gap: 0;
  margin: 16px 0;
  padding: 0;
  list-style: none;
}

.quote-summary li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.quote-summary li:last-child {
  border-bottom: 1px solid var(--line);
}

.quote-summary li a {
  font-weight: 700;
}

.quote-summary li button {
  font-size: 10px;
}

.rfq-help ol {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.rfq-help li {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  gap: 10px;
}

.rfq-help li > span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--ink);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
}

.rfq-help li p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.rfq-contact {
  display: grid;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.rfq-contact span {
  color: var(--muted);
}

.rfq-contact a {
  color: var(--brand);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.notice {
  padding: 20px;
  border: 1px solid #efcf96;
  border-radius: 6px;
  background: var(--accent-soft);
  color: #6d470d;
}

.notice p {
  color: #76531c;
}

.legal-note,
.source-note {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.faq-item {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.faq-item h3 {
  margin: 0;
  font-size: 19px;
}

.faq-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  margin-top: 0;
  background: var(--ink);
  color: #ffffff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
  gap: 44px;
  padding-top: 54px;
  padding-bottom: 54px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.66);
}

.site-footer .brand-logo {
  width: 216px;
}

.footer-brand p {
  max-width: 310px;
  font-size: 13px;
}

.footer-email {
  display: inline-block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 700;
}

.site-footer h3 {
  margin: 4px 0 16px;
  font-size: 13px;
}

.footer-links {
  display: grid;
  gap: 9px;
  font-size: 12px;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-cookie-link,
.inline-cookie-link {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.footer-cookie-link {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.footer-cookie-link:hover,
.inline-cookie-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.inline-cookie-link {
  color: var(--brand);
  text-decoration: underline;
}

.copyright {
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 220;
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 12px;
  width: min(500px, calc(100% - 36px));
  padding: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner strong {
  display: block;
  margin-bottom: 3px;
  font-size: 16px;
}

.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.cookie-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
}

.cookie-actions > a {
  margin-right: auto;
  padding: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.cookie-actions .button {
  min-height: 42px;
  padding: 0 15px;
  white-space: nowrap;
}

html.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms cubic-bezier(0.22, 0.75, 0.22, 1),
    transform 620ms cubic-bezier(0.22, 0.75, 0.22, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

html.motion-ready [data-reveal="left"] {
  transform: translateX(-24px);
}

html.motion-ready [data-reveal="right"] {
  transform: translateX(24px);
}

html.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.rfq-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  width: min(340px, calc(100% - 32px));
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.rfq-toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

body.compare-tray-visible .rfq-toast {
  bottom: 112px;
}

.rfq-toast-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--brand);
  font-size: 12px;
  font-weight: 850;
}

.rfq-toast strong,
.rfq-toast span {
  display: block;
}

.rfq-toast strong {
  font-size: 13px;
}

.rfq-toast span {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
}

.header-rfq.is-pulsing strong,
.header-compare.is-pulsing strong {
  animation: count-pop 420ms cubic-bezier(0.2, 0.9, 0.3, 1);
}

@keyframes hero-settle {
  from {
    opacity: 0.4;
    transform: translate3d(0, 0, 0) scale(1.09);
  }
  to {
    opacity: 1;
    transform: translate3d(var(--hero-shift-x), var(--hero-shift-y), 0) scale(1.035);
  }
}

@keyframes content-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes service-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes live-pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.5);
  }
  75%,
  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

@keyframes category-scroll {
  to {
    transform: translateX(-50%);
  }
}

@keyframes mega-enter {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes count-pop {
  0% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.32);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 1240px) {
  .header-main {
    grid-template-columns: auto auto minmax(220px, 1fr) auto;
    gap: 18px;
  }

  .header-quote-button {
    display: none;
  }

  .primary-nav {
    gap: 18px;
  }

  .category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalog-layout .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .brand-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .product-layout {
    grid-template-columns: minmax(0, 1fr) minmax(390px, 0.85fr);
    gap: 38px;
  }
}

@media (max-width: 980px) {
  .section,
  .footer-inner,
  .header-main,
  .utility-inner {
    width: min(100% - 32px, var(--max));
  }

  .utility-bar {
    display: none;
  }

  .header-main {
    grid-template-columns: auto 1fr auto;
    min-height: 64px;
  }

  .header-main > .global-search {
    display: none;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
  }

  .mobile-search-row {
    display: block;
    padding: 0 16px 10px;
  }

  .mobile-search-row .global-search {
    height: 42px;
  }

  .primary-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 116px;
    bottom: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    overflow: auto;
    border-top: 1px solid var(--line);
    background: #ffffff;
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav > a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .mega-nav {
    height: auto;
  }

  .mega-nav > summary {
    height: 48px;
    margin: 0;
    padding: 0 14px;
    border-radius: 8px;
    background: var(--ink);
    color: #ffffff;
  }

  .mega-panel {
    position: static;
    grid-template-columns: 1fr;
    width: 100%;
    padding: 16px 0 0;
    border: 0;
    box-shadow: none;
  }

  .mega-intro {
    display: none;
  }

  .mega-categories {
    grid-template-columns: 1fr 1fr;
    padding: 0;
  }

  .hero {
    min-height: 560px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .service-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-grid,
  .supplier-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sourcing-section,
  .page-hero-copy,
  .product-layout,
  .product-details-layout,
  .rfq-layout {
    grid-template-columns: 1fr;
  }

  .page-hero-copy {
    gap: 14px;
  }

  .page-hero-copy .overline {
    grid-column: auto;
    margin-bottom: 0;
  }

  .product-summary-panel,
  .rfq-sidebar {
    position: static;
  }

  .product-anchor-nav {
    top: 116px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-layout > * {
    min-width: 0;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .catalog-controls {
    justify-content: space-between;
    flex-wrap: wrap;
    white-space: normal;
  }

  .catalog-controls > span {
    flex: 1 1 180px;
  }

  .category-buyer-checklist {
    grid-template-columns: 1fr;
  }

  .catalog-layout .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-trigger {
    display: inline-flex;
    min-height: 40px;
  }

  .filter-panel {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 100;
    display: none;
    width: min(360px, calc(100% - 40px));
    overflow: auto;
    border-radius: 0;
    box-shadow: var(--shadow-lg);
  }

  .filter-panel.is-open {
    display: block;
  }

  body.filter-drawer-open::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(12, 14, 16, 0.55);
  }

  .filter-close {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 12px;
    font-weight: 800;
  }

  .filter-panel-head .text-button {
    grid-column: 2;
  }

  .category-toolbar {
    top: 116px;
  }

  .footer-inner {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer-inner > div:last-child {
    grid-column: 2;
  }

  .compare-toolbar {
    align-items: start;
    flex-direction: column;
  }

  .compare-toolbar-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 48px 0;
  }

  .section.tight {
    padding: 36px 0;
  }

  html.motion-ready [data-reveal="left"],
  html.motion-ready [data-reveal="right"] {
    transform: translateY(24px);
  }

  .header-main {
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
    max-width: 100%;
  }

  .header-main .brand,
  .header-actions {
    min-width: 0;
  }

  .header-main .brand-logo {
    max-width: 100%;
  }

  .header-rfq > span,
  .header-compare > span {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .hero {
    min-height: 540px;
  }

  .hero::before {
    background: rgba(248, 250, 252, 0.6);
  }

  .hero::after {
    background-position: 30% center;
  }

  .hero-inner {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    padding: 58px 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 34px;
    overflow-wrap: anywhere;
  }

  .hero p {
    max-width: 100%;
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .hero-search {
    width: 100%;
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero-search input {
    width: 100%;
    min-height: 48px;
  }

  .hero-search .button {
    width: 100%;
    min-width: 0;
  }

  .hero-actions .button {
    flex: 1 1 auto;
  }

  .service-strip {
    grid-template-columns: 1fr;
  }

  .service-strip > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 17px 20px;
  }

  .section-head,
  .category-intro,
  .final-cta .section {
    display: grid;
    align-items: start;
    gap: 16px;
  }

  .section-head h2,
  .content h2,
  .sourcing-intro h2,
  .final-cta h2 {
    font-size: 30px;
  }

  .category-intro-action {
    justify-items: start;
  }

  .category-grid,
  .home-category-grid,
  .supplier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-link-grid {
    grid-template-columns: 1fr 1fr;
  }

  .product-grid,
  .catalog-layout .product-grid {
    grid-template-columns: 1fr;
  }

  .category-card .card-body {
    padding: 13px;
  }

  .category-card p {
    -webkit-line-clamp: 2;
  }

  .category-card h3 {
    font-size: 14px;
  }

  .brand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sourcing-section {
    gap: 34px;
  }

  .final-cta .button {
    justify-self: start;
  }

  .page-hero .section {
    padding-top: 26px;
    padding-bottom: 36px;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .catalog-toolbar {
    position: static;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .catalog-controls {
    justify-content: space-between;
    white-space: normal;
  }

  .catalog-controls > span {
    flex: 1;
  }

  .catalog-controls label {
    font-size: 0;
  }

  .catalog-controls select {
    font-size: 12px;
  }

  .product-page {
    padding-top: 20px;
    padding-bottom: 84px;
  }

  .product-page > .breadcrumb {
    margin-bottom: 20px;
  }

  .product-layout {
    gap: 26px;
  }

  .product-summary-panel h1 {
    font-size: 34px;
  }

  .quote-actions {
    grid-template-columns: 1fr;
  }

  .product-anchor-nav {
    margin-top: 34px;
    gap: 22px;
  }

  .sourcing-note {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px;
  }

  .product-mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-top: 1px solid var(--line);
    background: #ffffff;
    box-shadow: 0 -8px 24px rgba(20, 25, 28, 0.1);
  }

  .rfq-toast {
    right: 16px;
    bottom: 78px;
  }

  body.compare-tray-visible .rfq-toast {
    bottom: 174px;
  }

  .compare-tray {
    left: 8px;
    right: 8px;
    bottom: 8px;
    width: auto;
    transform: none;
  }

  body:has(.product-mobile-bar).compare-tray-visible .compare-tray {
    bottom: 76px;
  }

  .compare-tray-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .compare-tray-heading {
    min-width: 0;
  }

  .compare-tray-items {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .compare-tray-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .compare-tray-actions .text-button {
    display: none;
  }

  .compare-tray-actions .button {
    min-width: 150px;
    min-height: 38px;
    font-size: 11px;
  }

  body.compare-tray-visible {
    padding-bottom: 160px;
  }

  .compare-empty {
    padding: 24px 20px;
  }

  .compare-empty h2,
  .compare-toolbar h2 {
    font-size: 28px;
  }

  .compare-toolbar-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .difference-toggle {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .compare-toolbar-actions .button {
    min-width: 0;
    padding: 0 12px;
    font-size: 11px;
  }

  .compare-table-shell {
    width: calc(100vw - 16px);
    margin-left: calc((100% - 100vw) / 2 + 8px);
  }

  .comparison-table th,
  .comparison-table td {
    width: 240px;
    padding: 12px;
  }

  .comparison-table .comparison-label-head,
  .comparison-table tbody th {
    width: 126px;
  }

  .comparison-label-head {
    padding: 14px !important;
  }

  .comparison-product {
    padding: 12px;
  }

  .compare-footnote {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .product-mobile-bar > div {
    display: grid;
  }

  .product-mobile-bar span {
    color: var(--muted);
    font-size: 10px;
  }

  .product-mobile-bar strong {
    color: var(--accent);
    font-size: 13px;
  }

  .rfq-progress {
    grid-template-columns: 1fr;
  }

  .rfq-progress > div {
    min-height: 46px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .form-section {
    padding: 19px 16px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .field.full {
    grid-column: auto;
  }

  .form-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .form-submit .button {
    width: 100%;
  }

  .split,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 34px 22px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-inner > div:last-child {
    grid-column: auto;
  }

  .cookie-banner {
    position: fixed;
    right: 8px;
    bottom: 8px;
    grid-template-columns: 1fr;
    gap: 9px;
    width: calc(100vw - 16px);
    max-width: none;
    max-height: min(42vh, 220px);
    margin: 0;
    padding: 12px;
    overflow-y: auto;
  }

  .cookie-banner strong {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .cookie-banner p {
    font-size: 11px;
    line-height: 1.35;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) minmax(0, 1fr);
    gap: 6px;
  }

  .cookie-actions > a {
    align-self: center;
    margin: 0;
    padding: 6px;
    font-size: 11px;
  }

  .cookie-actions .button {
    min-width: 0;
    min-height: 36px;
    padding: 0 8px;
    font-size: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.cookie-banner-visible .product-mobile-bar {
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 430px) {
  .header-main {
    width: calc(100% - 24px);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
  }

  .brand-logo {
    width: 140px;
  }

  .header-compare,
  .header-rfq {
    display: none;
  }

  .header-actions {
    gap: 4px;
  }

  .header-rfq {
    gap: 0;
  }

  .menu-button {
    padding: 0 10px;
  }

  .category-grid,
  .home-category-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .guide-link-grid {
    grid-template-columns: 1fr;
  }

  .category-image > span {
    left: 7px;
    bottom: 7px;
  }

  .catalog-controls {
    flex-wrap: wrap;
  }

  .catalog-controls > span {
    flex-basis: 100%;
    order: 3;
  }

  .product-visual-caption {
    display: grid;
    gap: 2px;
  }

  .quick-specs div {
    grid-template-columns: 105px minmax(0, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-inner > *,
  html.motion-ready [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }

  .category-ticker-track {
    transform: none !important;
  }
}

/* Admin operations console */
.admin-body {
  min-height: 100vh;
  background: #f2f4f6;
  color: #111820;
  font-size: 14px;
}

.admin-body button,
.admin-body input,
.admin-body select,
.admin-body textarea {
  border-radius: 5px;
}

.admin-login {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(17, 24, 32, 0.94), rgba(17, 24, 32, 0.94)),
    url("/assets/industrial-factory-hero-v3.webp") center / cover;
}

.admin-login-panel {
  width: min(420px, 100%);
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.admin-login-panel .brand-logo {
  width: 210px;
  margin-bottom: 32px;
}

.admin-login-panel h1 {
  margin: 0;
  font-size: 28px;
}

.admin-login-panel > p {
  margin: 8px 0 24px;
  color: #626b73;
}

.admin-login-form {
  display: grid;
  gap: 16px;
}

.admin-login-form label,
.admin-field {
  display: grid;
  gap: 7px;
  color: #343a40;
  font-size: 12px;
  font-weight: 700;
}

.admin-login-form input,
.admin-field input,
.admin-field select,
.admin-field textarea,
.admin-filter-bar input,
.admin-filter-bar select,
.admin-rfq-notes textarea,
.admin-rfq-status select {
  width: 100%;
  border: 1px solid #bdc5cb;
  background: #ffffff;
  color: #111820;
}

.admin-login-form input,
.admin-field input,
.admin-field select,
.admin-filter-bar input,
.admin-filter-bar select,
.admin-rfq-status select {
  min-height: 42px;
  padding: 0 12px;
}

.admin-field textarea,
.admin-rfq-notes textarea {
  min-height: 112px;
  padding: 11px 12px;
  resize: vertical;
}

.admin-login-status {
  min-height: 20px;
  margin: 0;
  color: #626b73;
  font-size: 12px;
}

.admin-login-status[data-state="error"] {
  color: #a82a2a;
}

.admin-app {
  min-height: 100vh;
}

.admin-topbar {
  position: sticky;
  z-index: 40;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 0 22px;
  border-bottom: 1px solid #d9dee2;
  background: #ffffff;
}

.admin-topbar .brand-logo {
  width: 185px;
}

.admin-topbar-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}

.admin-session-meta {
  display: grid;
  justify-items: end;
  line-height: 1.25;
}

.admin-session-meta strong {
  font-size: 12px;
}

.admin-notification-state {
  color: #176b4b;
  font-size: 11px;
}

.admin-notification-state[data-state="warning"] {
  color: #9b6500;
}

.admin-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  min-height: calc(100vh - 66px);
}

.admin-sidebar {
  position: sticky;
  top: 66px;
  align-self: start;
  min-height: calc(100vh - 66px);
  padding: 20px 14px;
  border-right: 1px solid #d9dee2;
  background: #111820;
}

.admin-sidebar-label {
  display: block;
  padding: 0 10px 10px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-nav {
  display: grid;
  gap: 4px;
}

.admin-nav button {
  min-height: 42px;
  padding: 0 12px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  text-align: left;
  cursor: pointer;
}

.admin-nav button:hover,
.admin-nav button[data-active="true"] {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.admin-nav button[data-active="true"] {
  box-shadow: inset 3px 0 #1f5eff;
}

.admin-content {
  min-width: 0;
  padding: 30px;
}

.admin-view {
  width: min(1440px, 100%);
  margin: 0 auto;
}

.admin-page-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.admin-page-head h1,
.admin-page-head h2 {
  margin: 0;
  font-size: 28px;
}

.admin-page-head p {
  margin: 5px 0 0;
  color: #626b73;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.admin-stat {
  min-width: 0;
  padding: 18px;
  border: 1px solid #d9dee2;
  border-radius: 7px;
  background: #ffffff;
}

.admin-stat span {
  display: block;
  color: #626b73;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.admin-stat strong {
  display: block;
  margin-top: 5px;
  font-size: 29px;
  line-height: 1.1;
}

.admin-stat small {
  display: block;
  margin-top: 5px;
  color: #626b73;
}

.admin-panel {
  border: 1px solid #d9dee2;
  border-radius: 7px;
  background: #ffffff;
}

.admin-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 18px;
  border-bottom: 1px solid #e9edef;
}

.admin-panel-head h2,
.admin-panel-head h3 {
  margin: 0;
  font-size: 16px;
}

.admin-table-wrap {
  width: 100%;
  overflow: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
}

.admin-table th,
.admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #e9edef;
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  background: #f8f9fa;
  color: #626b73;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.admin-table td {
  font-size: 12px;
}

.admin-table td small {
  display: block;
  margin-top: 2px;
  color: #7b848c;
}

.admin-table tbody tr:hover {
  background: #fafbfc;
}

.admin-row-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: #1748cc;
  font-weight: 750;
  cursor: pointer;
}

.admin-small-button {
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid #bdc5cb;
  background: #ffffff;
  color: #111820;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.admin-status {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: #e9edef;
  color: #4c555d;
  font-size: 10px;
  font-weight: 800;
}

.admin-status[data-status="new"],
.admin-status[data-status="draft"] {
  background: #fff3d6;
  color: #8a5a00;
}

.admin-status[data-status="contacted"],
.admin-status[data-status="qualifying"] {
  background: #eaf0ff;
  color: #1748cc;
}

.admin-status[data-status="quoted"],
.admin-status[data-status="published"] {
  background: #e5f5ed;
  color: #176b4b;
}

.admin-status[data-status="won"] {
  background: #d7f4e6;
  color: #0d593d;
}

.admin-status[data-status="lost"],
.admin-status[data-status="spam"],
.admin-status[data-status="archived"] {
  background: #f1e7e7;
  color: #8d3131;
}

.admin-filter-bar {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 190px auto;
  gap: 10px;
  margin-bottom: 14px;
}

.admin-filter-bar .button {
  min-height: 42px;
}

.admin-table-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-height: 52px;
  padding: 0 14px;
}

.admin-table-footer span {
  color: #626b73;
  font-size: 11px;
}

.admin-empty {
  padding: 35px 15px;
  color: #626b73;
  text-align: center;
}

.admin-dialog {
  width: min(860px, calc(100% - 24px));
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: auto;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(17, 24, 32, 0.28);
}

.admin-dialog::backdrop {
  background: rgba(17, 24, 32, 0.62);
}

.admin-dialog-head {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 22px;
  border-bottom: 1px solid #d9dee2;
  background: #ffffff;
}

.admin-dialog-head h2 {
  margin: 0;
  font-size: 20px;
}

.admin-dialog-head p {
  margin: 3px 0 0;
  color: #626b73;
  font-size: 11px;
}

.admin-icon-button {
  width: 36px;
  height: 36px;
  border: 1px solid #d9dee2;
  background: #ffffff;
  color: #111820;
  font-size: 18px;
  cursor: pointer;
}

.admin-dialog-body {
  padding: 22px;
}

.admin-rfq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.admin-detail-section {
  padding: 16px;
  border: 1px solid #e9edef;
  border-radius: 6px;
}

.admin-detail-section h3 {
  margin: 0 0 13px;
  font-size: 13px;
}

.admin-detail-list {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 8px 14px;
  margin: 0;
  font-size: 12px;
}

.admin-detail-list dt {
  color: #626b73;
}

.admin-detail-list dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.admin-requirements {
  margin: 0;
  white-space: pre-wrap;
}

.admin-reference-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
}

.admin-reference-list a {
  color: #1748cc;
}

.admin-rfq-editor {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.admin-rfq-status,
.admin-rfq-notes {
  display: grid;
  gap: 7px;
  color: #343a40;
  font-size: 12px;
  font-weight: 700;
}

.admin-dialog-actions {
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  padding: 15px 22px;
  border-top: 1px solid #d9dee2;
  background: #ffffff;
}

.admin-dialog-actions .danger {
  margin-right: auto;
  border-color: #d9aaaa;
  color: #992b2b;
}

.admin-product-form {
  display: grid;
  gap: 18px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-field.wide {
  grid-column: 1 / -1;
}

.admin-field.check {
  display: flex;
  align-items: center;
  align-self: end;
  min-height: 42px;
  gap: 9px;
}

.admin-field.check input {
  width: 18px;
  min-height: 18px;
  margin: 0;
}

.admin-media-editor {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
  border: 1px solid #e9edef;
  border-radius: 6px;
}

.admin-media-preview {
  display: grid;
  min-height: 120px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #d9dee2;
  border-radius: 5px;
  background: #f4f6f7;
}

.admin-media-preview img {
  width: 100%;
  height: 120px;
  object-fit: contain;
}

.admin-media-inputs {
  display: grid;
  align-content: center;
  gap: 11px;
}

.admin-muted {
  color: #626b73;
  font-size: 12px;
}

.admin-revert-note {
  margin: 0;
  padding: 10px 12px;
  border-left: 3px solid #f5b800;
  background: #fff8df;
  color: #6d5100;
  font-size: 12px;
}

.admin-toast {
  position: fixed;
  z-index: 100;
  right: 22px;
  bottom: 22px;
  max-width: min(380px, calc(100% - 44px));
  padding: 13px 16px;
  border-radius: 6px;
  background: #111820;
  color: #ffffff;
  box-shadow: 0 16px 40px rgba(17, 24, 32, 0.24);
  font-size: 12px;
  font-weight: 700;
}

.admin-toast[data-state="success"] {
  background: #176b4b;
}

.admin-toast[data-state="error"] {
  background: #982f2f;
}

@media (max-width: 980px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: sticky;
    z-index: 30;
    top: 66px;
    min-height: auto;
    padding: 8px 12px;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid #26313d;
  }

  .admin-sidebar-label {
    display: none;
  }

  .admin-nav {
    display: flex;
    width: max-content;
  }

  .admin-nav button {
    min-width: 110px;
    text-align: center;
  }

  .admin-nav button[data-active="true"] {
    box-shadow: inset 0 -3px #1f5eff;
  }

  .admin-content {
    padding: 22px 16px;
  }

  .admin-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .admin-topbar {
    padding: 0 12px;
  }

  .admin-topbar .brand-logo {
    width: 145px;
  }

  .admin-session-meta {
    display: none;
  }

  .admin-content {
    padding: 18px 12px;
  }

  .admin-page-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-page-head h1,
  .admin-page-head h2 {
    font-size: 23px;
  }

  .admin-stats {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .admin-stat {
    padding: 14px;
  }

  .admin-filter-bar {
    grid-template-columns: 1fr;
  }

  .admin-rfq-grid,
  .admin-rfq-editor,
  .admin-form-grid,
  .admin-media-editor {
    grid-template-columns: 1fr;
  }

  .admin-field.wide {
    grid-column: auto;
  }

  .admin-dialog-body {
    padding: 16px;
  }

  .admin-dialog-actions {
    flex-wrap: wrap;
    padding: 12px 16px;
  }

  .admin-dialog-actions .danger {
    width: 100%;
    margin-right: 0;
    order: 3;
  }
}

@media (max-width: 1024px) {
  .product-buying-guide {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .product-buying-guide {
    margin-top: 34px;
    padding: 30px 0;
  }

  .buyer-checklist {
    grid-template-columns: 1fr;
  }

  .buyer-checklist li:nth-child(2) {
    border-top: 1px solid var(--line);
  }

  .product-comparison .section-head {
    align-items: start;
  }

  .product-comparison .comparison-table th,
  .product-comparison .comparison-table td {
    width: 210px;
    min-width: 180px;
  }

  .product-comparison .comparison-table thead th:first-child,
  .product-comparison .comparison-table tbody th {
    width: 126px;
    min-width: 126px;
  }
}

/* Mobile touch targets.
   Google and WCAG 2.5.8 expect roughly 44-48px of tappable height. The footer
   link columns, the category ticker, and standalone text links were rendering
   at 12-15px on phones, which is the bulk of the site's undersized targets.
   Height is added with padding so the visual rhythm of the text stays intact. */
@media (max-width: 720px) {
  .footer-links {
    gap: 0;
  }

  .footer-links a,
  .footer-cookie-link,
  .inline-cookie-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .footer-email {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .category-ticker a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .text-link.standalone {
    min-height: 44px;
  }

  .card-actions .button,
  .card-actions .text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
  }
}

/* Response-time commitment.
   Buyers deciding whether to submit an RFQ need to know when they will hear
   back; the note under the submit button is the last thing read before the
   click, so it is styled as a calm reassurance rather than a warning. */
.form-response-time {
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--soft);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.form-response-time strong {
  color: var(--ink);
}

.rfq-response-time {
  margin: 18px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--brand-soft);
  color: var(--ink-soft);
  font-size: 12px;
  line-height: 1.5;
}

.rfq-response-time strong {
  color: var(--brand-strong);
}

/* Reference tool (clamping force calculator).
   Two-column on desktop so inputs and the method sit side by side; the result
   block is the visual anchor because it is the answer the buyer came for. */
.tool-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: start;
  margin-bottom: 40px;
}

.tool-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

.tool-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}

.tool-grid label {
  display: grid;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
}

.tool-grid input,
.tool-grid select {
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--panel);
  font: inherit;
  font-weight: 600;
}

.tool-grid input:focus,
.tool-grid select:focus {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
}

.tool-result {
  margin-top: 20px;
  padding: 18px;
  border-radius: 14px;
  background: var(--brand-soft);
}

.tool-figure {
  display: grid;
  gap: 4px;
  margin-bottom: 10px;
}

.tool-figure span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-strong);
}

.tool-figure strong {
  font-size: 32px;
  line-height: 1.1;
  color: var(--ink);
}

.tool-result p {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--ink-soft);
}

.tool-breakdown,
.tool-empty {
  color: var(--muted) !important;
}

.tool-note {
  margin: 16px 0 0;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}

.tool-formula {
  padding: 12px 14px;
  border-left: 3px solid var(--brand);
  background: var(--soft);
  border-radius: 0 10px 10px 0;
  font-size: 13px;
}

.source-list {
  font-size: 13px;
}

@media (max-width: 980px) {
  .tool-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 520px) {
  .tool-grid {
    grid-template-columns: 1fr;
  }
}

/* Focus visibility (WCAG 2.2 AA, Focus Appearance).
   The site previously relied on browser default focus rings, which wash out
   against the brand blue and the dark footer. One consistent, high-contrast
   indicator is applied to everything interactive. :focus-visible is used so the
   ring appears for keyboard and assistive-tech users without firing on every
   mouse click. */
a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 2px;
  border-radius: 6px;
}

/* On the dark footer and dark CTA panels the blue ring loses contrast against
   the background, so those switch to white. */
.site-footer a:focus-visible,
.site-footer button:focus-visible,
.final-cta a:focus-visible,
.final-cta button:focus-visible {
  outline-color: #ffffff;
}

/* Skip link: present for screen readers, visible once focused. */
.skip-link:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 2px;
}

/* Trust strip. With no customer logos or case studies yet, the honest
   substitute is a plain statement of what submitting actually commits the buyer
   to. Every line here is backed by the published privacy notice. */
.trust-strip {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  list-style: none;
}

.trust-strip li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
}

.trust-strip li::before {
  content: "";
  width: 14px;
  height: 14px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: inset 0 0 0 3px var(--panel), 0 0 0 1px var(--success);
}

.trust-strip strong {
  color: var(--ink);
}

/* Skip link. 27 header links sit between the top of the page and the content,
   so keyboard users need a way past them. Off-screen until focused. */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 0 0 10px 10px;
  background: var(--ink);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: top 120ms ease-out;
}

.skip-link:focus,
.skip-link:focus-visible {
  top: 0;
}

#main-content {
  scroll-margin-top: 90px;
}

@media (prefers-reduced-motion: reduce) {
  .skip-link {
    transition: none;
  }
}

/* Remaining hero tap targets on phones.
   The "Start with" suggestions were 20px tall, the unlisted-machine link 24px,
   and the brand logo 27px. They sit in the hero, which is the most-used screen
   on mobile, so they get real hit areas. The suggestions become chips: easier to
   hit and a clearer affordance than underlined inline text. */
@media (max-width: 720px) {
  .popular-searches {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }

  .popular-searches a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--panel);
    text-decoration: none;
  }

  .hero-text-link {
    min-height: 44px;
  }

  .brand {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }
}

/* Tools hub index cards. */
.tool-index {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin: 28px 0 36px;
}

.tool-card-link {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

.tool-card-link h2 {
  margin: 0;
  font-size: 19px;
  line-height: 1.3;
}

.tool-card-link h2 a {
  color: var(--ink);
  text-decoration: none;
}

.tool-card-link h2 a:hover {
  color: var(--brand);
}

.tool-card-link p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* Input table used by the CFM tool. Wide content scrolls inside its own
   container so the page body never scrolls sideways on a phone. */
.tool-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
}

.tool-table {
  width: 100%;
  min-width: 420px;
}

.tool-table th {
  font-size: 12px;
  white-space: nowrap;
}

.tool-table td {
  padding: 6px 6px 6px 0;
}

.tool-table input {
  width: 100%;
  min-width: 68px;
  min-height: 44px;
  padding: 0 10px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  background: var(--panel);
  font: inherit;
  font-weight: 600;
}

.tool-table input:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
}

/* Brand series pages.
   The comparison table is the page, so it scrolls inside its own container and
   never makes the page body scroll sideways. */
.table-scroll {
  overflow-x: auto;
  margin: 24px 0 32px;
}

.series-table {
  width: 100%;
  min-width: 560px;
}

.series-table caption {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 800;
  text-align: left;
  color: var(--muted);
}

.series-table th[scope="row"] a {
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
}

.series-table th[scope="row"] a:hover {
  text-decoration: underline;
}

.series-action .text-button {
  min-height: 36px;
  white-space: nowrap;
}

.series-suppliers {
  margin-top: 24px;
  font-size: 13px;
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 12px 0 28px;
  list-style: none;
}

.tag-list li {
  padding: 7px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
}

/* "Compare by manufacturer" block on category pages. */
.series-link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 14px;
}

.series-link-grid a {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel);
  text-decoration: none;
  transition: border-color 120ms ease-out;
}

.series-link-grid a:hover {
  border-color: var(--brand);
}

.series-link-grid strong {
  color: var(--ink);
  font-size: 15px;
}

.series-link-grid span {
  color: var(--muted);
  font-size: 13px;
}

@media (prefers-reduced-motion: reduce) {
  .series-link-grid a {
    transition: none;
  }
}

/* Description column used when a manufacturer publishes no comparable specs. */
.series-summary {
  min-width: 260px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* Series hub: 67 manufacturer ranges grouped by category. */
.series-hub {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  margin: 2rem 0;
}
.series-group h2 {
  font-size: 1.05rem;
  margin: 0 0 0.6rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line, rgba(0, 0, 0, 0.12));
}
.series-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}
.series-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}
.series-list small {
  color: var(--muted, #6b7280);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Homepage resource row: sizing tools + the series hub. */
.resource-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
}
.resource-card {
  border: 1px solid var(--line, rgba(0, 0, 0, 0.12));
  border-radius: var(--radius, 12px);
  padding: 1.25rem;
  background: var(--surface, #fff);
}
.resource-card h3 {
  font-size: 1.02rem;
  margin: 0.4rem 0 0.5rem;
  line-height: 1.35;
}
.resource-card p {
  margin: 0;
  color: var(--muted, #6b7280);
  font-size: 0.92rem;
}
