:root {
  --ink: #111418;
  --muted: #5f6973;
  --line: #e7e9eb;
  --paper: #ffffff;
  --panel: #f6f7f8;
  --charcoal: #0d1014;
  --amber: #f2a02d;
  --teal: #222b33;
  --red: #e13b2d;
  --green: #4f6751;
  --mist: #f1f1ed;
  --blue: #192837;
  --shadow: 0 22px 56px rgba(7, 10, 14, 0.16);
  --soft-shadow: 0 14px 34px rgba(7, 10, 14, 0.09);
  --quiet-shadow: 0 8px 22px rgba(7, 10, 14, 0.06);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  background: #f8fafb;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

a,
button {
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

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

h1,
h2,
h3,
p,
dl {
  margin-top: 0;
}

h1,
h2,
h3,
strong,
dt {
  line-height: 1.08;
}

h1 {
  max-width: 920px;
  font-size: clamp(38px, 4.3vw, 60px);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(28px, 3.7vw, 50px);
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

.site-header {
  position: fixed;
  z-index: 30;
  inset: 32px 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, auto) 1fr minmax(190px, 270px) auto auto auto;
  align-items: center;
  gap: 16px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.985);
  border-bottom: 1px solid rgba(231, 233, 235, 0.95);
  box-shadow: 0 14px 30px rgba(7, 10, 14, 0.09);
  backdrop-filter: blur(18px);
}

.top-strip {
  position: fixed;
  z-index: 31;
  inset: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  min-height: 32px;
  padding: 7px clamp(18px, 4vw, 56px);
  color: #d7dde0;
  font-size: 12px;
  font-weight: 750;
  background: linear-gradient(90deg, #06111d, #0d1824 58%, #17232f);
}

.top-strip a {
  color: #f36a4f;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  display: block;
  width: 170px;
  height: 52px;
  overflow: hidden;
  color: transparent;
  font-size: 0;
  line-height: 0;
  background: url("assets/brand/richall-logo.svg") center / contain no-repeat;
  border-radius: 0;
  flex: 0 0 auto;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
}

.brand small {
  color: #71818a;
  font-size: 10px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(8px, 1.25vw, 20px);
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  padding: 10px 0;
  white-space: nowrap;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
}

.nav a:hover,
.nav a.active {
  color: var(--red);
}

.site-search {
  display: flex;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
  overflow: hidden;
}

.site-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 10px 12px;
}

.site-search button {
  border: 0;
  padding: 0 14px;
  color: var(--paper);
  font-weight: 800;
  background: var(--charcoal);
  cursor: pointer;
}

.site-search .site-image-search-button {
  color: var(--charcoal);
  background: var(--panel);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.site-search .site-image-search-button:hover,
.site-search .site-image-search-button:focus-visible {
  color: var(--paper);
  background: var(--red);
}

body.image-search-open {
  overflow: hidden;
}

.image-search-modal[hidden] {
  display: none;
}

.image-search-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.image-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 13, 0.72);
  backdrop-filter: blur(5px);
}

.image-search-dialog {
  position: relative;
  width: min(1080px, 100%);
  max-height: min(88vh, 900px);
  overflow: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 34px 100px rgba(7, 10, 14, 0.35);
}

.image-search-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  padding: 28px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(13, 16, 20, 0.98), rgba(25, 40, 55, 0.92)),
    linear-gradient(90deg, rgba(225, 59, 45, 0.18), transparent);
}

.image-search-head .eyebrow {
  color: #ffcabf;
}

.image-search-head h2 {
  max-width: 760px;
  margin: 4px 0 10px;
  font-size: 34px;
  line-height: 1.08;
}

.image-search-head p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.image-search-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--paper);
  font-size: 22px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
}

.image-search-workbench {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(320px, 1fr);
  gap: 18px;
  padding: 24px 28px 12px;
  background: var(--panel);
}

.image-drop-zone {
  position: relative;
  min-height: 236px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 24px;
  color: var(--charcoal);
  text-align: center;
  background: var(--paper);
  border: 2px dashed #c7ced5;
  border-radius: 8px;
  cursor: pointer;
}

.image-drop-zone input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.image-drop-zone:hover,
.image-drop-zone.is-dragging {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(225, 59, 45, 0.08);
  transform: translateY(-1px);
}

.image-drop-zone strong {
  font-size: 18px;
}

.image-drop-zone small {
  color: var(--muted);
  font-size: 13px;
}

.image-drop-visual {
  position: relative;
  width: 64px;
  height: 52px;
  border: 3px solid var(--red);
  background: linear-gradient(180deg, #f8fafb, #ffffff);
}

.image-drop-visual::before,
.image-drop-visual::after {
  content: "";
  position: absolute;
  background: var(--charcoal);
}

.image-drop-visual::before {
  width: 14px;
  height: 14px;
  right: 10px;
  top: 8px;
  border-radius: 50%;
}

.image-drop-visual::after {
  left: 9px;
  right: 9px;
  bottom: 8px;
  height: 13px;
  clip-path: polygon(0 100%, 30% 30%, 48% 62%, 68% 8%, 100% 100%);
}

.image-search-preview {
  min-height: 236px;
  display: grid;
  place-items: center;
  padding: 14px;
  color: var(--muted);
  background:
    linear-gradient(45deg, #eef1f3 25%, transparent 25% 75%, #eef1f3 75%),
    linear-gradient(45deg, #eef1f3 25%, transparent 25% 75%, #eef1f3 75%),
    #ffffff;
  background-position: 0 0, 12px 12px;
  background-size: 24px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.image-search-preview img {
  max-width: 100%;
  max-height: 310px;
  object-fit: contain;
  background: var(--paper);
  box-shadow: var(--soft-shadow);
}

.image-search-text-hint {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 28px 16px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 700;
  background: var(--panel);
}

.image-search-text-hint input {
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.image-search-keywords {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0 28px 16px;
  color: var(--charcoal);
  background: var(--panel);
}

.image-search-keyword-head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: baseline;
}

.image-search-keyword-head strong {
  font-size: 14px;
  font-weight: 850;
}

.image-search-keyword-head small,
.image-search-keywords > span {
  color: var(--muted);
  font-size: 12px;
}

.image-search-keyword-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.image-search-keyword-chips button {
  min-height: 32px;
  padding: 0 11px;
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 750;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.image-search-keyword-chips button:hover,
.image-search-keyword-chips button.is-active {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

.image-search-keywords.is-loading,
.image-search-keywords.is-error {
  grid-template-columns: auto 1fr;
  align-items: center;
  color: var(--muted);
}

.image-search-keywords.is-error {
  color: var(--red);
}

.image-search-status {
  margin: 0 28px;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 13px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.image-search-status.is-error {
  color: var(--red);
}

.image-search-actions {
  display: flex;
  justify-content: flex-end;
  padding: 14px 28px 0;
}

.image-search-results {
  padding: 22px 28px 30px;
}

.image-search-results-head {
  margin-bottom: 14px;
}

.image-search-results-head h3 {
  margin: 0;
  font-size: 22px;
}

.image-search-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.image-match-card {
  display: grid;
  grid-template-rows: 176px 1fr;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.image-match-media {
  display: grid;
  place-items: center;
  padding: 14px;
  background: #f6f8f9;
}

.image-match-media img {
  max-width: 100%;
  max-height: 148px;
  object-fit: contain;
}

.image-match-body {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 15px;
}

.image-match-body > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.image-match-term {
  color: #65707a;
  font-size: 11px;
  font-weight: 650;
}

.image-match-body h4 {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
}

.image-match-body p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.image-match-score {
  display: grid;
  grid-template-columns: minmax(80px, 1fr) auto;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.image-match-score::before {
  content: "";
  grid-column: 1;
  grid-row: 1;
  height: 7px;
  background: #e5e9ed;
}

.image-match-score span {
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  height: 7px;
  background: var(--red);
}

.image-match-score strong {
  grid-column: 2;
  grid-row: 1;
  white-space: nowrap;
}

.image-match-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.image-match-links a,
.image-match-links button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
}

.image-match-links button {
  color: var(--paper);
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.image-search-empty {
  padding: 26px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.language-switcher {
  position: relative;
  z-index: 35;
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 42px;
  min-width: 88px;
  padding: 0 12px;
  color: var(--charcoal);
  font-weight: 850;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
}

.language-trigger:hover,
.language-switcher.is-open .language-trigger {
  border-color: var(--red);
  box-shadow: 0 8px 20px rgba(7, 10, 14, 0.12);
}

.language-trigger .chevron {
  color: var(--muted);
  font-size: 15px;
  line-height: 1;
}

.language-trigger .flag,
.language-menu span {
  display: inline-block;
  width: 24px;
  height: 16px;
  flex: 0 0 24px;
  overflow: hidden;
  color: transparent;
  font-size: 0;
  line-height: 1;
  background: #ecece6 center / cover no-repeat;
  border: 1px solid rgba(7, 10, 14, 0.18);
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.language-trigger .flag,
.language-trigger .flag[data-flag-code="gb"],
.language-menu button[data-lang="EN"] span {
  background-image: url("assets/images/flags/gb.svg");
}

.language-trigger .flag[data-flag-code="sa"],
.language-menu button[data-lang="AR"] span {
  background-image: url("assets/images/flags/sa.svg");
}

.language-trigger .flag[data-flag-code="cz"],
.language-menu button[data-lang="CS"] span {
  background-image: url("assets/images/flags/cz.svg");
}

.language-trigger .flag[data-flag-code="nl"],
.language-menu button[data-lang="NL"] span {
  background-image: url("assets/images/flags/nl.svg");
}

.language-trigger .flag[data-flag-code="fr"],
.language-menu button[data-lang="FR"] span {
  background-image: url("assets/images/flags/fr.svg");
}

.language-trigger .flag[data-flag-code="de"],
.language-menu button[data-lang="DE"] span {
  background-image: url("assets/images/flags/de.svg");
}

.language-trigger .flag[data-flag-code="it"],
.language-menu button[data-lang="IT"] span {
  background-image: url("assets/images/flags/it.svg");
}

.language-trigger .flag[data-flag-code="jp"],
.language-menu button[data-lang="JA"] span {
  background-image: url("assets/images/flags/jp.svg");
}

.language-trigger .flag[data-flag-code="kr"],
.language-menu button[data-lang="KO"] span {
  background-image: url("assets/images/flags/kr.svg");
}

.language-trigger .flag[data-flag-code="pl"],
.language-menu button[data-lang="PL"] span {
  background-image: url("assets/images/flags/pl.svg");
}

.language-trigger .flag[data-flag-code="pt"],
.language-menu button[data-lang="PT"] span {
  background-image: url("assets/images/flags/pt.svg");
}

.language-trigger .flag[data-flag-code="ru"],
.language-menu button[data-lang="RU"] span {
  background-image: url("assets/images/flags/ru.svg");
}

.language-trigger .flag[data-flag-code="es"],
.language-menu button[data-lang="ES"] span {
  background-image: url("assets/images/flags/es.svg");
}

.language-trigger .flag[data-flag-code="tr"],
.language-menu button[data-lang="TR"] span {
  background-image: url("assets/images/flags/tr.svg");
}

.language-trigger .flag[data-flag-code="id"],
.language-menu button[data-lang="ID"] span {
  background-image: url("assets/images/flags/id.svg");
}

.language-trigger .flag[data-flag-code="vn"],
.language-menu button[data-lang="VN"] span {
  background-image: url("assets/images/flags/vn.svg");
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 210px;
  max-height: 210px;
  padding: 10px 8px;
  overflow-y: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 18px 40px rgba(7, 10, 14, 0.18);
}

.language-menu[hidden] {
  display: none;
}

.language-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  right: 22px;
  width: 12px;
  height: 12px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  transform: rotate(45deg);
}

.language-menu button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 4px 8px;
  color: #4e555d;
  font-size: 13px;
  font-weight: 850;
  background: transparent;
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}

.language-menu button:hover,
.language-menu button.is-active {
  color: var(--red);
  background: #f5f5f2;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--charcoal);
  border-radius: 6px;
  color: var(--charcoal);
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0;
}

.button.primary,
.header-cta {
  color: var(--paper);
  background: linear-gradient(135deg, #d9251d, #f05d3f);
  border-color: transparent;
  box-shadow: 0 12px 26px rgba(225, 59, 45, 0.26);
}

.button.secondary {
  background: var(--paper);
}

.button.small {
  min-height: 38px;
  width: 100%;
  color: var(--paper);
  background: #111820;
  border-color: #111820;
}

.header-cta {
  min-width: 118px;
  white-space: nowrap;
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(20, 37, 42, 0.14);
}

.button.secondary:hover {
  border-color: var(--red);
  color: var(--red);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 6px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--charcoal);
}

.hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: center;
  min-height: 780px;
  padding: 132px clamp(18px, 5vw, 72px) 28px;
  background:
    linear-gradient(112deg, #0b0e12 0%, #111923 48%, #192734 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -18% -34% 44%;
  height: 68%;
  background: linear-gradient(135deg, rgba(225, 59, 45, 0.34), rgba(255, 255, 255, 0.08));
  transform: skewX(-12deg);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.22;
  pointer-events: none;
}

.hero-copy,
.hero-showcase {
  position: relative;
  z-index: 2;
}

.hero h1,
.hero-text {
  color: var(--paper);
}

.hero-text {
  color: #c7d0d7;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hero-text {
  max-width: 640px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.proof-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 680px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
}

.proof-metrics div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.93);
}

.proof-metrics dt {
  font-size: 28px;
  font-weight: 950;
}

.proof-metrics dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.hero-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}

.hero-product {
  margin: 0;
  min-height: 210px;
  padding: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f2f2ee 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.hero-product-large {
  grid-row: auto;
}

.hero-product img {
  width: 100%;
  height: 148px;
  object-fit: contain;
  filter: drop-shadow(0 16px 22px rgba(20, 37, 42, 0.14));
}

.hero-product-large img {
  height: 148px;
}

.hero-product figcaption {
  margin-top: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(19, 34, 38, 0.16);
}

.section {
  padding: 76px clamp(18px, 5vw, 72px);
}

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

.section-heading h2 {
  max-width: 820px;
}

.focus-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: 48px;
  background:
    linear-gradient(135deg, rgba(9, 12, 16, 0.99), rgba(24, 35, 47, 0.98));
}

.focus-band h2,
.focus-band p {
  color: var(--paper);
}

.focus-band .eyebrow {
  color: #ff6a57;
}

.focus-band > p {
  align-self: end;
  font-size: 18px;
}

.all-category-bar,
.related-search {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 18px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(20, 37, 42, 0.03);
}

.all-category-bar strong,
.related-search strong {
  margin-right: 8px;
  padding: 9px 14px;
  color: var(--paper);
  font-size: 15px;
  background: var(--charcoal);
  border-radius: 4px;
  text-transform: uppercase;
}

.all-category-bar a,
.related-search a {
  padding: 8px 12px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 850;
  background: #f5f5f2;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.all-category-bar a:hover,
.related-search a:hover {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-1px);
}

.category-grid,
.product-list,
.capability-grid,
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.category-tile,
.product-card,
.capability-grid article,
.quality-grid article {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(20, 37, 42, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-tile::before,
.product-card::before {
  content: "";
  display: block;
  height: 4px;
  background: var(--red);
}

.category-tile:hover,
.product-card:hover,
.capability-grid article:hover,
.quality-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 59, 45, 0.34);
  box-shadow: var(--soft-shadow);
}

.category-tile {
  display: grid;
  grid-template-rows: 4px 190px auto auto 1fr;
  min-height: 430px;
  padding-bottom: 22px;
}

.category-tile img {
  width: 100%;
  height: 190px;
  padding: 18px;
  object-fit: contain;
  background: linear-gradient(180deg, #ffffff 0%, #f0f0ed 100%);
}

.category-tile span,
.category-tile strong,
.category-tile p {
  margin-left: 20px;
  margin-right: 20px;
}

.category-tile span {
  margin-top: 18px;
  color: var(--red);
  font-weight: 900;
}

.category-tile strong {
  margin-top: 6px;
  font-size: 22px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(340px, 1fr);
  gap: 54px;
  align-items: center;
}

.split-copy p {
  font-size: 18px;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--charcoal);
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background: var(--amber);
  border: 2px solid var(--charcoal);
}

.process-panel,
.timeline,
.quality-checklist {
  display: grid;
  gap: 12px;
}

.process-panel div,
.timeline article,
.quality-checklist div,
.proof-strip div {
  padding: 22px;
  background: linear-gradient(180deg, #ffffff 0%, var(--panel) 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-panel span,
.timeline span,
.quality-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  color: var(--paper);
  font-weight: 900;
  background: var(--teal);
  border-radius: 6px;
}

.process-panel strong,
.timeline strong,
.quality-checklist strong,
.proof-strip strong {
  display: block;
  font-size: 22px;
}

.process-panel small,
.timeline p,
.quality-checklist span,
.proof-strip span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.oem-preview {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(33, 47, 37, 0.98), rgba(19, 55, 60, 0.96));
}

.oem-preview h2,
.oem-preview p {
  color: var(--paper);
}

.oem-preview .eyebrow {
  color: var(--amber);
}

.growth-stack {
  background: var(--panel);
}

.template-preview {
  background: #fbfcfc;
}

.about-profile {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 0.7fr);
  gap: 46px;
  align-items: center;
  background: var(--paper);
}

.about-copy p {
  font-size: 18px;
}

.about-image {
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f0f0ed 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.about-image img {
  width: 100%;
  height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(7, 10, 14, 0.16));
}

.template-grid,
.principle-grid,
.content-clusters,
.plan-grid,
.ad-product-grid,
.case-flow,
.hot-sales-grid,
.industry-grid,
.proof-card-grid,
.news-grid,
.profile-grid,
.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.template-grid article,
.principle-grid article,
.content-clusters article,
.plan-grid article,
.case-flow article,
.ad-product-grid article,
.hot-sales-grid article,
.industry-grid article,
.proof-card-grid article,
.news-grid article,
.profile-grid article,
.resource-grid article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(20, 37, 42, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.template-grid article:hover,
.principle-grid article:hover,
.content-clusters article:hover,
.plan-grid article:hover,
.case-flow article:hover,
.ad-product-grid article:hover,
.hot-sales-grid article:hover,
.industry-grid article:hover,
.proof-card-grid article:hover,
.news-grid article:hover,
.profile-grid article:hover,
.resource-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 59, 45, 0.34);
  box-shadow: var(--soft-shadow);
}

.template-grid img,
.ad-product-grid img,
.hot-sales-grid img,
.industry-grid img,
.profile-grid img {
  width: 100%;
  height: 190px;
  padding: 18px;
  object-fit: contain;
  background: linear-gradient(180deg, #ffffff 0%, #f0f0ed 100%);
}

.template-grid span,
.template-grid strong,
.template-grid p,
.ad-product-grid strong,
.ad-product-grid span,
.hot-sales-grid span,
.hot-sales-grid strong,
.hot-sales-grid p,
.industry-grid strong,
.industry-grid p,
.industry-grid a {
  margin-left: 20px;
  margin-right: 20px;
}

.template-grid span,
.content-clusters span,
.plan-grid span,
.ad-product-grid span,
.hot-sales-grid span,
.news-grid span,
.profile-grid span,
.resource-grid span {
  display: block;
  margin-top: 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.template-grid strong,
.ad-product-grid strong,
.hot-sales-grid strong,
.industry-grid strong,
.proof-card-grid strong,
.news-grid strong,
.profile-grid strong,
.resource-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
}

.template-grid p,
.ad-product-grid span,
.hot-sales-grid p,
.industry-grid p,
.news-grid p,
.profile-grid p,
.resource-grid p {
  margin-bottom: 20px;
}

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

.language-grid article {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(20, 37, 42, 0.05);
}

.language-grid img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  background: linear-gradient(180deg, #ffffff 0%, #f0f0ed 100%);
  border-radius: 6px;
}

.language-grid span {
  color: var(--red);
  font-size: 12px;
  text-transform: uppercase;
}

.language-grid strong {
  font-size: 22px;
  font-weight: 600;
}

.language-grid p {
  margin: 0;
  color: var(--muted);
}

.hot-sales,
.industry-directory,
.factory-proof,
.company-profile,
.help-preview,
.resource-hub {
  background: #fbfcfc;
}

.hot-sales-grid article,
.industry-grid article,
.profile-grid article {
  display: grid;
  grid-template-rows: 200px auto auto 1fr auto;
}

.hot-sales-grid .button {
  margin: 0 20px 20px;
}

.industry-grid a,
.proof-card-grid a {
  display: inline-flex;
  margin-top: 8px;
  margin-bottom: 20px;
  color: var(--red);
  font-weight: 900;
}

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

.profile-grid article {
  min-height: 360px;
}

.profile-grid img {
  height: 150px;
}

.profile-grid span,
.profile-grid strong,
.profile-grid p {
  margin-left: 16px;
  margin-right: 16px;
}

.profile-grid strong {
  font-size: 19px;
}

.profile-grid p {
  font-size: 14px;
}

.advantage-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 72px);
  background: var(--charcoal);
}

.advantage-strip div {
  min-height: 150px;
  padding: 26px 22px;
  color: var(--paper);
  background: linear-gradient(180deg, #151a22 0%, #0d1014 100%);
  border-top: 4px solid var(--red);
}

.advantage-strip span,
.advantage-strip strong {
  display: block;
}

.advantage-strip span {
  color: #ff6a57;
  font-size: 12px;
  font-weight: 950;
}

.advantage-strip strong {
  margin-top: 10px;
  font-size: 22px;
}

.advantage-strip p {
  margin: 8px 0 0;
  color: #c7d0d7;
}

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

.resource-grid article {
  min-height: 220px;
  padding: 24px;
}

.resource-grid span {
  margin-top: 0;
}

.home-industries {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(9, 12, 16, 0.99), rgba(24, 35, 47, 0.98));
}

.home-industries h2,
.home-industries p {
  color: var(--paper);
}

.home-industries .eyebrow {
  color: #ff6a57;
}

.application-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.application-strip a {
  min-height: 150px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: transform 180ms ease, background-color 180ms ease;
}

.application-strip a:hover {
  transform: translateY(-4px);
  background: rgba(225, 59, 45, 0.2);
}

.application-strip strong,
.application-strip span {
  display: block;
}

.application-strip strong {
  color: var(--paper);
  font-size: 24px;
}

.application-strip span {
  margin-top: 10px;
  color: #d6e1e7;
}

.growth-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.growth-grid article {
  min-height: 250px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1px 0 rgba(20, 37, 42, 0.05);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.growth-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 59, 45, 0.34);
  box-shadow: var(--soft-shadow);
}

.growth-grid article span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--paper);
  font-weight: 950;
  background: var(--red);
  border-radius: 6px;
}

.growth-grid article strong {
  display: block;
  font-size: 23px;
}

.growth-grid article p {
  margin-top: 12px;
}

.seo-map {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: center;
  padding-top: 42px;
  padding-bottom: 42px;
  background:
    linear-gradient(135deg, rgba(9, 12, 16, 0.99), rgba(24, 35, 47, 0.98));
}

.seo-map h2,
.seo-map p {
  color: var(--paper);
}

.seo-map .eyebrow {
  color: #ff6a57;
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.keyword-cloud span {
  padding: 10px 14px;
  color: var(--paper);
  font-weight: 850;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.catalog-media {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(520px, 1.2fr);
  gap: 34px;
  align-items: stretch;
  background: var(--paper);
}

.catalog-media-copy {
  align-self: center;
}

.catalog-media-copy h2 {
  max-width: 720px;
}

.catalog-media-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.catalog-media-grid div {
  min-width: 0;
  padding: 22px 18px;
  background: var(--panel);
}

.catalog-media-grid dt {
  color: var(--red);
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 950;
  line-height: 0.95;
}

.catalog-media-grid dd {
  margin: 12px 0 0;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.capability-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.capability-grid article {
  padding: 26px;
  color: var(--ink);
}

.capability-grid strong {
  display: block;
  font-size: 22px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 72px);
  color: var(--paper);
  background: linear-gradient(90deg, #10171a, #14252a);
}

.footer p {
  max-width: 580px;
  margin-bottom: 0;
  color: #c7d0d7;
}

.footer-expanded {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) minmax(150px, 0.7fr) minmax(150px, 0.7fr) minmax(220px, 0.8fr);
  align-items: start;
}

.footer-expanded strong,
.footer-expanded a {
  display: block;
}

.footer-expanded strong {
  margin-bottom: 12px;
}

.footer-expanded a {
  margin: 7px 0;
  color: #c7d0d7;
  font-weight: 750;
}

.footer-expanded a:hover {
  color: #ff6a57;
}

.newsletter-form {
  display: grid;
  gap: 10px;
}

.newsletter-form input {
  min-height: 42px;
  padding: 10px 12px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
}

.newsletter-form button {
  min-height: 42px;
  color: var(--paper);
  font-weight: 900;
  background: var(--red);
  border: 0;
  border-radius: 6px;
  cursor: pointer;
}

.home-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(400px, 0.95fr) minmax(520px, 1.05fr);
  gap: clamp(30px, 3.6vw, 64px);
  align-items: center;
  min-height: min(704px, calc(100vh - 72px));
  padding: 110px clamp(28px, 5vw, 88px) 30px;
  padding-left: max(clamp(28px, 5vw, 88px), calc((100vw - 1500px) / 2 + 28px));
  padding-right: max(clamp(28px, 5vw, 88px), calc((100vw - 1500px) / 2 + 28px));
  color: var(--paper);
  background:
    linear-gradient(112deg, rgba(7, 10, 14, 0.99) 0%, rgba(11, 20, 28, 0.98) 49%, rgba(34, 34, 30, 0.96) 100%),
    url("assets/images/products/imported/1601350796036.jpg") right center / contain no-repeat;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.36;
  pointer-events: none;
}

.home-hero::after {
  content: "";
  position: absolute;
  right: -9%;
  bottom: -42%;
  width: 45%;
  height: 82%;
  background: linear-gradient(135deg, rgba(225, 59, 45, 0.44), rgba(242, 160, 45, 0.1));
  transform: skewX(-14deg);
  pointer-events: none;
}

.home-hero-copy,
.home-hero-media {
  position: relative;
  z-index: 1;
}

.home-hero-copy {
  align-self: start;
  max-width: 670px;
  padding-top: clamp(8px, 2.8vh, 34px);
}

.home-hero-media {
  align-self: center;
}

.home-hero h1,
.home-hero .hero-text {
  color: var(--paper);
}

.home-hero h1 {
  max-width: 660px;
  margin-bottom: 16px;
  font-size: clamp(56px, 5.5vw, 88px);
  line-height: 0.94;
}

.home-hero h1 span {
  display: block;
}

.hero-slogan-accent {
  color: #ff6a50;
  text-shadow: 0 18px 42px rgba(225, 59, 45, 0.32);
}

.home-hero .hero-text {
  max-width: 610px;
  color: #d7dde0;
  font-size: 18px;
}

.hero-supplier-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
}

.hero-supplier-line span {
  padding: 7px 10px;
  color: #ffe9e4;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  background: rgba(225, 59, 45, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.hero-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
}

.hero-product-tags span {
  padding: 8px 11px;
  color: #eef5f7;
  font-size: 12px;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
}

.home-hero .hero-actions {
  gap: 10px;
  margin: 20px 0 0;
}

.home-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 700px;
  margin: 16px 0 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.home-stats div {
  padding: 9px 11px;
  background: rgba(255, 255, 255, 0.94);
}

.home-stats dt {
  color: var(--charcoal);
  font-size: 19px;
  font-weight: 950;
}

.home-stats dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-hero-media {
  display: grid;
  grid-template-columns: minmax(380px, 1fr) 142px;
  gap: 12px;
  align-items: stretch;
  justify-self: end;
  width: min(770px, 100%);
  max-height: 504px;
}

.home-hero-media::before {
  content: "";
  position: absolute;
  inset: -18px -18px 34px 12%;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transform: rotate(-1.2deg);
}

.hero-main-product,
.hero-side-products a {
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f8 100%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-main-product {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 458px;
  padding: 18px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafb 74%, #eef2f4 100%);
}

.hero-main-product::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--amber));
}

.hero-main-product img {
  width: 100%;
  height: clamp(300px, 27vw, 368px);
  min-height: 0;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(7, 10, 14, 0.2));
}

.hero-main-product span,
.hero-side-products span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-main-product strong {
  margin-top: 6px;
  color: var(--charcoal);
  font-size: 20px;
}

.hero-main-product small,
.hero-side-products small {
  margin-top: 6px;
  color: #65707a;
  font-size: 12px;
  font-weight: 750;
}

.hero-main-product-copy {
  position: relative;
  display: grid;
  gap: 3px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.hero-side-products {
  display: grid;
  gap: 12px;
}

.hero-side-products a {
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: 8px;
  min-height: 136px;
  padding: 11px;
}

.hero-side-products img {
  width: 100%;
  height: 76px;
  object-fit: contain;
}

.home-category-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  padding: 16px clamp(18px, 5vw, 72px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(7, 10, 14, 0.07);
}

.home-category-ribbon strong {
  margin-right: 6px;
  padding: 9px 14px;
  color: var(--paper);
  background: var(--charcoal);
  border-radius: 4px;
  text-transform: uppercase;
}

.home-category-ribbon a {
  padding: 9px 13px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 850;
  background: #f4f4f0;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.home-category-ribbon a:hover {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-1px);
}

.storefront-snapshot {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(520px, 1.18fr);
  gap: 46px;
  align-items: center;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfc 100%);
}

.storefront-copy p {
  max-width: 760px;
  font-size: 18px;
}

.storefront-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.storefront-panel {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 18px;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(13, 16, 20, 0.98), rgba(25, 40, 55, 0.96)),
    url("assets/images/products/imported/1601040425492.jpg") right center / contain no-repeat;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.storefront-panel::after {
  content: "";
  position: absolute;
  inset: auto -12% -38% auto;
  width: 48%;
  height: 60%;
  background: linear-gradient(135deg, rgba(225, 59, 45, 0.36), rgba(242, 160, 45, 0.12));
  transform: skewX(-16deg);
  pointer-events: none;
}

.storefront-profile-card,
.storefront-main-products,
.storefront-category-list {
  position: relative;
  z-index: 1;
}

.storefront-profile-card {
  max-width: 620px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(8px);
}

.storefront-profile-card span {
  color: #ff6a57;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.storefront-profile-card strong {
  display: block;
  margin-top: 10px;
  color: var(--paper);
  font-size: 34px;
}

.storefront-profile-card p {
  max-width: 560px;
  margin: 12px 0 0;
  color: #d7dde0;
}

.storefront-main-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.storefront-main-products a {
  display: grid;
  grid-template-rows: 132px auto;
  gap: 10px;
  min-height: 190px;
  padding: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
}

.storefront-main-products img {
  width: 100%;
  height: 132px;
  object-fit: contain;
}

.storefront-main-products span {
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 900;
}

.storefront-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.storefront-category-list span {
  padding: 8px 10px;
  color: #eef5f7;
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.home-about {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(360px, 1fr);
  gap: 46px;
  align-items: center;
  background: var(--paper);
}

.home-about-copy p {
  max-width: 760px;
  font-size: 18px;
}

.home-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.home-about-media {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.home-company-video-card {
  overflow: hidden;
  margin: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f6f7f8 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.home-company-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #0b0e12;
}

.home-company-video-card figcaption {
  display: grid;
  gap: 5px;
  padding: 14px 16px 16px;
}

.home-company-video-card strong {
  color: var(--charcoal);
  font-size: 18px;
}

.home-company-video-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.supplier-signals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.home-about-media .supplier-signals {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.supplier-signals div {
  min-height: 150px;
  padding: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f0 100%);
}

.home-about-media .supplier-signals div {
  min-height: 118px;
  padding: 16px;
}

.supplier-signals span {
  color: var(--red);
  font-size: 26px;
  font-weight: 950;
  line-height: 1;
}

.supplier-signals strong {
  display: block;
  margin-top: 14px;
  color: var(--charcoal);
  font-size: 19px;
}

.home-about-media .supplier-signals strong {
  font-size: 15px;
}

.home-about-media .supplier-signals p {
  font-size: 12px;
}

.supplier-signals p {
  margin: 10px 0 0;
}

.home-profile-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-profile-grid article {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  min-height: 230px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-profile-grid article:hover,
.home-category-grid a:hover,
.home-product-grid article:hover,
.home-application-grid a:hover,
.home-quality-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(225, 59, 45, 0.34);
  box-shadow: var(--soft-shadow);
}

.home-profile-grid img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  padding: 16px;
  object-fit: contain;
  background: linear-gradient(180deg, #ffffff 0%, #efefea 100%);
  grid-row: span 3;
}

.home-profile-grid span,
.home-profile-grid strong,
.home-profile-grid p {
  margin-left: 16px;
  margin-right: 16px;
}

.home-profile-grid span {
  margin-top: 24px;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
}

.home-profile-grid strong {
  margin-top: 6px;
  font-size: 19px;
}

.home-profile-grid p {
  margin-bottom: 18px;
  font-size: 14px;
}

.home-catalog {
  background: #fbfcfc;
}

.home-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-category-grid a {
  display: grid;
  grid-template-rows: 210px auto auto 1fr;
  min-height: 420px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-category-grid a:first-child {
  grid-column: span 2;
  grid-template-columns: minmax(300px, 0.9fr) minmax(220px, 1fr);
  grid-template-rows: auto auto 1fr;
  min-height: 420px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(246, 247, 244, 0.96)),
    url("assets/images/products/imported/1601040425492.jpg") right center / contain no-repeat;
}

.home-category-grid img {
  width: 100%;
  height: 210px;
  padding: 20px;
  object-fit: contain;
  background: linear-gradient(180deg, #ffffff 0%, #efefea 100%);
}

.home-category-grid a:first-child img {
  grid-row: span 3;
  height: 100%;
  min-height: 420px;
  padding: 26px;
}

.home-category-grid span,
.home-category-grid strong,
.home-category-grid p {
  margin-left: 20px;
  margin-right: 20px;
}

.home-category-grid a:first-child span {
  margin-top: 46px;
}

.home-category-grid a:first-child strong {
  max-width: 360px;
  font-size: 34px;
}

.home-category-grid a:first-child p {
  max-width: 420px;
  font-size: 17px;
}

.home-category-grid span {
  margin-top: 18px;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.home-category-grid strong {
  margin-top: 6px;
  font-size: 23px;
}

.home-category-grid p {
  margin-bottom: 22px;
}

.catalog-evidence {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(560px, 1.28fr);
  gap: 42px;
  align-items: start;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(9, 12, 16, 0.99), rgba(32, 43, 50, 0.98));
}

.catalog-evidence h2,
.catalog-evidence p {
  color: var(--paper);
}

.catalog-evidence .eyebrow {
  color: #ff6a57;
}

.catalog-evidence-copy p {
  max-width: 660px;
  color: #d7dde0;
  font-size: 18px;
}

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

.catalog-evidence-grid article {
  min-height: 178px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
}

.catalog-evidence-grid span {
  color: var(--amber);
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
}

.catalog-evidence-grid strong {
  display: block;
  margin-top: 14px;
  color: var(--paper);
  font-size: 20px;
}

.catalog-evidence-grid p {
  margin: 10px 0 0;
  color: #d7dde0;
  font-size: 14px;
}

.catalog-feature-strip {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 6px;
}

.catalog-feature-strip span {
  padding: 9px 12px;
  color: var(--paper);
  font-size: 12px;
  font-weight: 850;
  background: rgba(225, 59, 45, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.home-products {
  background: var(--panel);
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-product-grid article {
  display: grid;
  grid-template-rows: 280px auto auto 1fr auto auto;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-product-grid img {
  width: 100%;
  height: 280px;
  padding: 18px;
  object-fit: contain;
  background: linear-gradient(180deg, #ffffff 0%, #efefea 100%);
}

.home-product-grid span,
.home-product-grid h3,
.home-product-grid p,
.home-product-grid dl {
  margin-left: 20px;
  margin-right: 20px;
}

.home-product-grid span {
  margin-top: 20px;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.home-product-grid h3 {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 22px;
}

.home-product-grid p {
  margin-top: 12px;
}

.home-product-grid dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 4px;
  margin-bottom: 18px;
  background: var(--line);
  border: 1px solid var(--line);
}

.home-product-grid dl div {
  padding: 12px;
  background: #f7f7f4;
}

.home-product-grid dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-product-grid dd {
  margin: 4px 0 0;
  color: var(--charcoal);
  font-weight: 850;
}

.home-product-grid .button {
  margin: 0 20px 20px;
}

.home-video-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: center;
  background: var(--paper);
}

.home-video-copy p {
  max-width: 720px;
  font-size: 18px;
}

.home-video-card {
  padding: 20px;
  background: #10151b;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.home-video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #050608;
  border-radius: 6px;
}

.home-video-card strong,
.home-video-card p {
  display: block;
  margin: 14px 4px 0;
  color: var(--paper);
}

.home-video-card p {
  color: #c7d0d7;
}

.home-applications {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(12, 16, 20, 0.98), rgba(34, 43, 51, 0.98));
}

.home-applications h2,
.home-applications p {
  color: var(--paper);
}

.home-application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-application-grid a {
  min-height: 220px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-application-grid span {
  color: #ff6a57;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.home-application-grid strong {
  display: block;
  margin-top: 12px;
  color: var(--paper);
  font-size: 23px;
}

.home-application-grid p {
  margin: 12px 0 0;
  color: #d7dde0;
}

.home-oem {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1fr);
  gap: 44px;
  align-items: stretch;
  background: #fbfcfc;
}

.home-oem-panel {
  padding: 34px;
  color: var(--paper);
  background: linear-gradient(135deg, #17221c, #13373c);
  border-radius: 8px;
}

.home-oem-panel h2,
.home-oem-panel p {
  color: var(--paper);
}

.home-oem-panel .eyebrow {
  color: var(--amber);
}

.home-oem-steps {
  display: grid;
  gap: 12px;
}

.home-oem-steps div {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 8px 18px;
  align-items: start;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.home-oem-steps span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--paper);
  font-weight: 950;
  background: var(--red);
  border-radius: 8px;
}

.home-oem-steps strong {
  font-size: 23px;
}

.home-oem-steps p {
  margin: 0;
}

.home-quality {
  background: var(--paper);
}

.home-quality-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.home-quality-grid article {
  min-height: 240px;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f0 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.home-quality-grid span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--paper);
  font-weight: 950;
  background: var(--charcoal);
  border-radius: 8px;
}

.home-quality-grid strong {
  display: block;
  margin-top: 18px;
  font-size: 23px;
}

.home-quality-grid p {
  margin-bottom: 0;
}

.page-hero {
  min-height: 460px;
  display: flex;
  align-items: end;
  padding: 172px clamp(18px, 5vw, 72px) 72px;
  color: var(--paper);
  background: #0d1014;
  overflow: hidden;
}

.page-hero h1,
.page-hero p {
  color: var(--paper);
}

.page-hero p {
  max-width: 760px;
  font-size: 18px;
}

.product-hero {
  background:
    linear-gradient(90deg, rgba(9, 12, 16, 0.94), rgba(13, 16, 20, 0.62)),
    url("assets/images/products/magnetic-work-light.jpg") right center / contain no-repeat #20262d;
}

.oem-hero {
  background:
    linear-gradient(90deg, rgba(9, 12, 16, 0.94), rgba(13, 16, 20, 0.62)),
    url("assets/images/products/usb-torch.jpg") right center / contain no-repeat #20262d;
}

.quality-hero {
  background:
    linear-gradient(90deg, rgba(9, 12, 16, 0.94), rgba(13, 16, 20, 0.62)),
    url("assets/images/products/headlamp-cob.jpg") right center / contain no-repeat #20262d;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(9, 12, 16, 0.94), rgba(13, 16, 20, 0.62)),
    url("assets/images/products/solar-pir-light.jpg") right center / contain no-repeat #20262d;
}

.growth-hero {
  background:
    linear-gradient(90deg, rgba(9, 12, 16, 0.94), rgba(13, 16, 20, 0.62)),
    url("assets/images/products/inspection-worklight.jpg") right center / contain no-repeat #20262d;
}

.industries-hero {
  background:
    linear-gradient(90deg, rgba(9, 12, 16, 0.94), rgba(13, 16, 20, 0.62)),
    url("assets/images/products/camping-lantern.jpg") right center / contain no-repeat #20262d;
}

.solutions-hero {
  background:
    linear-gradient(90deg, rgba(9, 12, 16, 0.94), rgba(13, 16, 20, 0.62)),
    url("assets/images/products/camping-lantern.jpg") right center / contain no-repeat #20262d;
}

.insights-hero {
  background:
    linear-gradient(90deg, rgba(9, 12, 16, 0.94), rgba(13, 16, 20, 0.62)),
    url("assets/images/products/aluminum-flashlight.jpg") right center / contain no-repeat #20262d;
}

.resources-hero {
  background:
    linear-gradient(90deg, rgba(9, 12, 16, 0.94), rgba(13, 16, 20, 0.62)),
    url("assets/images/products/desk-reading-light.jpg") right center / contain no-repeat #20262d;
}

.template-principles,
.content-system,
.ad-products {
  background: var(--panel);
}

.principle-grid article,
.content-clusters article,
.plan-grid article,
.case-flow article {
  padding: 24px;
}

.principle-grid article span,
.case-flow article span,
.plan-grid article span {
  display: inline-grid;
  place-items: center;
  min-width: 40px;
  height: 34px;
  margin: 0 0 18px;
  padding: 0 10px;
  color: var(--paper);
  font-weight: 950;
  background: var(--teal);
  border-radius: 6px;
}

.principle-grid article strong,
.content-clusters article strong,
.plan-grid article strong,
.case-flow article strong {
  display: block;
  font-size: 23px;
}

.principle-grid article a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--red);
  font-weight: 900;
}

.solution-cards {
  display: grid;
  gap: 24px;
}

.solution-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: center;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.solution-card.reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(280px, 0.75fr);
}

.solution-card.reverse img {
  order: 2;
}

.solution-card img {
  width: 100%;
  min-height: 310px;
  object-fit: contain;
  padding: 24px;
  background: linear-gradient(180deg, #ffffff 0%, var(--panel) 100%);
  border-radius: 8px;
}

.solution-card h2 {
  font-size: clamp(28px, 3vw, 44px);
}

.case-style {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: 44px;
  background: #eef5f4;
}

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

.ad-hero {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(340px, 480px);
  gap: 48px;
  align-items: center;
  min-height: 100vh;
  padding: 164px clamp(18px, 5vw, 72px) 70px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.98), rgba(242, 242, 238, 0.9)),
    url("assets/images/products/headlamp-cob.jpg") left bottom / 48% auto no-repeat #f5f7f8;
}

.ad-copy {
  padding-top: 50px;
}

.ad-copy h1 {
  max-width: 860px;
  font-size: clamp(42px, 5vw, 72px);
}

.ad-copy > p {
  max-width: 720px;
  font-size: 18px;
}

.ad-form {
  background: var(--paper);
  box-shadow: var(--shadow);
}

.ad-metrics {
  max-width: 620px;
}

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

.ad-conversion {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 0.9fr);
  gap: 42px;
}

.quote-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(340px, 1fr);
  gap: 42px;
  align-items: start;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(9, 12, 16, 0.99), rgba(24, 35, 47, 0.98));
}

.quote-band h2,
.quote-band p {
  color: var(--paper);
}

.quote-band .eyebrow {
  color: #ff6a57;
}

.mini-rfq {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 24px;
  color: var(--charcoal);
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mini-rfq label {
  display: grid;
  gap: 7px;
  font-weight: 850;
}

.mini-rfq label:nth-last-of-type(1),
.mini-rfq button {
  grid-column: 1 / -1;
}

.conversion-panel,
.faq-panel,
.checklist-preview {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.faq-panel details {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.faq-panel details:first-of-type {
  border-top: 0;
}

.faq-panel summary {
  color: var(--charcoal);
  font-weight: 950;
  cursor: pointer;
}

.faq-panel p {
  margin: 10px 0 0;
}

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

.content-clusters span {
  margin: 0 0 14px;
}

.lead-magnet {
  background: #fbfcfc;
}

.checklist-preview strong {
  display: block;
  margin-bottom: 18px;
  font-size: 28px;
}

.checklist-preview ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
  color: var(--charcoal);
  font-weight: 750;
}

.publishing-plan {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: start;
  background: #eef5f4;
}

.application-fit {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: start;
}

.fit-table {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.proof-card-grid article,
.news-grid article {
  padding: 24px;
}

.factory-proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 1fr);
  gap: 42px;
}

.news-preview {
  background: #eef5f4;
}

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

.service-value {
  background: var(--panel);
}

.deliverables {
  background: #eef5f4;
}

.deliverable-table {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: 8px;
}

.table-row {
  display: grid;
  grid-template-columns: 190px 1fr 210px;
  gap: 1px;
  background: var(--line);
}

.table-row span {
  display: block;
  padding: 16px;
  background: var(--paper);
}

.table-row span:first-child,
.table-row span:last-child {
  font-weight: 900;
}

.table-head span {
  color: var(--paper);
  font-weight: 950;
  background: var(--charcoal);
}

.catalog-tools {
  padding-bottom: 32px;
  background: var(--panel);
}

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

.catalog-sidebar {
  position: sticky;
  top: 132px;
  display: grid;
  gap: 18px;
}

.catalog-top-pick {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 0 22px;
  color: var(--charcoal);
  font-size: 24px;
  font-weight: 650;
  text-align: left;
  background: linear-gradient(135deg, #eef5fb 0%, #f8fbfd 100%);
  border: 0;
  border-radius: 8px;
  box-shadow: var(--quiet-shadow);
  cursor: pointer;
}

.catalog-top-pick span {
  width: 36px;
  height: 36px;
  background: #9bbce1;
  border-radius: 999px;
}

.catalog-category-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  border-top: 3px solid var(--charcoal);
  box-shadow: var(--quiet-shadow);
  overflow: hidden;
}

.catalog-category-panel h2 {
  margin: 0;
  padding: 22px 24px;
  font-size: 24px;
  border-bottom: 1px solid var(--line);
}

.catalog-category-list {
  display: grid;
  padding: 16px 0;
}

.catalog-category-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 40px;
  padding: 8px 24px;
  color: #29323a;
  font-size: 16px;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.category-count {
  min-width: 30px;
  padding: 2px 7px;
  color: #63707d;
  font-size: 12px;
  font-weight: 400;
  text-align: center;
  background: #f2f4f5;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.catalog-category-list button.active,
.catalog-category-list button:hover,
.catalog-top-pick.active {
  color: var(--red);
}

.catalog-category-list button.active .category-count,
.catalog-category-list button:hover .category-count {
  color: var(--red);
  border-color: rgba(229, 57, 53, 0.35);
}

.catalog-main {
  min-width: 0;
}

.catalog-tools {
  padding: 26px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--quiet-shadow);
}

.catalog-main-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
}

.catalog-main-head h2 {
  margin: 0;
  font-size: 30px;
}

.catalog-controls {
  display: grid;
  grid-template-columns: minmax(260px, 420px) auto 120px;
  gap: 14px;
  align-items: end;
}

.catalog-search,
.page-size-control {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 700;
}

.catalog-search input,
.page-size-control select,
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea,
.mini-rfq input,
.mini-rfq select,
.mini-rfq textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.catalog-search input:focus,
.page-size-control select:focus,
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus,
.mini-rfq input:focus,
.mini-rfq select:focus,
.mini-rfq textarea:focus {
  outline: 3px solid rgba(8, 127, 136, 0.13);
  border-color: var(--teal);
}

.catalog-image-search-button {
  min-height: 48px;
  align-self: end;
  padding: 0 16px;
  color: var(--paper);
  font-weight: 800;
  white-space: nowrap;
  background: var(--charcoal);
  border: 1px solid var(--charcoal);
  border-radius: 6px;
  cursor: pointer;
}

.catalog-image-search-button:hover,
.catalog-image-search-button:focus-visible {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-1px);
}

.inquiry-form textarea {
  resize: vertical;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-bar button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--charcoal);
  font-weight: 700;
  cursor: pointer;
}

.filter-bar button.active,
.filter-bar button:hover {
  border-color: var(--red);
  color: var(--paper);
  background: var(--red);
}

.catalog-count {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.catalog-chips {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.catalog-chips button {
  min-height: 38px;
  padding: 0 18px;
  color: var(--charcoal);
  font-weight: 700;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.product-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-top: 18px;
}

.catalog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 30px 0 8px;
}

.catalog-pagination button {
  min-height: 42px;
  padding: 0 18px;
  color: var(--charcoal);
  font-weight: 800;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.catalog-pagination button:hover:not(:disabled) {
  color: var(--paper);
  background: var(--red);
  border-color: var(--red);
}

.catalog-pagination button:disabled {
  color: #a4aab0;
  cursor: not-allowed;
  background: #f1f2f3;
}

.catalog-pagination span {
  min-width: 120px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.product-card {
  display: grid;
  grid-template-rows: 4px 340px 1fr;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--quiet-shadow);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(225, 59, 45, 0.28);
  box-shadow: var(--soft-shadow);
}

.product-card.is-hidden {
  display: none;
}

.product-image {
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f3f5f6 100%);
}

.product-image img {
  width: 100%;
  height: 340px;
  object-fit: contain;
  transform: scale(1.22);
  transform-origin: center;
}

.product-body {
  display: grid;
  grid-template-rows: auto minmax(76px, 1fr) auto auto;
  padding: 18px;
}

.product-body > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-body h2 {
  margin: 8px 0 10px;
  display: -webkit-box;
  overflow: hidden;
  overflow-wrap: anywhere;
  font-size: 19px;
  line-height: 1.18;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-title-link {
  color: inherit;
  text-decoration: none;
}

.product-title-link:hover {
  color: var(--red);
}

.product-body p {
  display: -webkit-box;
  overflow: hidden;
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-media-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.product-media-badges span {
  padding: 5px 7px;
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 700;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.product-body dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 16px 0;
  background: var(--line);
}

.product-card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.product-source-link,
.product-price {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.product-source-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-price {
  display: block;
  margin-top: 10px;
  color: var(--red);
}

.product-detail-page {
  padding-top: 124px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafb 58%, #ffffff 100%);
}

.product-detail-page-nav,
.product-detail-page-shell {
  width: min(1280px, calc(100vw - 40px));
  margin-right: auto;
  margin-left: auto;
}

.product-detail-page-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.product-detail-page-nav a {
  color: var(--red);
  text-decoration: none;
}

.product-detail-page-nav strong {
  font-weight: 500;
}

.product-detail-page-shell {
  padding: 20px 0 76px;
}

.product-detail-page .product-detail-commerce {
  clear: none;
}

.product-detail-page-empty {
  min-height: 42vh;
}

.product-detail-modal[hidden] {
  display: none;
}

.product-detail-modal {
  position: fixed;
  z-index: 80;
  inset: 0;
}

.product-detail-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 10, 14, 0.56);
}

.product-detail-panel {
  position: absolute;
  top: 20px;
  left: 50%;
  width: min(1280px, calc(100vw - 40px));
  height: calc(100vh - 40px);
  padding: 24px;
  overflow-y: auto;
  background: var(--paper);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(7, 10, 14, 0.34);
  transform: translateX(-50%);
}

.product-detail-close {
  position: sticky;
  top: 0;
  z-index: 4;
  float: right;
  min-height: 36px;
  padding: 0 12px;
  color: var(--paper);
  font-weight: 900;
  background: var(--charcoal);
  border: 0;
  border-radius: 4px;
  cursor: pointer;
}

.product-detail-commerce {
  clear: both;
  display: grid;
  grid-template-columns: minmax(540px, 0.98fr) minmax(430px, 1fr);
  gap: 30px;
  padding-top: 2px;
}

.product-breadcrumb {
  margin: 4px 0 16px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.product-breadcrumb span {
  margin: 0 7px;
  color: #a5aab0;
}

.product-media-box {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
}

.product-thumb-shell {
  position: relative;
  height: min(600px, calc(100vh - 220px));
  min-height: 430px;
  max-height: 600px;
  overflow: hidden;
}

.product-thumb-rail {
  display: grid;
  align-content: start;
  gap: 12px;
  height: 100%;
  max-height: 600px;
  overflow-y: auto;
  padding: 18px 7px;
  scrollbar-width: none;
  scroll-padding-block: 18px;
}

.product-thumb-rail::-webkit-scrollbar {
  display: none;
}

.product-thumb-scroll {
  position: absolute;
  left: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(227, 227, 224, 0.92);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(7, 10, 14, 0.22);
  cursor: pointer;
  transform: translateX(-50%);
}

.product-thumb-scroll.is-up {
  top: 28px;
}

.product-thumb-scroll.is-down {
  bottom: 28px;
}

.product-thumb-scroll::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid #6c737a;
  border-left: 3px solid #6c737a;
}

.product-thumb-scroll.is-up::before {
  margin-top: 5px;
  transform: rotate(45deg);
}

.product-thumb-scroll.is-down::before {
  margin-bottom: 5px;
  transform: rotate(225deg);
}

.product-thumb-scroll:hover:not(:disabled) {
  background: var(--paper);
  border-color: var(--charcoal);
  box-shadow: 0 12px 28px rgba(7, 10, 14, 0.26);
}

.product-thumb-scroll:disabled {
  opacity: 0.78;
  cursor: not-allowed;
}

.product-thumb-rail button {
  position: relative;
  width: 108px;
  height: 108px;
  padding: 5px;
  overflow: hidden;
  background: var(--paper);
  border: 2px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(7, 10, 14, 0.05);
  cursor: pointer;
}

.product-thumb-rail button.active,
.product-thumb-rail button:hover {
  border-color: var(--charcoal);
  box-shadow: 0 8px 18px rgba(7, 10, 14, 0.12);
}

.product-thumb-rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.product-thumb-rail span {
  position: absolute;
  right: 5px;
  bottom: 5px;
  padding: 3px 6px;
  color: var(--paper);
  font-size: 11px;
  font-weight: 500;
  background: rgba(7, 10, 14, 0.78);
  border-radius: 3px;
}

.product-media-stage {
  display: grid;
  place-items: center;
  min-height: 560px;
  background: #101216;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--quiet-shadow);
  overflow: hidden;
}

.product-media-stage img,
.product-media-stage video {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: contain;
}

.product-media-stage video {
  height: 560px;
  background: #000;
}

.product-media-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 12px 0 18px;
}

.product-media-tabs span {
  padding: 8px 14px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 500;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.supplier-snapshot {
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--quiet-shadow);
}

.supplier-snapshot strong,
.supplier-snapshot span {
  display: block;
}

.supplier-snapshot span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.supplier-snapshot dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 14px 0 0;
  background: var(--line);
}

.supplier-snapshot dl div {
  padding: 11px;
  background: var(--paper);
}

.supplier-snapshot dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}

.supplier-snapshot dd {
  margin: 4px 0 0;
  font-weight: 400;
}

.product-purchase-panel {
  padding: 24px;
  align-self: start;
  position: sticky;
  top: 124px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.product-purchase-panel h1 {
  margin: 0 0 12px;
  font-size: clamp(24px, 2.25vw, 32px);
  font-weight: 600;
  line-height: 1.14;
}

.product-review-line {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.product-detail-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 18px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.product-detail-summary div {
  min-width: 0;
  padding: 12px;
  background: var(--panel);
}

.product-detail-summary dt {
  color: var(--muted);
  font-size: 11px;
}

.product-detail-summary dd {
  margin: 5px 0 0;
  overflow-wrap: anywhere;
}

.product-price-ladder {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 22px;
  padding: 18px 0 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-price-ladder.single {
  grid-template-columns: minmax(0, 1fr);
}

.product-price-ladder div {
  min-width: 0;
  padding: 12px;
  background: #fff8f7;
  border: 1px solid rgba(225, 59, 45, 0.12);
  border-radius: 7px;
}

.product-price-ladder strong {
  display: block;
  color: var(--red);
  font-size: 24px;
  font-weight: 650;
}

.product-price-ladder span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.product-option-list {
  display: grid;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.product-option-group strong {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.product-option-group div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-option-group span {
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 400;
  background: var(--paper);
  border: 1px solid #a9b0b7;
  border-radius: 5px;
}

.product-customization {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.detail-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.detail-trust-strip span {
  padding: 7px 10px;
  color: #2f3a42;
  font-size: 12px;
  background: #f2f6f7;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.product-customization h3,
.product-purchase-panel section h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
}

.product-customization ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.product-customization li {
  font-weight: 400;
}

.product-customization li span {
  color: var(--muted);
  font-weight: 400;
}

.product-key-attrs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.product-key-attrs div {
  min-width: 0;
  padding: 13px;
  background: var(--panel);
}

.product-key-attrs dt,
.product-list-info dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}

.product-key-attrs dd,
.product-list-info dd {
  margin: 5px 0 0;
  overflow-wrap: anywhere;
  font-weight: 400;
}

.product-list-info dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.product-list-info dl div {
  padding: 13px;
  background: var(--panel);
}

.product-commerce-actions {
  margin-top: 20px;
}

.quick-detail-rfq {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 16px;
  background: linear-gradient(180deg, #f8fafb 0%, #f3f5f6 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quick-detail-rfq input,
.quick-detail-rfq textarea {
  width: 100%;
  padding: 11px 12px;
  color: var(--charcoal);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.quick-detail-rfq textarea {
  resize: vertical;
}

.product-detail-longform {
  clear: both;
  margin-top: 42px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.product-detail-longform section {
  margin-top: 36px;
}

.product-detail-longform h2 {
  margin: 0 0 16px;
  padding-bottom: 10px;
  color: var(--charcoal);
  font-size: 24px;
  font-weight: 550;
  border-bottom: 1px solid #95a3b2;
}

.product-full-table {
  margin: 0;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 8px;
  overflow: hidden;
}

.detail-table-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.8fr) minmax(220px, 1.2fr) minmax(160px, 0.8fr) minmax(220px, 1.2fr);
  min-height: 54px;
  border-bottom: 1px solid var(--line);
}

.detail-table-row dt,
.detail-table-row dd {
  display: flex;
  align-items: center;
  min-width: 0;
  margin: 0;
  padding: 14px 16px;
  overflow-wrap: anywhere;
}

.detail-table-row dt {
  color: #4f5965;
  font-weight: 400;
  background: #f4f5f6;
}

.detail-table-row dd {
  color: var(--charcoal);
  font-weight: 400;
  background: var(--paper);
}

.lead-time-scroll {
  max-width: 100%;
  overflow-x: auto;
}

.lead-time-table {
  width: min(620px, 100%);
  min-width: 520px;
  border-collapse: collapse;
  border: 1px solid var(--line);
}

.lead-time-table th,
.lead-time-table td {
  padding: 14px 16px;
  text-align: left;
  border: 1px solid var(--line);
}

.lead-time-table th {
  color: #4f5965;
  font-weight: 400;
  background: #f4f5f6;
}

.lead-time-table td {
  font-weight: 400;
  background: var(--paper);
}

.detail-custom-lines {
  display: grid;
  gap: 10px;
}

.detail-custom-lines p {
  margin: 0;
  color: var(--charcoal);
  font-weight: 400;
}

.detail-custom-lines span {
  color: var(--muted);
  font-weight: 400;
}

.product-description-text {
  max-width: 900px;
  margin: 0 0 24px;
  color: var(--muted);
  font-weight: 400;
}

.product-description-images {
  display: grid;
  gap: 18px;
  max-width: 980px;
}

.product-description-images img {
  display: block;
  width: 100%;
  max-height: 980px;
  object-fit: contain;
  background: var(--paper);
  border: 1px solid var(--line);
}

.detail-head {
  max-width: 760px;
  padding-right: 92px;
}

.detail-head span,
.product-body > span {
  letter-spacing: 0;
}

.detail-head span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.detail-head h2 {
  margin: 10px 0 12px;
  font-size: clamp(30px, 4vw, 48px);
}

.detail-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 22px 0;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}

.detail-gallery img {
  width: 100%;
  aspect-ratio: 1;
  padding: 10px;
  object-fit: contain;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
}

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

.detail-video-card {
  margin: 0;
  overflow: hidden;
  color: var(--paper);
  background: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.detail-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.detail-video-card figcaption {
  padding: 10px 12px 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 400;
}

.product-detail-panel section {
  margin-top: 28px;
}

.product-detail-panel h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.detail-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.detail-spec-grid div {
  min-width: 0;
  padding: 13px;
  background: var(--panel);
}

.detail-spec-grid dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  text-transform: uppercase;
}

.detail-spec-grid dd {
  margin: 5px 0 0;
  overflow-wrap: anywhere;
  font-weight: 400;
}

.detail-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 14px;
  color: var(--muted);
  background: var(--panel);
}

.product-body dl div {
  padding: 10px;
  background: var(--panel);
}

.product-body dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-body dd {
  margin: 3px 0 0;
  font-weight: 900;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.image-split,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(340px, 1fr);
  gap: 54px;
  align-items: start;
}

.image-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.image-collage img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  padding: 18px;
  background: linear-gradient(180deg, #ffffff 0%, var(--panel) 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.image-collage img:first-child {
  grid-row: span 2;
  height: 452px;
}

.quality-grid article {
  padding: 26px;
}

.quality-grid h2 {
  font-size: 24px;
}

.contact-list {
  display: grid;
  gap: 1px;
  margin-top: 24px;
  background: var(--line);
}

.contact-list p {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  margin: 0;
  padding: 16px;
  background: var(--paper);
}

.contact-list strong {
  color: var(--charcoal);
}

.contact-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.contact-products img {
  height: 130px;
  width: 100%;
  object-fit: contain;
  padding: 12px;
  background: linear-gradient(180deg, #ffffff 0%, var(--panel) 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.inquiry-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, var(--panel) 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: var(--charcoal);
  font-weight: 850;
}

.form-kicker {
  margin-bottom: 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.form-note {
  margin-bottom: 0;
  font-size: 13px;
}

.rfq-drawer {
  position: fixed;
  z-index: 40;
  right: 18px;
  bottom: 18px;
  width: min(360px, calc(100vw - 36px));
}

.rfq-toggle {
  float: right;
  min-height: 46px;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  color: var(--paper);
  font-weight: 950;
  background: var(--charcoal);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.rfq-toggle span {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  margin-left: 8px;
  color: var(--red);
  background: var(--paper);
  border-radius: 999px;
}

.rfq-panel {
  clear: both;
  margin-top: 10px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.rfq-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}

.rfq-panel-head button,
.rfq-remove {
  border: 0;
  color: var(--red);
  font-weight: 900;
  background: transparent;
  cursor: pointer;
}

.rfq-items {
  display: grid;
  gap: 8px;
  max-height: 240px;
  margin-bottom: 14px;
  overflow: auto;
}

.rfq-item,
.rfq-empty {
  padding: 10px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.rfq-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.rfq-item strong,
.rfq-item small {
  display: block;
}

.rfq-item small,
.rfq-empty {
  color: var(--muted);
}

@media (max-width: 1320px) {
  .site-header {
    grid-template-columns: minmax(220px, auto) 1fr auto auto auto;
  }

  .site-search {
    display: none;
  }

  .catalog-layout {
    grid-template-columns: 220px minmax(0, 1fr);
  }

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

  .catalog-image-search-button {
    width: 100%;
  }

  .category-grid,
  .home-profile-grid,
  .home-category-grid,
  .home-product-grid,
  .home-application-grid,
  .home-quality-grid,
  .profile-grid,
  .resource-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }

  .nav {
    position: fixed;
    left: 0;
    right: 0;
    top: 107px;
    display: none;
    padding: 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  body.menu-open .nav {
    display: grid;
    justify-content: stretch;
  }

  .header-cta {
    display: none;
  }

  .language-trigger {
    min-width: 78px;
  }

  .language-menu {
    right: -48px;
  }

  .image-search-modal {
    padding: 14px;
  }

  .image-search-head,
  .image-search-workbench {
    grid-template-columns: 1fr;
  }

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

  .menu-toggle {
    display: block;
  }

  .hero,
  .catalog-media,
  .focus-band,
  .split-section,
  .image-split,
  .contact-layout,
  .about-profile,
  .solution-card,
  .solution-card.reverse,
  .case-style,
  .ad-hero,
  .ad-conversion,
  .publishing-plan,
  .quote-band,
  .application-fit,
  .home-hero,
  .home-about,
  .storefront-snapshot,
  .catalog-evidence,
  .home-video-section,
  .home-oem,
  .factory-proof {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
    padding-top: 124px;
    padding-bottom: 32px;
    padding-left: 18px;
    padding-right: 18px;
    background:
      linear-gradient(135deg, rgba(7, 10, 14, 0.98), rgba(29, 39, 47, 0.97)),
      url("assets/images/products/imported/1601350796036.jpg") right bottom / contain no-repeat;
  }

  .home-hero-copy {
    padding-top: 0;
  }

  .home-hero-media {
    grid-template-columns: 1fr;
    width: 100%;
    max-height: none;
    justify-self: stretch;
  }

  .home-hero-media::before {
    display: none;
  }

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

  .hero {
    min-height: auto;
    padding-top: 144px;
    background: linear-gradient(135deg, #0b0e12 0%, #111923 58%, #192734 100%);
  }

  .hero-showcase {
    grid-template-columns: 1fr 1fr;
  }

  .hero-product-large {
    grid-row: auto;
  }

  .hero-product img,
  .hero-product-large img {
    height: 180px;
  }

  .proof-metrics,
  .proof-strip,
  .catalog-media-grid,
  .catalog-layout,
  .capability-grid,
  .growth-grid,
  .quality-grid,
  .product-list,
  .category-grid,
  .language-grid,
  .template-grid,
  .principle-grid,
  .content-clusters,
  .ad-product-grid,
  .plan-grid,
  .case-flow,
  .hot-sales-grid,
  .industry-grid,
  .proof-card-grid,
  .news-grid,
  .application-strip,
  .home-stats,
  .supplier-signals,
  .storefront-main-products,
  .catalog-evidence-grid,
  .home-category-grid,
  .home-product-grid,
  .home-application-grid,
  .home-quality-grid,
  .profile-grid,
  .resource-grid,
  .advantage-strip,
  .footer-expanded {
    grid-template-columns: 1fr 1fr;
  }

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

  .home-profile-grid {
    grid-template-columns: 1fr;
  }

  .storefront-panel {
    background:
      linear-gradient(135deg, rgba(13, 16, 20, 0.98), rgba(25, 40, 55, 0.96));
  }

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

  .solution-card.reverse img {
    order: 0;
  }

  .ad-hero {
    min-height: auto;
    padding-top: 144px;
    background: #f5f7f8;
  }

  .footer {
    display: grid;
  }

  .catalog-sidebar {
    position: static;
  }

  .product-card {
    grid-template-rows: 4px 320px 1fr;
  }

  .product-image img {
    height: 320px;
    transform: scale(1.22);
  }

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

  .product-detail-commerce {
    grid-template-columns: 1fr;
  }

  .product-purchase-panel {
    position: static;
  }

  .product-media-stage {
    min-height: 430px;
  }

  .product-media-stage video {
    height: 430px;
  }

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

@media (max-width: 560px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .site-header {
    padding: 12px 14px;
  }

  .top-strip {
    justify-content: center;
    gap: 10px;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 11px;
  }

  .top-strip span {
    display: none;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand-mark {
    width: 136px;
    height: 42px;
  }

  .brand > span:not(.brand-mark) {
    display: none;
  }

  .image-search-head,
  .image-search-workbench,
  .image-search-results {
    padding-left: 18px;
    padding-right: 18px;
  }

  .image-search-head h2 {
    font-size: 28px;
  }

  .image-search-text-hint {
    padding-left: 18px;
    padding-right: 18px;
  }

  .image-search-keywords {
    padding-left: 18px;
    padding-right: 18px;
  }

  .image-search-keywords.is-loading,
  .image-search-keywords.is-error {
    grid-template-columns: 1fr;
  }

  .image-search-status {
    margin-left: 18px;
    margin-right: 18px;
  }

  .image-search-actions {
    padding-left: 18px;
    padding-right: 18px;
  }

  .image-search-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .page-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero,
  .home-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-showcase,
  .proof-metrics,
  .proof-strip,
  .catalog-media-grid,
  .catalog-main-head,
  .catalog-category-list,
  .capability-grid,
  .growth-grid,
  .quality-grid,
  .product-list,
  .category-grid,
  .language-grid,
  .contact-products,
  .image-collage,
  .seo-map,
  .template-grid,
  .principle-grid,
  .content-clusters,
  .ad-product-grid,
  .plan-grid,
  .case-flow,
  .hot-sales-grid,
  .industry-grid,
  .proof-card-grid,
  .news-grid,
  .application-strip,
  .home-stats,
  .supplier-signals,
  .storefront-main-products,
  .catalog-evidence-grid,
  .home-profile-grid,
  .home-category-grid,
  .home-product-grid,
  .home-application-grid,
  .home-quality-grid,
  .profile-grid,
  .resource-grid,
  .advantage-strip,
  .footer-expanded,
  .mini-rfq {
    grid-template-columns: 1fr;
  }

  .home-about-media .supplier-signals {
    grid-template-columns: 1fr;
  }

  .home-hero h1 {
    font-size: 34px;
  }

  .hero-side-products {
    grid-template-columns: 1fr;
  }

  .hero-main-product {
    grid-template-rows: auto auto;
    min-height: auto;
  }

  .hero-main-product img {
    height: 260px;
    min-height: 0;
  }

  .storefront-profile-card strong {
    font-size: 26px;
  }

  .storefront-main-products a {
    grid-template-rows: 180px auto;
  }

  .storefront-main-products img {
    height: 180px;
  }

  .catalog-evidence-grid article {
    min-height: auto;
  }

  .home-product-grid article {
    grid-template-rows: 260px auto auto 1fr auto auto;
  }

  .home-product-grid img {
    height: 260px;
  }

  .home-profile-grid article,
  .home-category-grid a:first-child {
    grid-template-columns: 1fr;
  }

  .home-profile-grid img,
  .home-category-grid a:first-child img {
    grid-row: auto;
    min-height: 240px;
    height: 240px;
  }

  .home-category-grid a:first-child {
    grid-column: auto;
    min-height: auto;
  }

  .home-category-grid a:first-child span {
    margin-top: 18px;
  }

  .home-category-grid a:first-child strong {
    font-size: 23px;
  }

  .hero-showcase {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .hero-product {
    min-height: 150px;
    padding: 10px;
  }

  .hero-product img,
  .hero-product-large img {
    height: 108px;
  }

  .hero-product figcaption {
    margin-top: 8px;
    font-size: 13px;
  }

  .product-card {
    grid-template-rows: 4px 280px 1fr;
  }

  .product-image img {
    height: 280px;
    transform: scale(1.14);
  }

  .product-detail-panel {
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding: 22px 18px;
    border-radius: 0;
    transform: none;
  }

  .detail-head {
    padding-right: 0;
  }

  .product-media-box {
    grid-template-columns: 1fr;
  }

  .product-thumb-shell {
    order: 2;
    height: auto;
    min-height: 0;
    max-height: none;
    overflow: hidden;
  }

  .product-thumb-rail {
    display: flex;
    max-width: 100%;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 0 4px;
  }

  .product-thumb-scroll {
    display: none;
  }

  .product-thumb-rail button {
    flex: 0 0 88px;
    width: 88px;
    height: 88px;
  }

  .product-media-stage {
    order: 1;
    min-height: 320px;
  }

  .product-media-stage video {
    height: 320px;
  }

  .supplier-snapshot dl,
  .product-price-ladder,
  .product-key-attrs,
  .product-list-info dl,
  .detail-table-row {
    grid-template-columns: 1fr;
  }

  .detail-table-row dt:empty,
  .detail-table-row dd:empty {
    display: none;
  }

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

  .detail-video-grid,
  .detail-spec-grid {
    grid-template-columns: 1fr;
  }

  .hero .proof-metrics {
    display: none;
  }

  .table-row {
    grid-template-columns: 1fr;
  }

  .image-collage img,
  .image-collage img:first-child {
    height: 220px;
  }

  .contact-list p {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .inquiry-form {
    padding: 18px;
  }
}
