:root {
  --ink: #14171b;
  --muted: #66717f;
  --line: #dde3e8;
  --panel: #f6f8fa;
  --white: #ffffff;
  --steel: #26323d;
  --yellow: #f0b72f;
  --red: #b83831;
  --teal: #167c80;
  --shadow: 0 18px 45px rgba(23, 29, 37, 0.12);
  --soft-shadow: 0 10px 28px rgba(23, 29, 37, 0.08);
}

* {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, Helvetica, sans-serif;
  background: var(--white);
  line-height: 1.5;
}

html[lang="ar"] body {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
}

html[lang="ja"] body,
html[lang="ko"] body {
  line-break: loose;
}

html[dir="rtl"] body {
  direction: ltr;
}

h1,
h2,
h3,
p,
a,
button,
span,
strong,
small,
dt,
dd,
label,
input,
textarea,
select,
figcaption {
  overflow-wrap: anywhere;
}

html[dir="rtl"] .nav,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .hero-content,
html[dir="rtl"] .page-hero,
html[dir="rtl"] .product-browser-copy,
html[dir="rtl"] .catalog-controls-heading,
html[dir="rtl"] .section-heading,
html[dir="rtl"] .quality-proof-copy,
html[dir="rtl"] .people-copy,
html[dir="rtl"] .customer-copy,
html[dir="rtl"] .customer-split-copy,
html[dir="rtl"] .catalog-card-body,
html[dir="rtl"] .visual-search-entry,
html[dir="rtl"] .image-search-dialog,
html[dir="rtl"] .image-match-body,
html[dir="rtl"] .detail-copy,
html[dir="rtl"] .detail-section,
html[dir="rtl"] .rfq-strip,
html[dir="rtl"] .contact,
html[dir="rtl"] .inquiry-form,
html[dir="rtl"] .footer {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .brand {
  direction: ltr;
}

html[dir="rtl"] .nav a::after {
  transform-origin: right;
}

html[dir="rtl"] .site-search,
html[dir="rtl"] .catalog-search,
html[dir="rtl"] .image-search-workbench,
html[dir="rtl"] .image-match-links,
html[dir="rtl"] .page-jump {
  direction: rtl;
}

body.js-enabled .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 480ms ease, transform 480ms ease;
}

body.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

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

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
  background: var(--steel);
  border: 2px solid var(--yellow);
  box-shadow: var(--shadow);
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

html[dir="rtl"] .skip-link {
  right: 12px;
  left: auto;
}

main[tabindex="-1"]:focus {
  outline: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid rgba(240, 183, 47, 0.9);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(250px, auto) 1fr minmax(180px, 240px) auto auto;
  align-items: center;
  gap: 28px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 224, 230, 0.85);
  box-shadow: 0 12px 32px rgba(15, 20, 26, 0.06);
  backdrop-filter: blur(14px);
}

.language-select {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.language-select select {
  min-height: 34px;
  padding: 5px 26px 5px 9px;
  color: var(--steel);
  font-size: 12px;
  font-weight: 800;
  background: var(--white);
  max-width: 190px;
}

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

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 48px;
  flex: 0 0 auto;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

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

.brand small {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: var(--steel);
  font-size: 14px;
  font-weight: 700;
  flex-wrap: nowrap;
  white-space: nowrap;
}

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

.nav a {
  position: relative;
  padding: 10px 0;
}

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

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

.nav a.active {
  color: var(--ink);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.header-cta:hover,
.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--soft-shadow);
}

.site-search {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto;
  align-items: center;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(15, 20, 26, 0.03);
}

.site-search input {
  min-height: 42px;
  border: 0;
  padding: 0 12px;
  font-size: 13px;
}

.site-search button {
  min-height: 42px;
  border: 0;
  padding: 0 12px;
  color: var(--white);
  font-weight: 900;
  background: var(--steel);
  cursor: pointer;
}

.header-cta,
.button.primary {
  color: var(--ink);
  background: var(--yellow);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.08);
}

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

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

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--steel);
}

.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(14, 17, 21, 0.92) 0%, rgba(14, 17, 21, 0.72) 38%, rgba(14, 17, 21, 0.22) 72%, rgba(14, 17, 21, 0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 80px;
  color: var(--white);
}

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

.hero .eyebrow {
  color: var(--yellow);
}

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

h1 {
  max-width: 680px;
  margin-bottom: 22px;
  font-size: 68px;
  line-height: 1;
  overflow-wrap: anywhere;
}

h2 {
  margin-bottom: 18px;
  font-size: 40px;
  line-height: 1.08;
  overflow-wrap: anywhere;
}

h3 {
  font-size: 22px;
  line-height: 1.15;
}

.hero-copy {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 620px;
  margin: 0;
  background: rgba(255, 255, 255, 0.22);
}

.hero-stats div {
  padding: 18px;
  background: rgba(18, 22, 28, 0.72);
}

.hero-stats dt {
  font-size: 28px;
  font-weight: 900;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-transform: uppercase;
}

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

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 40px;
  align-items: end;
  background: var(--white);
}

.intro p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.people-proof {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(300px, 0.86fr);
  gap: 44px;
  align-items: center;
  background: #eef2f3;
}

.people-proof-media {
  display: grid;
  gap: 14px;
}

.people-image {
  min-height: 440px;
  overflow: hidden;
  background: var(--steel);
}

.people-image.compact {
  min-height: 300px;
}

.people-image img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.people-image.compact img {
  min-height: 300px;
}

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

.quality-equipment-gallery figure {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
}

.quality-equipment-gallery img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.quality-equipment-gallery figcaption {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  color: var(--steel);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  border-left: 4px solid var(--yellow);
}

.people-copy {
  max-width: 620px;
}

.people-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.people-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.people-points span {
  padding: 9px 12px;
  color: var(--steel);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--white);
  border-left: 4px solid var(--yellow);
}

.quality-proof {
  display: grid;
  grid-template-columns: minmax(300px, 0.48fr) minmax(520px, 1fr);
  gap: 34px;
  align-items: center;
  background: #eef2f3;
}

.quality-proof-copy {
  max-width: 560px;
}

.quality-proof-copy h2 {
  margin-bottom: 16px;
  font-size: 38px;
}

.quality-proof-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.quality-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.quality-proof-card {
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
}

.quality-proof-card-wide {
  grid-row: auto;
}

.quality-proof-card img {
  width: 100%;
  height: 178px;
  padding: 10px;
  object-fit: contain;
  background: #f7f8f9;
}

.quality-proof-card-wide img {
  height: 178px;
}

.quality-proof-card figcaption {
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 11px 13px;
  color: var(--steel);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  border-left: 4px solid var(--yellow);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  padding-bottom: 0;
  background: var(--line);
}

.proof-strip div {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px clamp(18px, 3vw, 34px);
  background: var(--white);
}

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

.proof-strip strong {
  margin-bottom: 8px;
  color: var(--steel);
  font-size: 28px;
  line-height: 1;
}

.proof-strip span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.customer-proof {
  display: grid;
  grid-template-columns: minmax(300px, 0.66fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: center;
  background: var(--white);
}

.customer-copy {
  max-width: 620px;
}

.customer-copy p:not(.eyebrow),
.customer-split-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.customer-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.customer-metrics div {
  min-height: 96px;
  padding: 18px;
  background: var(--panel);
  border-top: 4px solid var(--yellow);
}

.customer-metrics strong,
.customer-metrics span {
  display: block;
}

.customer-metrics strong {
  font-size: 24px;
  line-height: 1;
}

.customer-metrics span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.customer-photos figure {
  margin: 0;
  background: var(--panel);
  box-shadow: 0 1px 0 var(--line);
}

.customer-photos img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.customer-photos figcaption {
  padding: 14px 16px 16px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.customer-split {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(300px, 0.78fr);
  gap: 44px;
  align-items: center;
  background: var(--panel);
}

.customer-split-image {
  min-height: 430px;
  overflow: hidden;
  background: var(--steel);
}

.customer-split-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.customer-split-copy {
  max-width: 620px;
}

.product-band {
  background: var(--panel);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

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

.product-card {
  min-height: 470px;
  display: grid;
  grid-template-rows: 220px 1fr;
  background: var(--white);
  border: 1px solid rgba(221, 227, 232, 0.9);
  box-shadow: 0 1px 0 rgba(15, 20, 26, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-card:nth-child(1) {
  border-top: 4px solid var(--yellow);
}

.product-card:nth-child(2) {
  border-top: 4px solid var(--red);
}

.product-card:nth-child(3) {
  border-top: 4px solid var(--teal);
}

.product-card:nth-child(4) {
  border-top: 4px solid #27313d;
}

.product-visual {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(220, 226, 232, 0.86)),
    repeating-linear-gradient(90deg, rgba(39, 49, 61, 0.06) 0 1px, transparent 1px 26px);
}

.product-visual span {
  position: absolute;
  display: block;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 82% 22%, rgba(242, 182, 50, 0.22), transparent 30%);
}

.product-visual::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 16px;
  height: 16px;
  background: radial-gradient(ellipse, rgba(39, 49, 61, 0.18), transparent 70%);
}

.product-card:hover .product-visual span {
  transform: translateY(-3px);
}

.product-card:hover .wrench {
  transform: rotate(-34deg) translateY(-3px);
}

.product-card:hover .pliers {
  transform: rotate(24deg) translateY(-3px);
}

.product-card:hover .inspection-light {
  transform: rotate(-12deg) translateY(-3px);
}

.pegboard {
  inset: 18px;
  opacity: 0.42;
  background-image: radial-gradient(circle, rgba(39, 49, 61, 0.28) 1.5px, transparent 1.6px);
  background-size: 20px 20px;
}

.wrench {
  width: 156px;
  height: 22px;
  left: 54px;
  top: 104px;
  background: #1f2934;
  border-radius: 12px;
  transform: rotate(-34deg);
  box-shadow: 0 9px 0 rgba(31, 41, 52, 0.18);
}

.wrench::before,
.wrench::after,
.pliers::before,
.pliers::after,
.inspection-light::before,
.inspection-light::after,
.work-lamp::before,
.carton-front::before,
.carton-front::after,
.carton-back::before,
.label-strip::before,
.barcode::before {
  content: "";
  position: absolute;
  display: block;
}

.wrench::before {
  width: 48px;
  height: 48px;
  left: -16px;
  top: -13px;
  border: 13px solid #1f2934;
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(18deg);
}

.wrench::after {
  width: 34px;
  height: 34px;
  right: -15px;
  top: -6px;
  background: #1f2934;
  clip-path: polygon(0 34%, 62% 0, 100% 20%, 38% 55%, 100% 82%, 62% 100%, 0 66%);
}

.pliers {
  width: 150px;
  height: 20px;
  right: 40px;
  bottom: 52px;
  background: #808b96;
  border-radius: 12px;
  transform: rotate(24deg);
}

.pliers::before {
  width: 132px;
  height: 20px;
  right: 8px;
  top: -34px;
  background: #27313d;
  border-radius: 12px;
  transform: rotate(-44deg);
  transform-origin: right center;
}

.pliers::after {
  width: 58px;
  height: 58px;
  right: -6px;
  top: -54px;
  border: 14px solid var(--yellow);
  border-left-color: transparent;
  border-radius: 50%;
}

.socket-row {
  left: 38px;
  bottom: 24px;
  width: 150px;
  height: 34px;
  background:
    linear-gradient(90deg, #56616d 0 17px, transparent 17px 25px) 0 0 / 25px 100%,
    linear-gradient(#9aa4ad, #46505b);
  border-bottom: 8px solid #27313d;
  transform: perspective(180px) rotateX(18deg);
}

.automotive {
  background:
    radial-gradient(circle at 50% 54%, rgba(255, 255, 255, 0.92) 0 16%, transparent 17%),
    linear-gradient(135deg, #edf1f3, #cfd7de);
}

.gauge {
  width: 148px;
  height: 148px;
  left: 44px;
  top: 30px;
  border: 16px solid #27313d;
  border-radius: 50%;
  background:
    conic-gradient(from 226deg, var(--red) 0 56deg, var(--yellow) 56deg 102deg, #9aa4ad 102deg 136deg, transparent 136deg 360deg);
  box-shadow: inset 0 0 0 18px #edf1f3, 0 16px 24px rgba(39, 49, 61, 0.16);
}

.gauge::after {
  content: "";
  position: absolute;
  width: 58px;
  height: 8px;
  left: 54px;
  top: 68px;
  background: var(--red);
  border-radius: 8px;
  transform: rotate(-24deg);
  transform-origin: left center;
}

.lift {
  width: 136px;
  height: 76px;
  right: 42px;
  bottom: 38px;
  border-left: 14px solid #27313d;
  border-bottom: 14px solid #27313d;
  transform: skewX(-12deg);
}

.lift::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 14px;
  left: 16px;
  top: -30px;
  background: var(--yellow);
  box-shadow: 16px -30px 0 #27313d;
}

.wheel {
  width: 82px;
  height: 82px;
  right: 90px;
  top: 42px;
  border: 14px solid #27313d;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0 14px, var(--red) 15px 21px, transparent 22px);
}

.spark {
  width: 72px;
  height: 72px;
  right: 34px;
  top: 28px;
  background: var(--yellow);
  clip-path: polygon(50% 0, 58% 36%, 94% 22%, 68% 50%, 100% 64%, 61% 63%, 50% 100%, 39% 63%, 0 64%, 32% 50%, 6% 22%, 42% 36%);
  opacity: 0.72;
}

.lighting {
  background:
    radial-gradient(circle at 70% 44%, rgba(242, 182, 50, 0.72), rgba(242, 182, 50, 0.18) 25%, transparent 46%),
    linear-gradient(135deg, #2b3642, #111820);
}

.beam {
  width: 360px;
  height: 176px;
  right: -32px;
  top: 28px;
  background: radial-gradient(ellipse at 88% 50%, rgba(255, 226, 132, 0.8), rgba(242, 182, 50, 0.28) 34%, transparent 68%);
  clip-path: polygon(0 36%, 100% 0, 100% 100%, 0 64%);
  mix-blend-mode: screen;
}

.inspection-light {
  width: 66px;
  height: 158px;
  left: 70px;
  top: 30px;
  background: #18212b;
  border-radius: 16px;
  border: 8px solid #0f151c;
  transform: rotate(-12deg);
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.34);
}

.inspection-light::before {
  inset: 12px 13px 48px;
  background: linear-gradient(#ffe28a, #f2b632);
}

.inspection-light::after {
  width: 22px;
  height: 22px;
  left: 14px;
  bottom: 14px;
  border-radius: 50%;
  background: #f2b632;
}

.work-lamp {
  width: 126px;
  height: 86px;
  right: 42px;
  bottom: 34px;
  background: #111820;
  border: 12px solid #202b36;
  box-shadow: inset 0 0 0 10px var(--yellow);
}

.work-lamp::before {
  width: 56px;
  height: 34px;
  left: 22px;
  top: -42px;
  border: 12px solid #202b36;
  border-bottom: 0;
  border-radius: 16px 16px 0 0;
}

.magnet-base {
  width: 100px;
  height: 12px;
  left: 62px;
  bottom: 20px;
  background: #dfe4e9;
  border-radius: 12px;
  box-shadow: 0 -34px 0 rgba(255, 255, 255, 0.42), 220px -42px 0 rgba(255, 255, 255, 0.18);
}

.oem {
  background:
    linear-gradient(135deg, rgba(248, 249, 250, 0.86), rgba(218, 224, 230, 0.9)),
    linear-gradient(90deg, transparent 0 76%, rgba(27, 127, 131, 0.14) 76% 100%);
}

.carton-back {
  width: 148px;
  height: 120px;
  right: 56px;
  top: 36px;
  background: #27313d;
  transform: rotate(3deg);
}

.carton-back::before {
  width: 86px;
  height: 18px;
  left: 30px;
  top: 24px;
  background: rgba(255, 255, 255, 0.28);
}

.carton-front {
  width: 172px;
  height: 116px;
  left: 56px;
  top: 68px;
  background: var(--yellow);
  box-shadow: 18px 18px 0 rgba(39, 49, 61, 0.12);
}

.carton-front::before {
  width: 100%;
  height: 22px;
  left: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.22);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}

.carton-front::after {
  width: 92px;
  height: 14px;
  left: 40px;
  top: 52px;
  background: var(--red);
}

.label-strip {
  width: 124px;
  height: 18px;
  left: 80px;
  top: 130px;
  background: rgba(255, 255, 255, 0.84);
}

.label-strip::before {
  width: 72px;
  height: 12px;
  right: -116px;
  top: -72px;
  background: var(--teal);
  box-shadow: -18px 34px 0 rgba(27, 127, 131, 0.44);
}

.barcode {
  width: 74px;
  height: 36px;
  right: 44px;
  bottom: 28px;
  background: #ffffff;
}

.barcode::before {
  inset: 8px 10px;
  background: repeating-linear-gradient(90deg, #27313d 0 3px, transparent 3px 7px, #27313d 7px 9px, transparent 9px 14px);
}

.product-body {
  padding: 24px;
}

.product-body span {
  color: var(--red);
  font-weight: 900;
  font-size: 13px;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 18px;
  padding: 0;
  list-style: none;
}

.product-tags li {
  padding: 5px 8px;
  color: #46505b;
  font-size: 11px;
  font-weight: 800;
  background: #eef2f3;
  border: 1px solid #dbe0e6;
  text-transform: uppercase;
}

.product-body p,
.capability p,
.quality-copy p,
.catalog-panel p,
.contact p,
.footer p {
  color: var(--muted);
}

.product-body a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 800;
}

.product-body a::after {
  content: "";
  width: 18px;
  height: 10px;
  background: currentColor;
  clip-path: polygon(0 39%, 70% 39%, 70% 0, 100% 50%, 70% 100%, 70% 61%, 0 61%);
  transition: transform 180ms ease;
}

.product-card:hover .product-body a::after {
  transform: translateX(4px);
}

.range-builder {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1fr);
  gap: 32px;
  align-items: stretch;
  margin-top: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(21, 24, 29, 0.96), rgba(39, 49, 61, 0.98)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 28px);
  box-shadow: var(--shadow);
}

.range-builder-copy {
  padding: 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.range-builder-copy .eyebrow {
  color: var(--yellow);
}

.range-builder-copy h3 {
  max-width: 420px;
  margin-bottom: 14px;
  font-size: 30px;
}

.range-builder-copy p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.range-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.range-steps div {
  position: relative;
  min-height: 220px;
  padding: 28px 22px;
  background: rgba(255, 255, 255, 0.055);
  overflow: hidden;
}

.range-steps div::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 24px;
  height: 8px;
  background: linear-gradient(90deg, var(--yellow) 0 34%, rgba(255, 255, 255, 0.22) 34% 100%);
}

.range-steps div::after {
  content: "";
  position: absolute;
  width: 96px;
  height: 96px;
  right: -28px;
  top: -28px;
  border: 16px solid rgba(242, 182, 50, 0.16);
  border-radius: 50%;
}

.range-steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: var(--ink);
  font-weight: 900;
  background: var(--yellow);
}

.range-steps strong,
.range-steps small {
  display: block;
}

.range-steps strong {
  margin-bottom: 10px;
  font-size: 18px;
}

.range-steps small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.featured-skus {
  margin-top: 64px;
}

.mini-product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.mini-product {
  display: grid;
  grid-template-rows: 132px auto auto auto;
  gap: 8px;
  min-height: 252px;
  padding: 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.mini-product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.mini-product img {
  width: 100%;
  height: 132px;
  object-fit: contain;
  background: #f3f6f7;
}

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

.mini-product strong {
  font-size: 15px;
  line-height: 1.25;
}

.mini-product small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.capabilities {
  background: var(--white);
}

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

.capability {
  min-height: 250px;
  padding: 34px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(15, 20, 26, 0.04);
}

.capability-icon {
  position: relative;
  width: 96px;
  height: 72px;
  margin-bottom: 26px;
  background: #eef2f3;
  border: 1px solid var(--line);
  overflow: hidden;
}

.capability-icon span {
  position: absolute;
  display: block;
}

.packaging-icon span:nth-child(1) {
  width: 62px;
  height: 46px;
  left: 16px;
  bottom: 12px;
  background: var(--yellow);
  box-shadow: 12px -10px 0 #27313d;
}

.packaging-icon span:nth-child(2) {
  width: 38px;
  height: 7px;
  left: 28px;
  bottom: 34px;
  background: var(--red);
}

.packaging-icon span:nth-child(3) {
  width: 46px;
  height: 6px;
  left: 24px;
  bottom: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.sourcing-icon span:nth-child(1) {
  width: 56px;
  height: 56px;
  left: 14px;
  top: 8px;
  border: 10px solid #27313d;
  border-radius: 50%;
}

.sourcing-icon span:nth-child(2) {
  width: 42px;
  height: 10px;
  right: 10px;
  bottom: 12px;
  background: var(--yellow);
  transform: rotate(42deg);
}

.sourcing-icon span:nth-child(3) {
  width: 22px;
  height: 22px;
  left: 31px;
  top: 25px;
  background: var(--teal);
  border-radius: 50%;
}

.export-icon span:nth-child(1) {
  width: 72px;
  height: 42px;
  left: 12px;
  bottom: 14px;
  background: #27313d;
  clip-path: polygon(0 22%, 58% 22%, 58% 0, 100% 50%, 58% 100%, 58% 78%, 0 78%);
}

.export-icon span:nth-child(2) {
  width: 74px;
  height: 4px;
  left: 12px;
  top: 16px;
  background: var(--yellow);
  box-shadow: 0 14px 0 rgba(242, 182, 50, 0.42);
}

.export-icon span:nth-child(3) {
  width: 22px;
  height: 22px;
  right: 14px;
  bottom: 18px;
  background: var(--red);
  border-radius: 50%;
}

.capability h3 {
  margin-bottom: 16px;
}

.quality {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: 56px;
  color: var(--white);
  background: var(--steel);
}

.quality .eyebrow {
  color: var(--yellow);
}

.quality-copy p,
.quality-list span {
  color: rgba(255, 255, 255, 0.72);
}

.quality-list {
  display: grid;
  gap: 14px;
}

.quality-list div {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.quality-list strong,
.quality-list span {
  display: block;
}

.quality-list strong {
  margin-bottom: 8px;
  font-size: 20px;
}

.catalog {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(320px, 1fr);
  gap: 40px;
  align-items: center;
  background: #eef2f3;
}

.catalog-panel {
  max-width: 620px;
}

.catalog-table {
  display: grid;
  gap: 12px;
}

.catalog-table div {
  display: grid;
  grid-template-columns: 90px 130px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
}

.catalog-table span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-table strong {
  font-size: 22px;
}

.catalog-table small {
  color: var(--muted);
  font-size: 14px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact h2 {
  max-width: 760px;
  font-size: 50px;
  overflow-wrap: anywhere;
}

.contact-list p {
  display: grid;
  grid-template-columns: minmax(150px, 0.32fr) minmax(0, 1fr);
  gap: 18px;
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

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

.contact-list span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.contact-photo {
  margin-top: 28px;
  overflow: hidden;
  background: var(--steel);
}

.contact-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.rfq-form {
  align-content: start;
}

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

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

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

.rfq-note,
.rfq-status {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.rfq-status:empty {
  display: none;
}

.rfq-status[data-tone="success"] {
  color: var(--teal);
}

.compact-rfq .rfq-status {
  min-height: 0;
}

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

label {
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(22, 124, 128, 0.14);
}

textarea {
  resize: vertical;
}

.alibaba-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 48px;
  align-items: center;
  background: var(--panel);
}

.alibaba-hero h1,
.thank-you-hero h1 {
  max-width: 850px;
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.96;
}

.alibaba-hero p,
.thank-you-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.alibaba-visual {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.alibaba-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.conversion-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.conversion-steps div {
  display: grid;
  gap: 12px;
  padding: 28px;
  background: var(--white);
}

.conversion-steps span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.conversion-steps strong {
  color: var(--steel);
  font-size: 22px;
}

.conversion-steps p {
  margin: 0;
  color: var(--muted);
}

.buyer-checklist {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 44px;
  align-items: start;
}

.buyer-checklist h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
}

.buyer-checklist ul,
.thank-you-panel ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.buyer-checklist li,
.thank-you-panel li {
  padding: 16px 18px;
  border-left: 4px solid var(--yellow);
  background: var(--panel);
  color: var(--steel);
  font-weight: 750;
}

.thank-you-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  gap: 42px;
  align-items: center;
  min-height: 68vh;
  background: var(--panel);
}

.lead-id-line {
  font-size: 16px;
}

.thank-you-panel {
  display: grid;
  gap: 20px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--soft-shadow);
}

.thank-you-panel > strong {
  color: var(--steel);
  font-size: 22px;
}

.resource-hero {
  min-height: 440px;
  align-items: end;
}

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

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

.resource-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(17, 24, 32, 0.12);
  background: var(--white);
  text-decoration: none;
  color: inherit;
}

.resource-card h2,
.resource-card h3 {
  margin: 0;
}

.resource-card p {
  margin: 0;
  color: var(--muted);
}

.resource-card .button {
  margin-top: auto;
  align-self: flex-start;
}

.catalog-downloads {
  display: grid;
  gap: 22px;
  background: linear-gradient(180deg, #f5f8fa 0%, #fff 48%);
}

.catalog-downloads .section-heading {
  max-width: 940px;
}

.catalog-downloads .section-heading p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.catalog-download-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(17, 24, 32, 0.12);
  background: var(--white);
}

.catalog-download-toolbar label {
  display: grid;
  gap: 8px;
  min-width: 280px;
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-download-toolbar select {
  min-height: 48px;
  padding: 0 44px 0 14px;
  border: 1px solid rgba(17, 24, 32, 0.18);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 800;
}

.catalog-download-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.catalog-download-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(17, 24, 32, 0.12);
  background: var(--white);
}

.catalog-download-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(17, 24, 32, 0.16);
  color: var(--ink);
  text-decoration: none;
  font-weight: 900;
  background: var(--white);
}

.catalog-download-tabs a.is-active,
.catalog-download-tabs a:hover {
  border-color: var(--gold);
  background: var(--gold);
}

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

.catalog-download-card {
  display: grid;
  gap: 18px;
  padding: 20px;
  min-height: 170px;
  border: 1px solid rgba(17, 24, 32, 0.12);
  background: var(--white);
}

.catalog-download-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.catalog-download-card span {
  color: var(--muted);
  font-weight: 800;
}

.catalog-download-card .button {
  align-self: end;
  justify-self: start;
}

.catalog-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-self: end;
}

.catalog-card-actions .button {
  min-height: 42px;
}

.article-page {
  background: var(--panel);
}

.article {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
}

.article h1 {
  max-width: 820px;
}

.article h2 {
  margin-top: 42px;
}

.article-lead {
  font-size: 1.25rem;
  line-height: 1.65;
  color: var(--muted);
}

.article ul {
  display: grid;
  gap: 12px;
  margin: 20px 0 28px;
  padding-left: 22px;
  color: var(--muted);
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(280px, 1fr);
  gap: 24px;
  padding: 42px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(135deg, #101318, #1b232c);
}

.footer p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer .icp-notice {
  grid-column: 1 / -1;
  max-width: none;
  padding-top: 8px;
  font-size: 0.82rem;
}

.footer .icp-notice a {
  color: rgba(255, 255, 255, 0.66);
}

.footer .icp-notice a:hover,
.footer .icp-notice a:focus-visible {
  color: var(--gold);
}

.page-hero {
  min-height: 430px;
  display: grid;
  align-items: end;
  padding: 118px clamp(18px, 5vw, 72px) 58px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 19, 24, 0.94), rgba(16, 19, 24, 0.62)),
    url("assets/images/source/product-banner.jpg") center / cover;
}

.about-hero {
  background:
    linear-gradient(90deg, rgba(16, 19, 24, 0.94), rgba(16, 19, 24, 0.58)),
    url("assets/images/source/company-banner.jpg") center / cover;
}

.product-hero {
  background:
    linear-gradient(90deg, rgba(16, 19, 24, 0.94), rgba(16, 19, 24, 0.52)),
    url("assets/images/customers/showroom-buyers.jpg") center / cover;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(16, 19, 24, 0.94), rgba(16, 19, 24, 0.56)),
    url("assets/images/customers/packaging-review.jpg") center / cover;
}

.page-hero > div {
  max-width: 820px;
}

.page-hero h1 {
  font-size: 54px;
  line-height: 1.04;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.catalog-controls {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: end;
  padding-bottom: 36px;
}

.product-browser {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(420px, 1fr);
  gap: 28px;
  align-items: stretch;
  padding-top: 106px;
  padding-bottom: 28px;
  background: linear-gradient(180deg, #f5f7f8 0%, #ffffff 100%);
}

.product-browser-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
}

.product-browser h1 {
  max-width: 620px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 40px;
  line-height: 1;
}

.product-browser-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 15px;
}

.product-search {
  max-width: 620px;
  margin-bottom: 12px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(23, 29, 37, 0.08);
}

.product-search input {
  min-height: 46px;
  border-color: #cfd6dd;
  font-size: 14px;
}

.visual-search-entry {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 620px;
  margin: -2px 0 14px;
  padding: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  box-shadow: 0 12px 26px rgba(23, 29, 37, 0.08);
}

.visual-search-entry > span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.image-search-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 16px;
  color: var(--white);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  background: var(--steel);
  border: 1px solid var(--steel);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.image-search-icon {
  position: relative;
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  border: 2px solid currentColor;
}

.image-search-icon::before,
.image-search-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.image-search-icon::before {
  left: 3px;
  right: 3px;
  bottom: 3px;
  height: 5px;
  clip-path: polygon(0 100%, 35% 35%, 52% 68%, 68% 18%, 100% 100%);
}

.image-search-icon::after {
  right: -7px;
  bottom: -5px;
  width: 9px;
  height: 2px;
  transform: rotate(45deg);
}

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

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

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

.image-search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 23, 31, 0.72);
  backdrop-filter: blur(5px);
}

.image-search-dialog {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(88vh, 920px);
  overflow: auto;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 32px 90px rgba(10, 16, 22, 0.32);
}

.image-search-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(38, 50, 61, 0.96), rgba(22, 124, 128, 0.82)),
    linear-gradient(90deg, rgba(240, 183, 47, 0.16), transparent);
  color: var(--white);
}

.image-search-head .eyebrow {
  color: var(--yellow);
}

.image-search-head h2 {
  max-width: 740px;
  margin: 2px 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.76);
}

.image-search-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  font: inherit;
  font-size: 28px;
  line-height: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  cursor: pointer;
}

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

.image-drop-zone {
  position: relative;
  min-height: 238px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 24px;
  color: var(--steel);
  text-align: center;
  background: var(--white);
  border: 2px dashed #bcc8d2;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.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(--teal);
  background: #f8fbfb;
  transform: translateY(-2px);
}

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

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

.image-drop-visual {
  position: relative;
  width: 62px;
  height: 52px;
  border: 3px solid var(--yellow);
  background:
    linear-gradient(135deg, transparent 58%, var(--yellow) 59% 64%, transparent 65%),
    linear-gradient(180deg, #f7fafb, #ffffff);
}

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

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

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

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

.image-search-preview img {
  max-width: 100%;
  max-height: 300px;
  object-fit: contain;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(23, 29, 37, 0.12);
}

.image-search-text-hint {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 28px 16px;
  color: var(--steel);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--panel);
}

.image-search-text-hint input {
  min-height: 44px;
  padding: 0 13px;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
  background: var(--white);
  border: 1px solid var(--line);
}

.image-search-keywords {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: -2px 28px 14px;
  color: var(--steel);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
}

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

.image-search-keywords strong {
  color: var(--ink);
  text-transform: uppercase;
}

.image-search-keywords em,
.image-search-keywords small {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.image-search-keywords small {
  padding-left: 4px;
}

.image-search-keywords span,
.image-search-keywords button {
  padding: 7px 10px;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  background: #fff8e6;
  border: 1px solid rgba(246, 184, 42, 0.58);
  cursor: pointer;
}

.image-search-keywords button:hover,
.image-search-keywords button:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(246, 184, 42, 0.2);
}

.image-search-keywords button.is-active {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}

.image-search-keywords.is-loading span,
.image-search-keywords.is-loading em {
  color: var(--steel);
}

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

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

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

.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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  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: 168px 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(15, 20, 26, 0.04);
  overflow: hidden;
}

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

.image-match-media img {
  max-width: 100%;
  max-height: 140px;
  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: 900;
  text-transform: uppercase;
}

.image-match-term {
  color: var(--steel);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

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

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

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

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

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

.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 {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: var(--steel);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  border: 1px solid var(--line);
}

.image-match-links a:last-child {
  color: var(--ink);
  background: var(--yellow);
  border-color: var(--yellow);
}

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

.product-browser-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 620px;
}

.product-browser-stats span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--yellow);
}

.product-browser-stats strong {
  color: var(--steel);
  font-size: 13px;
  line-height: 1;
}

.product-browser-media {
  position: relative;
  height: 286px;
  min-height: 0;
  overflow: hidden;
  background: var(--steel);
}

.product-browser-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
}

.browser-support {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(16, 19, 24, 0.28);
}

.browser-support span {
  min-height: 48px;
  display: flex;
  align-items: center;
  padding: 11px 12px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.92);
  border-top: 3px solid var(--yellow);
}

.catalog-controls-tight {
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding-top: 20px;
  padding-bottom: 20px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.catalog-controls-heading h2 {
  margin-bottom: 4px;
  font-size: 28px;
}

.catalog-controls-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.buyer-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(360px, 0.75fr) minmax(220px, 0.35fr);
  gap: 28px;
  align-items: center;
  background: var(--white);
}

.buyer-strip-compact {
  grid-template-columns: minmax(250px, 0.55fr) minmax(300px, 0.56fr) minmax(200px, 0.32fr);
  gap: 22px;
  padding-top: 42px;
  padding-bottom: 42px;
}

.buyer-strip h2 {
  margin-bottom: 0;
}

.buyer-strip-compact h2 {
  font-size: 30px;
  line-height: 1.12;
}

.buyer-strip-image {
  min-height: 260px;
  overflow: hidden;
  background: var(--steel);
}

.buyer-strip-image img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.buyer-strip-compact .buyer-strip-image,
.buyer-strip-compact .buyer-strip-image img {
  min-height: 0;
}

.buyer-strip-compact .buyer-strip-image {
  height: 180px;
}

.buyer-strip-compact .buyer-strip-image img {
  display: block;
  height: 100%;
}

.buyer-strip-points {
  display: grid;
  gap: 12px;
}

.buyer-strip-points span {
  min-height: 54px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--panel);
  border-left: 4px solid var(--yellow);
}

.buyer-strip-compact .buyer-strip-points span {
  min-height: 44px;
  padding: 10px 14px;
  font-size: 12px;
}

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

.filter-bar button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  color: var(--steel);
  font: inherit;
  font-weight: 800;
  background: var(--white);
  cursor: pointer;
}

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

.source-note {
  grid-column: 1 / -1;
  padding: 18px;
  color: var(--muted);
  background: var(--panel);
  border-left: 4px solid var(--teal);
}

.catalog-search {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-search input {
  max-width: 760px;
  min-height: 48px;
  text-transform: none;
}

.product-list-section {
  padding-top: 34px;
  background: #f7f8f9;
}

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

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.pagination button,
.page-jump,
.page-gap {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  color: var(--steel);
  font: inherit;
  font-weight: 800;
  background: var(--white);
}

.page-gap {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
}

.pagination button {
  cursor: pointer;
}

.pagination button.active,
.pagination button:hover:not(:disabled) {
  color: var(--ink);
  border-color: var(--yellow);
  background: var(--yellow);
}

.pagination button:disabled {
  color: #aab2ba;
  cursor: not-allowed;
}

.page-jump {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-jump input {
  width: 54px;
  min-height: 28px;
  padding: 3px 6px;
}

.catalog-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  min-height: 462px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(15, 20, 26, 0.04);
  transition: transform 180ms ease, box-shadow 180ms ease;
  overflow: hidden;
}

.no-results {
  grid-column: 1 / -1;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
}

.no-results strong,
.no-results span {
  display: block;
}

.no-results span {
  margin-top: 8px;
  color: var(--muted);
}

.catalog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.catalog-image {
  display: grid;
  place-items: center;
  padding: 18px;
  background: #f3f6f7;
}

.catalog-image img {
  max-height: 154px;
  object-fit: contain;
}

.catalog-card-body {
  padding: 18px;
}

.catalog-card-body > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-card-body h3 {
  margin: 8px 0 12px;
  font-size: 19px;
  line-height: 1.2;
}

.catalog-card-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

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

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

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

.catalog-card-body dd {
  margin: 2px 0 0;
  font-weight: 800;
  line-height: 1.25;
}

.text-link {
  color: var(--teal);
  font-weight: 900;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: center;
  padding: 130px clamp(18px, 5vw, 72px) 72px;
  background: var(--panel);
}

.detail-gallery {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.detail-image {
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.detail-image img {
  max-height: 430px;
  object-fit: contain;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.thumb-row button {
  display: grid;
  place-items: center;
  height: 88px;
  padding: 8px;
  border: 2px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.thumb-row button.active,
.thumb-row button:hover {
  border-color: var(--yellow);
}

.thumb-row img {
  width: 100%;
  height: 68px;
  object-fit: contain;
}

.detail-copy h1 {
  color: var(--ink);
  font-size: 58px;
}

.detail-copy {
  min-width: 0;
}

.detail-copy p {
  color: var(--muted);
  font-size: 18px;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: var(--line);
}

.detail-meta div {
  min-width: 0;
  padding: 18px;
  background: var(--white);
}

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

.detail-meta dd {
  margin: 4px 0 0;
  font-weight: 900;
  max-width: 100%;
  line-height: 1.28;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.button.dark-outline {
  color: var(--steel);
  border-color: var(--steel);
  background: transparent;
}

.detail-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(320px, 1fr);
  gap: 48px;
}

.detail-section.alt {
  background: var(--panel);
}

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

.feature-list li {
  padding: 18px 18px 18px 48px;
  background: var(--white);
  border: 1px solid var(--line);
  position: relative;
  box-shadow: 0 1px 0 rgba(15, 20, 26, 0.04);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 24px;
  width: 12px;
  height: 12px;
  background: var(--yellow);
}

.spec-summary {
  display: grid;
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
}

.spec-summary div {
  padding: 16px;
  background: var(--white);
}

.spec-summary span,
.spec-summary strong {
  display: block;
}

.spec-summary span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-summary strong {
  margin-top: 4px;
}

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

.option-grid div {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(15, 20, 26, 0.04);
}

.option-grid strong,
.option-grid span {
  display: block;
}

.option-grid span {
  margin-top: 10px;
  color: var(--muted);
}

.rfq-strip {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  padding: 42px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #101318;
}

.rfq-strip h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: 40px;
}

.rfq-strip .eyebrow {
  color: var(--yellow);
}

@media (max-width: 1320px) {
  .site-header {
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr) auto auto;
    gap: 18px;
    padding-inline: clamp(18px, 3vw, 34px);
  }

  .nav {
    gap: clamp(14px, 2vw, 24px);
    font-size: 13px;
  }

  .site-search {
    display: none;
  }

  .brand {
    min-width: 220px;
  }

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

  .header-cta {
    padding-inline: 14px;
  }
}

@media (max-width: 1060px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .alibaba-hero,
  .buyer-checklist,
  .thank-you-hero {
    grid-template-columns: 1fr;
  }

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

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

  .site-header {
    grid-template-columns: minmax(210px, auto) 1fr auto auto;
    gap: 16px;
  }

  .language-select select {
    max-width: 150px;
  }
}

@media (max-width: 820px) {
  h1 {
    font-size: 48px;
    line-height: 1.02;
  }

  h2 {
    font-size: 34px;
  }

  .page-hero h1,
  .detail-copy h1 {
    font-size: 44px;
  }

  .contact h2 {
    font-size: 38px;
  }

  .rfq-strip h2 {
    font-size: 32px;
  }

  .rfq-grid,
  .conversion-steps,
  .resource-grid,
  .resource-grid.small {
    grid-template-columns: 1fr;
  }

  .resource-card {
    min-height: 0;
  }

  .catalog-download-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-download-toolbar label {
    min-width: 0;
  }

  .catalog-download-actions {
    justify-content: flex-start;
  }

  .site-header {
    grid-template-columns: auto minmax(108px, 132px) 44px;
    justify-content: space-between;
    gap: 10px;
  }

  .brand {
    grid-column: 1;
  }

  .language-select {
    grid-column: 2;
    justify-self: end;
  }

  .menu-toggle {
    grid-column: 3;
    justify-self: end;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .site-header.menu-open .nav {
    position: absolute;
    top: 79px;
    left: 0;
    right: 0;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 8px 18px 82px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  html[dir="rtl"] .site-header.menu-open .nav {
    text-align: right;
  }

  .site-header.menu-open .nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-header.menu-open .site-search {
    position: absolute;
    top: 322px;
    left: 18px;
    right: 18px;
    display: grid;
    box-shadow: var(--shadow);
  }

  .language-select {
    min-width: 118px;
  }

  .language-select select {
    width: 100%;
    max-width: 140px;
  }

  .hero {
    min-height: 820px;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(14, 17, 21, 0.94) 0%, rgba(14, 17, 21, 0.76) 58%, rgba(14, 17, 21, 0.38) 100%);
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 0 auto;
  }

  .hero-stats,
  .proof-strip,
  .intro,
  .people-proof,
  .quality-proof,
  .customer-proof,
  .customer-split,
  .product-browser,
  .buyer-strip,
  .range-builder,
  .catalog-controls,
  .detail-hero,
  .detail-section,
  .rfq-strip,
  .capability-grid,
  .quality,
  .catalog,
  .contact {
    grid-template-columns: 1fr;
  }

  .buyer-strip-compact {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .product-browser {
    padding-top: 112px;
  }

  .product-browser h1 {
    font-size: 44px;
  }

  .product-browser-media,
  .product-browser-media img {
    min-height: 270px;
  }

  .product-browser-media {
    height: 270px;
  }

  .range-builder-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .catalog-grid,
  .option-grid,
  .mini-product-grid,
  .image-search-grid,
  .customer-photos,
  .customer-metrics,
  .quality-equipment-gallery,
  .quality-proof-grid,
  .buyer-strip-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quality-proof-card-wide {
    grid-row: auto;
  }

  .quality-proof-card-wide img,
  .quality-proof-card img {
    height: 220px;
  }

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

  .catalog-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

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

@media (max-width: 620px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    grid-template-columns: auto minmax(90px, 100px) 44px;
    gap: 8px;
    padding-left: 14px;
    padding-right: 14px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  .page-hero h1,
  .detail-copy h1,
  .contact h2 {
    font-size: 32px;
  }

  .rfq-strip h2 {
    font-size: 28px;
  }

  .brand {
    min-width: 0;
    max-width: 58px;
    gap: 8px;
  }

  .brand-mark {
    width: 52px;
    height: 36px;
  }

  .brand strong {
    display: none;
  }

  .language-select {
    min-width: 92px;
  }

  .language-select span {
    display: none;
  }

  .language-select select {
    min-height: 38px;
    max-width: 100px;
    font-size: 11px;
  }

  html[lang="ja"] h1,
  html[lang="ko"] h1,
  html[lang="ar"] h1,
  html[lang="ru"] h1,
  html[lang="hi"] h1,
  html[lang="ja"] .page-hero h1,
  html[lang="ko"] .page-hero h1,
  html[lang="ar"] .page-hero h1,
  html[lang="ru"] .page-hero h1,
  html[lang="hi"] .page-hero h1,
  html[lang="ja"] .detail-copy h1,
  html[lang="ko"] .detail-copy h1,
  html[lang="ar"] .detail-copy h1,
  html[lang="ru"] .detail-copy h1,
  html[lang="hi"] .detail-copy h1,
  html[lang="ja"] .product-browser h1,
  html[lang="ko"] .product-browser h1,
  html[lang="ar"] .product-browser h1,
  html[lang="ru"] .product-browser h1,
  html[lang="hi"] .product-browser h1 {
    font-size: 28px;
    line-height: 1.18;
    max-width: 100%;
  }

  .section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .product-browser {
    padding-top: 104px;
    padding-bottom: 28px;
  }

  .product-browser h1 {
    font-size: 36px;
  }

  .product-browser-stats,
  .browser-support {
    grid-template-columns: 1fr;
  }

  .browser-support {
    position: static;
  }

  .product-browser-media,
  .product-browser-media img {
    min-height: 220px;
  }

  .product-browser-media {
    height: auto;
  }

  .page-hero,
  .detail-hero {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-content {
    width: calc(100% - 48px);
  }

  .brand small {
    display: none;
  }

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

  .catalog-grid,
  .option-grid,
  .mini-product-grid,
  .image-search-grid,
  .customer-photos,
  .customer-metrics,
  .quality-equipment-gallery,
  .quality-proof-grid,
  .buyer-strip-points,
  .catalog-download-list {
    grid-template-columns: 1fr;
  }

  .catalog-download-tabs {
    display: grid;
    grid-template-columns: 1fr;
  }

  .catalog-download-tabs a {
    justify-content: center;
  }

  .visual-search-entry {
    align-items: stretch;
    flex-direction: column;
  }

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

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

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

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

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

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

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

  .quality-proof-copy h2 {
    font-size: 30px;
  }

  .quality-proof-card-wide img,
  .quality-proof-card img {
    height: 190px;
  }

  .people-image.compact,
  .people-image.compact img {
    min-height: 240px;
  }

  .buyer-strip-compact .buyer-strip-image,
  .buyer-strip-compact .buyer-strip-image img {
    min-height: 0;
  }

  .buyer-strip-compact .buyer-strip-image {
    height: 160px;
  }

  .detail-image {
    width: 100%;
    max-width: calc(100vw - 48px);
    min-height: 360px;
    padding: 28px 18px;
  }

  .detail-meta {
    width: 100%;
    max-width: calc(100vw - 48px);
    margin: 22px 0;
  }

  .detail-meta div {
    padding: 16px;
  }

  .detail-meta dd {
    font-size: 15px;
    line-height: 1.38;
  }

  .detail-gallery,
  .detail-copy,
  .thumb-row {
    width: 100%;
    max-width: calc(100vw - 48px);
  }

  .detail-copy p {
    overflow-wrap: anywhere;
  }

  .thumb-row button {
    width: 100%;
    min-width: 0;
  }

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

  .range-steps {
    grid-template-columns: 1fr;
  }

  .range-steps div {
    min-height: 180px;
  }

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

  .footer {
    display: grid;
  }

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