:root {
  --black: #111418;
  --ink: #1f252b;
  --muted: #67727d;
  --line: #d7e9f2;
  --paper: #f6fbfe;
  --white: #ffffff;
  --red: #d71920;
  --teal: #16717f;
  --gold: #e7b042;
  --sky: #5bb8d6;
  --light-blue: #eaf7fc;
  --steel: #909ba5;
  --radius: 8px;
  --max: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fbfdff;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
textarea,
button {
  font: inherit;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 160px;
}

.logo-lockup {
  min-width: 0;
}

.logo-lockup img {
  width: auto;
  max-width: 150px;
  height: 62px;
  object-fit: contain;
}

.header-brand {
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--red);
  font-weight: 800;
}

.brand-lockup strong,
.brand-lockup small {
  display: block;
  line-height: 1;
}

.brand-lockup strong {
  font-size: 18px;
}

.brand-lockup small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary,
.header-cta {
  color: var(--white);
  background: var(--red);
}

.button.primary.teal,
.header-cta.teal {
  background: var(--teal);
}

.button.primary.gold,
.header-cta.gold {
  color: #17120a;
  background: var(--gold);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button.ghost.light {
  border-color: rgba(255, 255, 255, 0.48);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.preview-page {
  background: #f1f4f7;
}

.redirect-page {
  display: grid;
  min-height: 100vh;
  place-content: center;
  justify-items: center;
  gap: 18px;
  padding: 28px;
  text-align: center;
}

.redirect-page p {
  margin: 0;
  color: var(--muted);
}

.preview-header,
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 max(28px, calc((100vw - var(--max)) / 2 + 28px));
  border-bottom: 1px solid rgba(215, 233, 242, 0.96);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.clean-header {
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.preview-nav,
.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
  color: #3c5966;
  font-size: 14px;
  font-weight: 700;
}

.site-nav {
  align-self: center;
  justify-content: center;
  flex: 0 1 auto;
  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  font-size: 16px;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--red);
}

.site-nav a.active::after {
  position: absolute;
  right: 14px;
  bottom: -2px;
  left: 14px;
  height: 3px;
  content: "";
  background: var(--red);
}

.site-nav a.active::before {
  position: absolute;
  bottom: 1px;
  left: 50%;
  width: 0;
  height: 0;
  content: "";
  border-right: 6px solid transparent;
  border-bottom: 7px solid var(--red);
  border-left: 6px solid transparent;
  transform: translateX(-50%);
}

.whatsapp-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
  border-radius: 8px;
  color: var(--white);
  background: #20b15a;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(32, 177, 90, 0.2);
}

.whatsapp-cta img {
  width: 18px;
  height: 18px;
}

.whatsapp-cta:hover {
  background: #17994b;
}

.site-search {
  display: grid;
  grid-template-columns: minmax(160px, 210px) auto;
  align-items: center;
  gap: 0;
  min-height: 38px;
  border: 1px solid #c7e1ec;
  border-radius: 8px;
  background: var(--white);
  overflow: visible;
  position: relative;
  z-index: 20;
}

.site-search-field {
  position: relative;
}

.site-search input {
  width: 100%;
  min-width: 0;
  height: 38px;
  padding: 0 12px;
  border: 0;
  color: var(--ink);
  outline: 0;
  background: transparent;
  font-size: 14px;
  border-radius: 8px 0 0 8px;
}

.site-search > button {
  height: 38px;
  padding: 0 13px;
  border: 0;
  color: var(--white);
  background: var(--red);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  border-radius: 0 8px 8px 0;
  align-self: stretch;
}

.site-search > button:hover {
  background: #b7151b;
}

.site-search.is-open input {
  box-shadow: inset 0 0 0 1px rgba(226, 28, 35, 0.18);
}

.site-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 24px;
  max-height: 332px;
  overflow-y: auto;
  border: 1px solid #d5e6ef;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(19, 49, 67, 0.16);
}

.site-search-dropdown[hidden] {
  display: none;
}

.mobile-menu-toggle,
.mobile-rfq-button,
.mobile-fixed-rfq,
.product-mobile-menu-toggle,
.product-mobile-rfq,
.product-fixed-rfq,
.shared-mobile-menu-toggle,
.shared-mobile-rfq,
.shared-fixed-rfq,
.shared-mobile-created-header,
.mobile-category-overlay,
.mobile-category-sheet {
  display: none;
}

.search-suggestion {
  display: grid;
  gap: 5px;
  width: 100%;
  min-height: 0;
  padding: 11px 14px 10px;
  border: 0;
  border-bottom: 1px solid #eef5f9;
  border-radius: 0;
  color: #111111;
  background: #ffffff;
  text-align: left;
  cursor: pointer;
  box-shadow: none;
}

.search-suggestion:last-child {
  border-bottom: 0;
}

.search-suggestion:hover,
.search-suggestion.is-active {
  background: #f6f8fa;
}

.search-suggestion-name {
  display: block;
  color: #111111;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  white-space: normal;
  word-break: break-word;
}

.search-suggestion-meta {
  display: block;
  color: #4a4a4a;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  white-space: normal;
  word-break: break-word;
}

.search-suggestion mark {
  padding: 0;
  color: var(--red);
  background: transparent;
}

.search-suggestion-empty {
  padding: 14px;
  color: #4a4a4a;
  font-size: 13px;
  line-height: 1.5;
  background: #ffffff;
}

.language-switcher {
  position: absolute;
  top: 50%;
  right: 24px;
  display: inline-grid;
  place-items: center;
  margin-left: 0;
  transform: translateY(-50%);
}

.language-switcher button {
  display: inline-flex;
  min-width: 92px;
  height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid #d3e2ea;
  border-radius: 6px;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.language-current {
  background: #ffffff !important;
}

.language-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 30;
  display: none;
  gap: 6px;
  min-width: 132px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(17, 20, 24, 0.14);
}

.language-switcher.open .language-menu,
.language-switcher:focus-within .language-menu {
  display: grid;
}

.language-menu button {
  justify-content: flex-start;
  width: 100%;
  min-width: 116px;
  height: 32px;
  padding: 0 10px;
  border: 0;
  border-radius: 5px;
  text-align: left;
}

.language-menu button.active {
  color: var(--red);
  background: #fff0f1;
}

.header-cta {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
}

.preview-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 76px 28px 30px;
}

.preview-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #151a20;
  font-size: 46px;
  line-height: 1.05;
}

.preview-hero p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.preview-grid {
  display: grid;
  max-width: var(--max);
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin: 0 auto;
  padding: 26px 28px 80px;
}

.template-card,
.product-card,
.application-grid article,
.premium-range article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.template-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.template-card-body {
  padding: 22px;
}

.template-card h2 {
  margin: 0;
  font-size: 24px;
}

.template-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.55;
}

.site-header.transparent {
  position: absolute;
  width: 100%;
  border-bottom-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0));
}

.site-header.transparent .brand-lockup small,
.site-header.transparent .site-nav {
  color: rgba(255, 255, 255, 0.82);
}

.site-header.light .brand-mark {
  background: var(--teal);
}

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

.home-intro-shell {
  display: grid;
  max-width: var(--max);
  grid-template-columns: 272px minmax(0, 1fr);
  align-items: stretch;
  gap: 28px;
  margin: 28px auto 16px;
  padding: 0 28px;
}

.category-dock {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  border: 1px solid var(--line);
  background: var(--white);
}

.category-dock-head {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 18px;
  color: var(--white);
  background: var(--red);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  border: 0;
  border-radius: 0;
  text-align: left;
}

.category-dock-icon {
  display: grid;
  gap: 4px;
}

.category-dock-icon span {
  display: block;
  width: 14px;
  height: 2px;
  background: currentColor;
}

.category-dock-list {
  display: grid;
  flex: 1;
  border-top: 0;
}

.home-intro-shell .category-dock-list {
  grid-template-rows: repeat(9, minmax(0, 1fr));
}

.category-dock-list a,
.category-dock-more {
  display: flex;
  align-items: center;
  height: 52px;
  min-width: 0;
  padding: 0 16px;
  border-top: 1px solid var(--line);
  color: #67727d;
  background: var(--white);
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background 120ms ease, color 120ms ease;
}

.home-intro-shell .category-dock-list a {
  height: 100%;
  min-height: 0;
}

html[lang="ru"] .category-dock-list a,
html[lang="ru"] .category-dock-more,
html[lang="pt"] .category-dock-list a,
html[lang="pt"] .category-dock-more,
html[lang="es"] .category-dock-list a,
html[lang="es"] .category-dock-more {
  font-size: 15px;
  font-weight: 600;
}

.category-dock-list a:hover,
.category-dock-more:hover {
  color: var(--red);
  background: #f7fbfe;
}

.hero-stage {
  display: grid;
  gap: 0;
}

.hero-stage-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  aspect-ratio: 16 / 9;
  min-height: 0;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fbfdff 0%, #eef8fc 100%);
  overflow: hidden;
}

.hero-stage-media {
  display: grid;
  align-items: stretch;
  padding: 0;
}

.hero-stage .hero-slider {
  min-height: 100%;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

.hero-stage .hero-slider > img {
  min-height: 0;
}

.hero {
  position: relative;
}

.split-hero {
  display: grid;
  min-height: 650px;
  grid-template-columns: minmax(360px, 0.86fr) 1.14fr;
  align-items: stretch;
  background: linear-gradient(135deg, #ffffff 0%, var(--light-blue) 100%);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 56px;
  color: var(--ink);
}

.hero-copy h1,
.catalog-panel h1,
.premium-copy h1 {
  margin: 0;
  font-size: 48px;
  line-height: 1.03;
}

.hero-copy p:not(.eyebrow),
.premium-copy p:not(.eyebrow) {
  max-width: 570px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.industrial-theme .hero-copy h1 {
  color: #172733;
}

.industrial-theme .hero-copy .button.ghost {
  border-color: #b9dce9;
  color: #244d5e;
  background: rgba(255, 255, 255, 0.72);
}

.industrial-theme .hero-media {
  display: grid;
  align-items: end;
  padding: 28px 28px 28px 0;
  overflow: hidden;
}

.hero-media img,
.hero-slider > img {
  height: calc(100% - 12px);
  min-height: 594px;
  object-fit: cover;
  border: 1px solid rgba(215, 233, 242, 0.9);
  border-radius: 8px;
  box-shadow: 0 26px 60px rgba(55, 104, 126, 0.18);
}

.hero-slider {
  position: relative;
  width: 100%;
  height: calc(100% - 12px);
  min-height: 594px;
  overflow: hidden;
  border: 1px solid rgba(215, 233, 242, 0.9);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 26px 60px rgba(55, 104, 126, 0.18);
  isolation: isolate;
}

.hero-slider > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  animation: heroSlide 12s infinite;
}

.hero-slider > img:nth-child(2) {
  animation-delay: 4s;
}

.hero-slider > img:nth-child(3) {
  animation-delay: 8s;
}

.hero-slider--feature {
  height: calc(100% - 12px);
  min-height: 594px;
  border: 1px solid rgba(215, 233, 242, 0.9);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 26px 60px rgba(55, 104, 126, 0.18);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(420px, 0.5fr);
  opacity: 0;
  animation: heroFeatureSlide 20s infinite;
}

.hero-slide--banner {
  display: block;
}

.hero-slide--banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slider--feature[data-hero-slider] .hero-slide {
  animation: none;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.hero-slider--feature[data-hero-slider] .hero-slide.is-active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  transform: translateX(-50%);
}

.hero-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid rgba(17, 30, 39, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 3px 10px rgba(17, 30, 39, 0.18);
  cursor: pointer;
}

.hero-dots button.is-active {
  width: 28px;
  border-color: var(--red);
  background: var(--red);
}

.hero-slide:nth-child(2) {
  animation-delay: 4s;
}

.hero-slide:nth-child(3) {
  animation-delay: 8s;
}

.hero-slide:nth-child(4) {
  animation-delay: 12s;
}

.hero-slide:nth-child(5) {
  animation-delay: 16s;
}

.hero-slide-copy,
.hero-slide-visual {
  min-width: 0;
  min-height: 0;
}

.hero-slide-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 44px 44px 42px;
  color: #132633;
  background: linear-gradient(135deg, #ffffff 0%, #edf8fc 100%);
}

.hero-slide-copy .eyebrow {
  margin: 0;
  color: var(--red);
}

.hero-slide-copy h1,
.hero-slide-copy h2 {
  margin: 0;
  color: #1b2730;
  font-size: 48px;
  line-height: 1.03;
}

.hero-slide-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 0;
  color: #5b6c77;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
}

.hero-slide-visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f4fafc 0%, #dff0f7 100%);
}

.hero-slide-media-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide--assortment .hero-slide-media-photo img {
  object-position: center 40%;
}

.hero-slide--seals .hero-slide-media-photo img {
  object-position: center center;
  background: #ffffff;
}

.hero-slide--orings .hero-slide-copy {
  background: linear-gradient(135deg, #ffffff 0%, #eff7fb 100%);
}

.hero-slide--covers .hero-slide-copy {
  background: linear-gradient(135deg, #ffffff 0%, #f4f8fb 100%);
}

.hero-slide--kits .hero-slide-copy {
  background: linear-gradient(135deg, #ffffff 0%, #eef7fb 100%);
}

.hero-slide-media-graphic {
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 24px;
  padding: 42px 38px 36px;
}

.hero-graphic-cluster {
  position: relative;
  min-height: 0;
  border-radius: 24px;
  background:
    radial-gradient(circle at 28% 28%, rgba(91, 184, 214, 0.2) 0, rgba(91, 184, 214, 0.2) 14%, transparent 15%),
    radial-gradient(circle at 70% 62%, rgba(215, 25, 32, 0.12) 0, rgba(215, 25, 32, 0.12) 12%, transparent 13%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(235, 245, 251, 0.92) 100%);
  box-shadow: inset 0 0 0 1px rgba(199, 225, 236, 0.8);
}

.hero-graphic-ring {
  position: absolute;
  border-radius: 50%;
  border: 16px solid #9aa6b1;
  background: rgba(255, 255, 255, 0.8);
}

.hero-graphic-ring::after {
  position: absolute;
  inset: 10px;
  border: 8px solid var(--red);
  border-radius: 50%;
  content: "";
}

.hero-graphic-ring--lg {
  width: 220px;
  height: 220px;
  top: 34px;
  left: 52px;
}

.hero-graphic-ring--md {
  width: 146px;
  height: 146px;
  right: 76px;
  top: 56px;
}

.hero-graphic-ring--sm {
  width: 104px;
  height: 104px;
  right: 136px;
  bottom: 42px;
}

.hero-graphic-icon {
  position: absolute;
  right: 44px;
  bottom: 28px;
  width: 148px;
  height: 102px;
  transform: scale(1.5);
}

.hero-graphic-cluster--cover .hero-graphic-icon {
  right: 56px;
  bottom: 48px;
}

.hero-graphic-cluster--kit .hero-graphic-icon {
  right: 54px;
  bottom: 38px;
}

.hero-graphic-boot {
  position: absolute;
  width: 112px;
  height: 178px;
  border-radius: 48px 48px 22px 22px;
  background: linear-gradient(180deg, #2c3138 0%, #121417 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-graphic-boot::after {
  position: absolute;
  inset: 16px 18px auto;
  height: 116px;
  border-radius: 38px;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.06) 5px,
      transparent 5px,
      transparent 15px
    );
  content: "";
}

.hero-graphic-boot--left {
  top: 32px;
  left: 72px;
  transform: rotate(-8deg);
}

.hero-graphic-boot--right {
  top: 42px;
  left: 202px;
  transform: rotate(6deg);
}

.hero-graphic-tile {
  position: absolute;
  border-radius: 24px;
  background: linear-gradient(145deg, #ffffff 0%, #eef6fb 100%);
  box-shadow: inset 0 0 0 1px rgba(199, 225, 236, 0.9);
}

.hero-graphic-tile--one {
  top: 40px;
  left: 44px;
  width: 174px;
  height: 122px;
}

.hero-graphic-tile--two {
  top: 78px;
  left: 182px;
  width: 192px;
  height: 138px;
}

.hero-graphic-tile--three {
  right: 44px;
  bottom: 34px;
  width: 164px;
  height: 116px;
}

.hero-graphic-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-graphic-notes span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid #d1e5ef;
  border-radius: 999px;
  color: #38515f;
  background: rgba(255, 255, 255, 0.86);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

@keyframes heroFeatureSlide {
  0%,
  16% {
    opacity: 1;
    z-index: 2;
  }

  20%,
  100% {
    opacity: 0;
    z-index: 1;
  }
}

@keyframes heroSlide {
  0% {
    opacity: 0;
    transform: scale(1.03);
  }
  8%,
  30% {
    opacity: 1;
    transform: scale(1);
  }
  38%,
  100% {
    opacity: 0;
    transform: scale(1.02);
  }
}

.about-section p:not(.eyebrow),
.light-info-grid p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: stretch;
}

.about-intro {
  display: flex;
  flex-direction: column;
}

.about-intro h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.12;
}

.about-photo {
  display: flex;
  flex: 1;
  margin: 28px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(29, 65, 84, 0.1);
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.about-page-photo {
  min-height: 420px;
}

.about-page-photo img {
  object-position: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.about-metrics span {
  display: flex;
  min-height: 92px;
  flex-direction: column;
  justify-content: center;
  padding: 18px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #3d5965;
  background: var(--paper);
  font-size: 14px;
  font-weight: 800;
}

.about-metrics strong {
  display: block;
  margin-bottom: 4px;
  color: var(--red);
  font-size: 24px;
}

.about-copy {
  padding: 32px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.home-about-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
}

.about-copy p {
  margin: 0;
  color: #67727d !important;
  font-size: 18px !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-weight: 400;
  line-height: 1.65 !important;
}

.about-copy p + p {
  margin-top: 18px;
}

.light-info-grid {
  background: #fbfdff;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.stats-band div {
  min-height: 118px;
  padding: 26px 32px;
  border-right: 1px solid var(--line);
}

.stats-band strong,
.stats-band span {
  display: block;
}

.stats-band strong {
  color: var(--red);
  font-size: 34px;
}

.stats-band span {
  margin-top: 8px;
  color: var(--muted);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 28px;
}

.section.compact {
  padding-top: 42px;
}

.resources-section {
  min-height: 0;
  padding-top: 42px;
  padding-bottom: 36px;
}

.partner-section + .resources-section {
  padding-top: 26px;
}

#supply {
  padding-bottom: 30px;
}

.business-section {
  max-width: none;
  margin: 0;
  padding: 40px max(28px, calc((100vw - var(--max)) / 2 + 28px));
  background: transparent;
}

.business-section .section-heading h2 {
  color: var(--ink);
}

.business-section .section-heading .eyebrow {
  color: var(--red);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 18px;
}

.section-heading h2,
.rfq-band h2,
.download-strip h2,
.brand-story h2,
.market-band h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.12;
}

.product-grid,
.resource-grid,
.application-grid,
.premium-range,
.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 24px;
  position: relative;
  border-color: rgba(207, 229, 239, 0.72);
  box-shadow: 0 14px 26px rgba(29, 65, 84, 0.1);
  transform: translateY(0);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  border-color: #9bcfe2;
  background: #ffffff;
  box-shadow: 0 24px 44px rgba(29, 65, 84, 0.2);
  transform: translateY(-7px);
}

.resource-grid {
  grid-template-columns: repeat(3, 1fr);
}

.resource-card {
  display: flex;
  min-height: 300px;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(29, 65, 84, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.resource-card:hover,
.resource-card:focus-visible {
  border-color: #9bcfe2;
  box-shadow: 0 24px 44px rgba(29, 65, 84, 0.18);
  transform: translateY(-6px);
}

.resource-card span {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.resource-card h3 {
  margin: 14px 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

.resource-card p {
  color: #67727d;
  font-size: 18px;
  line-height: 1.65;
}

.resource-card strong {
  display: inline-flex;
  margin-top: auto;
  padding-top: 12px;
  color: var(--red);
  font-size: 14px;
}

.product-card h3,
.application-grid h3,
.premium-range h3 {
  margin: 18px 0 10px;
  font-size: 20px;
}

.product-card p,
.application-grid p,
.premium-range p,
.feature-row span,
.check-list p,
.story-list p {
  color: var(--muted);
  line-height: 1.55;
}

.product-card p {
  color: #67727d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
}

.product-card strong {
  display: inline-flex;
  margin-top: auto;
  padding-top: 18px;
  color: var(--red);
  font-size: 14px;
  transition: color 180ms ease, transform 180ms ease;
}

.product-card:hover strong,
.product-card:focus-visible strong {
  color: #b7151b;
  transform: translateX(4px);
}

.resource-article-list {
  display: grid;
  max-width: 920px;
  gap: 22px;
  margin: 0 auto;
  padding: 64px 28px 86px;
}

.resource-article {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.resource-article h2 {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1.18;
}

.resource-article h3 {
  margin: 24px 0 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.25;
}

.resource-article p:not(.eyebrow),
.resource-article li {
  color: #67727d;
  font-size: 18px;
  line-height: 1.65;
}

.resource-article p.resource-keywords {
  margin-top: 24px;
  padding: 16px 18px;
  border-left: 4px solid var(--red);
  background: var(--paper);
}

.resource-article ul {
  margin: 18px 0 0;
  padding-left: 22px;
}

.part-icon {
  position: relative;
  display: block;
  width: 74px;
  height: 48px;
}

.part-icon::before,
.part-icon::after {
  position: absolute;
  content: "";
  background: var(--steel);
}

.part-icon.rack::before {
  width: 72px;
  height: 14px;
  top: 17px;
  border-radius: 8px;
}

.part-icon.rack::after {
  width: 28px;
  height: 28px;
  top: 10px;
  left: 22px;
  border-radius: 50%;
  background: var(--red);
}

.part-icon.pump::before {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.part-icon.pump::after {
  width: 38px;
  height: 15px;
  top: 17px;
  left: 36px;
  border-radius: 6px;
}

.part-icon.joint::before {
  width: 58px;
  height: 14px;
  top: 18px;
  transform: rotate(-18deg);
  border-radius: 8px;
}

.part-icon.joint::after {
  width: 28px;
  height: 28px;
  top: 10px;
  left: 42px;
  border-radius: 50%;
  background: var(--red);
}

.part-icon.arm::before {
  width: 72px;
  height: 18px;
  top: 18px;
  transform: skewX(-24deg);
  border-radius: 8px;
}

.part-icon.arm::after {
  width: 20px;
  height: 20px;
  top: 17px;
  left: 8px;
  border-radius: 50%;
  background: var(--red);
}

.part-icon.seal::before,
.part-icon.oring::before,
.part-icon.gasket::before,
.part-icon.bushing::before {
  width: 48px;
  height: 48px;
  border: 10px solid var(--steel);
  border-radius: 50%;
  background: transparent;
}

.part-icon.seal::after {
  width: 22px;
  height: 22px;
  top: 13px;
  left: 13px;
  border-radius: 50%;
  background: var(--red);
}

.part-icon.oring::before {
  border-width: 8px;
  border-color: var(--red);
}

.part-icon.oring::after {
  width: 18px;
  height: 18px;
  top: 15px;
  left: 48px;
  border: 6px solid var(--steel);
  border-radius: 50%;
  background: transparent;
}

.part-icon.gasket::before {
  border-radius: 8px;
  transform: rotate(8deg);
}

.part-icon.gasket::after {
  width: 14px;
  height: 14px;
  top: 17px;
  left: 17px;
  border-radius: 50%;
  background: var(--red);
}

.part-icon.cover::before {
  width: 68px;
  height: 28px;
  top: 10px;
  border-radius: 16px 16px 8px 8px;
  background: var(--steel);
}

.part-icon.cover::after {
  width: 42px;
  height: 14px;
  top: 17px;
  left: 13px;
  border-radius: 8px;
  background: var(--red);
}

.part-icon.kit::before {
  width: 56px;
  height: 42px;
  top: 3px;
  border: 3px solid var(--steel);
  border-radius: 8px;
  background: transparent;
}

.part-icon.kit::after {
  width: 36px;
  height: 8px;
  top: 20px;
  left: 10px;
  border-radius: 8px;
  background: var(--red);
  box-shadow: 0 12px 0 var(--steel);
}

.part-icon.bushing::before {
  border-color: var(--steel);
  transform: scaleX(1.18);
}

.part-icon.bushing::after {
  width: 38px;
  height: 8px;
  top: 20px;
  left: 42px;
  border-radius: 8px;
  background: var(--red);
}

.part-icon.clamp::before {
  width: 54px;
  height: 36px;
  top: 6px;
  border: 8px solid var(--steel);
  border-right-color: transparent;
  border-radius: 50%;
  background: transparent;
}

.part-icon.clamp::after {
  width: 24px;
  height: 12px;
  top: 18px;
  left: 48px;
  border-radius: 4px;
  background: var(--red);
}

.part-icon.spring::before {
  width: 64px;
  height: 32px;
  top: 8px;
  left: 4px;
  border-top: 8px solid var(--steel);
  border-bottom: 8px solid var(--steel);
  border-radius: 16px;
  background: transparent;
}

.part-icon.spring::after {
  width: 54px;
  height: 8px;
  top: 20px;
  left: 9px;
  border-radius: 8px;
  background: var(--red);
  box-shadow: 0 -12px 0 -2px var(--steel), 0 12px 0 -2px var(--steel);
}

.part-icon.belt::before {
  width: 70px;
  height: 36px;
  top: 6px;
  border: 8px solid var(--steel);
  border-radius: 50%;
  background: transparent;
  transform: rotate(-10deg);
}

.part-icon.belt::after {
  width: 46px;
  height: 16px;
  top: 18px;
  left: 14px;
  border-radius: 50%;
  border: 4px solid var(--red);
  background: transparent;
  transform: rotate(-10deg);
}

.contrast {
  max-width: none;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--light-blue);
  color: var(--ink);
}

.contrast .two-column {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
}

.two-column,
.brand-story,
.download-strip,
.row-heading {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 48px;
  align-items: start;
}

.check-list {
  display: grid;
  gap: 14px;
}

.check-list p {
  margin: 0;
  padding: 18px 20px;
  border-left: 3px solid var(--red);
  background: rgba(255, 255, 255, 0.76);
  color: #4c6470;
}

.feature-row {
  grid-template-columns: repeat(3, 1fr);
}

.feature-row article {
  min-height: 150px;
  padding: 24px;
  border-top: 4px solid var(--red);
  background: var(--paper);
}

.feature-row strong,
.feature-row span {
  display: block;
}

.feature-row strong {
  margin-bottom: 12px;
  font-size: 19px;
}

.advantage-showcase {
  display: grid;
  gap: 28px;
}

.advantage-banner {
  position: relative;
  display: grid;
  height: 250px;
  grid-template-columns: minmax(0, 0.5fr) minmax(460px, 0.5fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--radius);
  background: #1b789f;
  box-shadow: 0 18px 42px rgba(29, 65, 84, 0.14);
}

.advantage-banner::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  left: 48%;
  width: 118px;
  content: "";
  background: #1b789f;
  transform: skewX(-24deg);
  transform-origin: top;
}

.advantage-banner-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: 690px;
  padding: 18px 44px 14px;
  color: var(--white);
}

.advantage-banner-copy .eyebrow {
  color: var(--red);
}

.advantage-banner-copy h2 {
  max-width: 610px;
  margin: 0 0 14px;
  color: var(--white);
  font-size: 36px;
  line-height: 1.12;
}

.advantage-banner-copy p:not(.eyebrow) {
  max-width: 590px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
}

.advantage-banner-media {
  position: relative;
  z-index: 1;
  margin: 0;
  min-height: 0;
  height: 100%;
}

.advantage-banner-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

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

.advantage-grid article {
  display: flex;
  min-height: 124px;
  grid-column: span 2;
  align-items: center;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(207, 229, 239, 0.72);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 28px rgba(29, 65, 84, 0.1);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.advantage-grid article:nth-child(4),
.advantage-grid article:nth-child(5),
.advantage-grid article:nth-child(6),
.advantage-grid article:nth-child(7) {
  grid-column: span 3;
}

.advantage-grid article:hover,
.advantage-grid article:focus-within {
  border-color: #9bcfe2;
  box-shadow: 0 24px 44px rgba(29, 65, 84, 0.2);
  transform: translateY(-6px);
}

.advantage-icon {
  display: inline-flex;
  flex: 0 0 78px;
  width: 78px;
  height: 78px;
  align-items: center;
  justify-content: center;
  border: 3px solid #1b789f;
  border-radius: 50%;
  background: #ffffff;
}

.advantage-icon .part-icon {
  width: 52px;
  height: 42px;
  transform: scale(0.72);
}

.advantage-grid strong {
  display: block;
  color: #273540;
  font-size: 21px;
  line-height: 1.22;
}

.advantage-grid p {
  margin: 8px 0 0;
  color: #67727d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
}

.partner-grid {
  display: grid;
  gap: 18px;
}

.partner-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.business-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: repeat(5, 82px);
  gap: 18px 26px;
}

.business-image,
.business-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(29, 65, 84, 0.08);
}

.business-image {
  display: grid;
  place-items: center;
  background: #ffffff;
}

.business-image img {
  width: 100%;
  height: 100%;
  padding: 14px;
  object-fit: contain;
}

.business-image.photo-fill img {
  padding: 0;
  object-fit: cover;
}

.business-image.photo-focus-top img {
  object-position: center bottom;
}

.business-image.is-placeholder {
  border: 1px dashed #bcd8e5;
  background: #f5fafc;
}

.business-image.is-placeholder span {
  color: #7a96a5;
  font-size: 15px;
  font-weight: 900;
}

.business-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 24px;
  color: var(--ink);
  background: #ffffff;
}

.tile-left-top {
  grid-column: 1;
  grid-row: 1 / 4;
}

.tile-left-card {
  grid-column: 1;
  grid-row: 4 / 6;
}

.tile-center-card {
  grid-column: 2;
  grid-row: 1 / 3;
}

.tile-center-bottom {
  grid-column: 2;
  grid-row: 3 / 6;
}

.tile-right-top {
  grid-column: 3;
  grid-row: 1 / 4;
}

.tile-right-card {
  grid-column: 3;
  grid-row: 4 / 6;
}

.business-index {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.business-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
}

.business-card p {
  margin: 10px 0 0;
  color: #67727d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
}

.business-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.business-card li {
  position: relative;
  padding-left: 24px;
}

.business-card li::before {
  position: absolute;
  top: 0.4em;
  left: 2px;
  width: 7px;
  height: 12px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  content: "";
  transform: rotate(45deg);
}

.business-card li,
.partner-grid p {
  color: #67727d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
}

.partner-grid {
  grid-template-columns: repeat(4, 1fr);
}

.partner-section {
  max-width: var(--max);
  min-height: auto;
  margin: 0 auto;
  padding: 38px 28px 24px;
  background: transparent;
}

.partner-section .section-heading {
  margin-bottom: 16px;
}

.partner-grid article {
  display: flex;
  flex-direction: column;
  min-height: 190px;
  padding: 22px;
}

.partner-grid strong {
  display: block;
  min-height: 52px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.partner-grid p {
  margin: 0;
}

.rfq-band {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 38px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto 80px;
  padding: 42px;
  border-radius: var(--radius);
  color: var(--ink);
  background: linear-gradient(135deg, #ffffff 0%, var(--light-blue) 100%);
  border: 1px solid var(--line);
}

.rfq-band.home-rfq {
  max-width: none;
  min-height: 350px;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 0.62fr) minmax(320px, 0.88fr);
  gap: 34px;
  align-items: stretch;
  margin: 0;
  padding: 40px max(28px, calc((100vw - var(--max)) / 2 + 28px));
  border: 0;
  border-radius: 0;
  color: var(--white);
  background: #20262b;
}

.rfq-band.home-rfq .eyebrow {
  color: #ff5058;
}

.rfq-band.home-rfq h2 {
  color: var(--white);
}

.rfq-band.home-rfq .social-link {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.1);
}

.rfq-band p:not(.eyebrow) {
  color: #67727d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
}

.rfq-band.home-rfq p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.home-rfq-copy {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  max-width: 500px;
}

.home-rfq-links {
  min-width: 0;
  justify-self: center;
  width: 100%;
  max-width: 280px;
  margin-left: 40px;
}

.home-rfq-links .eyebrow {
  margin-bottom: 10px;
  padding-left: 8px;
  text-align: left;
}

.home-rfq-link-columns {
  display: grid;
  gap: 6px 0;
  align-content: start;
  width: 100%;
  text-align: left;
}

.home-rfq-link-columns a {
  display: flex;
  width: 100%;
  min-height: 34px;
  align-items: center;
  padding: 0 8px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.35;
  transition: color 120ms ease, background-color 120ms ease;
}

.home-rfq-link-columns a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.home-rfq-link-more {
  font-weight: 700;
}

.contact-page-rfq {
  grid-template-columns: minmax(0, 0.94fr) minmax(220px, 0.6fr) minmax(320px, 0.84fr);
  gap: 34px;
  align-items: stretch;
}

.contact-page-rfq .home-rfq-copy {
  max-width: none;
}

.contact-page-rfq .rfq-form .button {
  margin-top: auto;
}

.contact-page-rfq .home-rfq-links .eyebrow {
  text-align: left;
}

.contact-page-rfq .home-rfq-link-columns a {
  color: #546671;
}

.contact-page-rfq .home-rfq-link-columns a:hover {
  color: var(--red);
  background: rgba(215, 233, 242, 0.55);
}

.contact-info-block {
  display: grid;
  gap: 13px;
  margin-top: 18px;
  color: #51606b;
  font-family: Arial, Helvetica, sans-serif;
}

.contact-info-block .eyebrow {
  margin: 0;
  color: var(--red);
  font-size: 13px;
  letter-spacing: 0;
}

.contact-info-block dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.contact-info-row {
  display: grid;
  grid-template-columns: 34px 76px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-height: 34px;
}

.contact-info-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--red);
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.contact-info-address dd {
  max-width: 430px;
}

.contact-info-block dt {
  margin: 0;
  color: #46535e;
  font-weight: 800;
  line-height: 1.65;
}

.contact-info-block dd {
  margin: 0;
  color: #5c6b76;
  font-size: 18px;
  line-height: 1.65;
}

.contact-info-block a {
  color: inherit;
}

.contact-info-block a:hover {
  color: var(--red);
}

.rfq-band.home-rfq:not(.product-detail-rfq) .rfq-form,
.contact-page-rfq .rfq-form,
.product-detail-rfq .rfq-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 396px;
  height: 100%;
  align-self: stretch;
  justify-self: end;
}

.rfq-band.home-rfq .rfq-form {
  gap: 8px;
}

.rfq-band.home-rfq .rfq-form input {
  min-height: 43px;
}

.rfq-band.home-rfq .rfq-form textarea {
  flex: 1 1 auto;
  min-height: 71px;
  padding: 11px 14px;
  resize: none;
}

.rfq-band.home-rfq .rfq-form .button {
  min-height: 43px;
  margin-top: auto;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
}

.social-link {
  display: inline-flex;
  width: 42px;
  height: 42px;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #cfe5ef;
  border-radius: 8px;
  color: #284452;
  background: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.social-link img {
  width: 24px;
  height: 24px;
}

.social-icon {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  font-weight: 900;
  line-height: 1;
}

.facebook-link .social-icon {
  background: #1877f2;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
}

.contact-advantage-section {
  padding-bottom: 24px;
}

.rfq-form {
  display: grid;
  gap: 12px;
}

.rfq-form input,
.rfq-form textarea,
.search-strip input {
  width: 100%;
  border: 1px solid #cfe5ef;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
}

.rfq-form input {
  min-height: 48px;
  padding: 0 14px;
}

.rfq-form textarea {
  min-height: 108px;
  padding: 14px;
  resize: vertical;
}

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

.form-status {
  display: none;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.form-status:not(:empty) {
  display: block;
  margin-top: 6px;
}

.form-status.is-loading {
  color: #6c7a85;
}

.form-status.is-success {
  color: #1d7a43;
}

.form-status.is-error {
  color: #c62026;
}

.catalog-theme {
  background: #fbfbf8;
}

.catalog-theme .eyebrow,
.catalog-theme .text-link {
  color: var(--teal);
}

.catalog-hero {
  display: grid;
  min-height: 660px;
  grid-template-columns: minmax(360px, 0.88fr) 1.12fr;
  align-items: stretch;
  background: #f4f6f5;
}

.catalog-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 74px 56px;
}

.catalog-panel h1 {
  color: #1c2528;
}

.catalog-panel p {
  color: var(--muted);
}

.catalog-hero img {
  height: 100%;
  min-height: 660px;
  object-fit: cover;
}

.search-strip {
  display: grid;
  grid-template-columns: 1fr 132px;
  gap: 10px;
  max-width: 590px;
  margin: 28px 0 18px;
}

.search-strip input {
  min-height: 50px;
  padding: 0 16px;
  border-color: #cfd8dc;
}

.quick-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-tags span,
.market-list span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid #ccd8dc;
  border-radius: 8px;
  color: #445056;
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.catalog-table {
  border: 1px solid #d7e0e2;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
}

.catalog-row {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 1.4fr 80px;
  gap: 18px;
  align-items: center;
  min-height: 64px;
  padding: 0 20px;
  border-top: 1px solid #e1e8ea;
  color: #4c5a60;
}

.catalog-row:first-child {
  border-top: 0;
}

.catalog-row.header {
  min-height: 52px;
  color: #172126;
  background: #edf4f5;
  font-weight: 800;
}

.catalog-row a {
  color: var(--teal);
  font-weight: 800;
}

.text-link {
  justify-self: end;
  font-weight: 800;
}

.tint {
  max-width: none;
  background: #eaf2f3;
}

.tint .section-heading,
.tint .application-grid {
  max-width: var(--max);
  margin-right: auto;
  margin-left: auto;
}

.application-grid {
  grid-template-columns: repeat(3, 1fr);
}

.application-grid article {
  padding: 24px;
}

.download-strip {
  align-items: center;
  padding: 34px;
  border: 1px solid #d7e0e2;
  border-radius: var(--radius);
  background: var(--white);
}

.download-strip .button {
  justify-self: end;
}

.light-rfq {
  color: var(--ink);
  background: #eaf2f3;
}

.light-rfq p:not(.eyebrow) {
  color: var(--muted);
}

.catalog-title-band {
  color: var(--ink);
  background: linear-gradient(135deg, #ffffff 0%, var(--light-blue) 100%);
  border-bottom: 1px solid var(--line);
}

.catalog-title-band > div {
  display: flex;
  min-height: 142px;
  flex-direction: column;
  justify-content: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 28px;
  text-align: left;
}

.catalog-title-band h1 {
  max-width: 780px;
  margin: 0;
  font-size: 38px;
  line-height: 1.12;
}

.catalog-title-band p:not(.eyebrow) {
  max-width: 720px;
  margin-right: 0;
  margin-left: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.catalog-layout {
  display: grid;
  max-width: 1320px;
  grid-template-columns: 272px 1fr;
  gap: 34px;
  margin: 0 auto;
  padding: 54px 28px 80px;
}

.category-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  overflow: hidden;
}

.category-sidebar.category-dock {
  box-shadow: none;
}

.category-sidebar .category-dock-list {
  display: grid;
}

.category-sidebar .category-dock-list a {
  justify-content: flex-start;
}

.category-dock-list a.active {
  color: var(--red);
  background: #fff4f5;
  font-weight: 700;
}

.product-list-area {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 22px;
}

.list-toolbar {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid #dbe9ef;
}

.list-toolbar p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.red-link {
  color: var(--red);
}

.catalog-product-grid {
  display: grid;
  gap: 14px;
}

.product-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
  padding: 6px 0 2px;
}

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

.product-pagination a,
.product-pagination .page-ellipsis {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #dfe5e9;
  background: #ffffff;
  color: #101820;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.product-pagination a {
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.product-pagination a:hover,
.product-pagination a:focus-visible {
  border-color: var(--red);
  color: var(--red);
}

.product-pagination a.active {
  border-color: var(--red);
  background: var(--red);
  color: #ffffff;
}

.product-pagination a.disabled {
  cursor: default;
  opacity: 0.38;
  pointer-events: none;
}

.product-pagination .page-ellipsis {
  border-color: transparent;
  background: transparent;
}

@media (max-width: 520px) {
  .product-pagination {
    gap: 8px;
    margin-top: 26px;
  }

  .product-pagination a,
  .product-pagination .page-ellipsis {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}

.catalog-product-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  min-height: 0;
  align-items: center;
  padding: 14px 18px;
  border: 1px solid #E6EDF5;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: none;
  transition: box-shadow 160ms ease;
}

.catalog-product-card:hover {
  box-shadow: 0 14px 30px rgba(29, 65, 84, 0.12);
}

.product-visual,
.product-detail-visual {
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: #ffffff;
}

.product-visual {
  width: 220px;
  height: 220px;
  align-self: center;
  justify-self: start;
  padding: 14px;
  border: 1px solid #e3edf3;
  background: #ffffff;
}

.catalog-product-info {
  display: flex;
  min-height: 0;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.catalog-product-info.has-no-code {
  min-height: 220px;
  justify-content: space-evenly;
  gap: 10px;
}

.product-visual .part-icon,
.product-detail-visual .part-icon {
  transform: scale(1.7);
}

.product-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.product-code {
  margin: 0;
  min-height: 15px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
}

.catalog-product-card h2 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  font-size: 23px;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.catalog-product-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  min-width: 0;
  max-width: 620px;
  margin: 0;
}

.catalog-product-card dl div,
.spec-list div {
  min-width: 0;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--paper);
}

.catalog-product-card dt,
.spec-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.catalog-product-card dd,
.spec-list dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 800;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.catalog-product-card dl div {
  min-height: 70px;
  padding: 11px 14px;
  border-radius: 8px;
}

.catalog-product-info .button {
  width: auto;
  min-height: 38px;
  align-self: flex-start;
  margin-top: 4px;
  padding-top: 0;
  padding: 0 20px;
  border-radius: 7px;
  font-size: 15px;
}


.empty-results {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.rfq-band.home-rfq.product-detail-rfq {
  max-width: none;
  min-height: 350px;
  grid-template-columns: minmax(0, 0.9fr) minmax(220px, 0.62fr) minmax(320px, 0.88fr);
  gap: 34px;
  align-items: start;
  margin: 18px 0 0;
  padding: 48px max(28px, calc((100vw - var(--max)) / 2 + 28px));
  border: 0;
  border-radius: 0;
}

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

.product-detail-rfq p:not(.eyebrow) {
  max-width: 560px;
}

.product-detail-rfq .contact-socials {
  margin-top: 18px;
}

.product-detail-rfq .rfq-form {
  gap: 10px;
}

.product-detail-rfq .rfq-form textarea {
  min-height: 92px;
}

.empty-results h2 {
  margin: 0 0 10px;
  font-size: 26px;
}

.empty-results p {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.65;
}

.product-detail-hero {
  display: grid;
  max-width: var(--max);
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
  margin: 0 auto;
  padding: 78px 28px 72px;
}

.product-gallery {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.product-detail-visual {
  width: min(100%, 440px);
  min-height: 0;
  aspect-ratio: 1 / 1;
  padding: 18px;
  border: 1px solid var(--line);
  background: #ffffff;
  cursor: zoom-in;
  overflow: hidden;
}

.product-detail-visual:disabled {
  cursor: default;
}

.detail-product-image {
  transition: transform 180ms ease;
}

.product-detail-visual:not(:disabled):hover .detail-product-image {
  transform: scale(1.18);
}

.product-thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: min(100%, 440px);
}

.product-thumbnails button {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  cursor: pointer;
}

.product-thumbnails button.active {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(215, 25, 32, 0.12);
}

.product-thumbnails img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: rgba(8, 16, 22, 0.82);
}

.image-lightbox.open {
  display: flex;
}

.image-lightbox img {
  width: auto;
  height: auto;
  max-width: min(96vw, 1100px);
  max-height: 92vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  cursor: zoom-out;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.product-detail-copy h1 {
  margin: 0;
  font-size: 36px;
  line-height: 1.12;
}

.product-detail-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.product-detail-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.product-detail-spec-panel {
  width: 68%;
  max-width: 100%;
  align-self: flex-start;
  margin-top: 14px;
}

.button.ghost.dark-ghost {
  border-color: #cfd6dc;
  color: var(--ink);
  background: var(--white);
}

.button.ghost.dark-ghost:hover {
  border-color: var(--red);
  color: var(--red);
}

.product-detail-body {
  display: grid;
  max-width: var(--max);
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
  gap: 24px;
  margin: 0 auto 80px;
  padding: 0 28px;
}

.spec-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.spec-panel h2 {
  margin: 0 0 18px;
  font-size: 24px;
}

.product-tabs-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 28px 62px;
}

.product-tabs {
  display: flex;
  gap: 34px;
  border-bottom: 1px solid #d9e5eb;
}

.product-tab {
  position: relative;
  padding: 0 0 16px;
  border: 0;
  color: #22313a;
  background: transparent;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.product-tab.is-active {
  color: var(--red);
}

.product-tab.is-active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
}

.product-tab-panels {
  padding-top: 32px;
}

.product-tab-panel p {
  margin: 0;
  color: #67727d;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.65;
}

.product-tab-panel p + p {
  margin-top: 18px;
}

.product-tab-panel h3 {
  margin: 24px 0 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.product-tab-panel ul {
  margin: 0;
  padding-left: 24px;
}

.product-tab-panel li {
  color: #67727d;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.65;
}

.product-tab-panel ul + p,
.product-tab-panel p + ul {
  margin-top: 18px;
}

.product-tab-panel li + li {
  margin-top: 6px;
}

.practicality-content {
  display: grid;
  gap: 18px;
  max-width: 980px;
}

.product-tab-panel .practicality-content h3 {
  margin: 24px 0 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
}

.product-tab-panel .practicality-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 24px;
  list-style: disc;
}

.product-tab-panel .practicality-list-oem {
  grid-template-columns: 1fr;
}

.product-tab-panel .practicality-list-oem li {
  font-weight: 400;
}

.recommended-products {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 28px 82px;
}

.recommended-products .section-heading {
  max-width: none;
  margin-bottom: 30px;
}

.recommended-products .section-heading h2 {
  font-size: 34px;
}

.recommended-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  row-gap: 28px;
  column-gap: 30px;
}

.recommended-card {
  display: flex;
  width: 100%;
  max-width: 292px;
  justify-self: center;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.recommended-card:hover,
.recommended-card:focus-visible {
  border-color: #9bcfe2;
  box-shadow: 0 18px 34px rgba(29, 65, 84, 0.14);
  transform: translateY(-4px);
}

.recommended-visual {
  display: grid;
  place-items: center;
  justify-items: center;
  align-items: center;
  aspect-ratio: 1 / 0.76;
  margin-bottom: 8px;
  padding: 6px;
  border: 1px solid #e4eef3;
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
}

.recommended-visual .product-image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  object-fit: contain;
  object-position: center center;
  transform: none;
}

.recommended-card.category-ptfe-gasket .recommended-visual {
  padding: 0;
}

.recommended-card.category-ptfe-gasket .recommended-visual .product-image {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  margin: 0;
  object-fit: cover;
  transform: none;
}

body.product-detail-page .recommended-visual {
  padding: 10px;
}

body.product-detail-page .recommended-visual .product-image,
body.product-detail-page .recommended-card.category-ptfe-gasket .recommended-visual .product-image {
  width: auto;
  height: auto;
  max-width: 96%;
  max-height: 96%;
  margin: auto;
  object-fit: contain;
  object-position: center center;
  transform: none;
}

/* Repair-kit photos include a large white studio border. Let the recommendation
   image fill a 4:3 frame so the seals and kit contents remain the visual focus. */
body.product-detail-page .recommended-card.category-steering-rack-repair-seal-kits .recommended-visual {
  aspect-ratio: 4 / 3;
  padding: 0;
  background: #f7f9fb;
}

body.product-detail-page .recommended-card.category-steering-rack-repair-seal-kits .recommended-visual .product-image {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center;
}

.recommended-card h3 {
  margin: 0;
  color: #24313a;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

/* PTFE recommendation images are deliberately edge-to-edge. Their source
   artwork already includes its own neutral background, so an extra card inset
   created a conspicuous white strip on both sides. */
body.product-detail-page .ptfe-recommended-card {
  padding: 0;
  overflow: hidden;
}

body.product-detail-page .ptfe-recommended-card .recommended-visual {
  aspect-ratio: 4 / 3;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 7px 7px 0 0;
  background: #f7f9fa;
}

body.product-detail-page .ptfe-recommended-card .recommended-visual .product-image {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
}

body.product-detail-page .ptfe-recommended-card h3 {
  padding: 9px 8px 10px;
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 14px 16px;
  border-left: 3px solid var(--red);
  background: var(--paper);
  color: var(--muted);
  line-height: 1.5;
}

.premium-theme {
  color: #ede9df;
  background: #0d1013;
}

.premium-theme .brand-mark {
  color: #16120a;
  background: var(--gold);
}

.premium-theme .eyebrow {
  color: var(--gold);
}

.premium-hero {
  min-height: 720px;
  color: var(--white);
  overflow: hidden;
}

.premium-hero img {
  height: 720px;
  object-fit: cover;
}

.premium-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.24) 54%, rgba(0, 0, 0, 0.1));
}

.premium-copy {
  position: absolute;
  z-index: 2;
  top: 52%;
  left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  max-width: 650px;
  transform: translateY(-50%);
}

.premium-copy h1 {
  font-size: 86px;
}

.dark-section {
  color: #eee9de;
}

.dark-section .section-heading h2,
.brand-story h2,
.market-band h2 {
  color: #fff8e8;
}

.premium-range {
  grid-template-columns: repeat(3, 1fr);
}

.premium-range article {
  min-height: 235px;
  padding: 24px;
  border-color: rgba(255, 255, 255, 0.14);
  background: #171b1f;
}

.premium-range span {
  color: var(--gold);
  font-weight: 900;
}

.premium-range p {
  color: rgba(255, 255, 255, 0.64);
}

.brand-story {
  color: #181d22;
  background: #f3efe5;
}

.brand-story,
.market-band {
  max-width: none;
  padding-right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  padding-left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
}

.story-list {
  display: grid;
  gap: 16px;
}

.story-list p {
  margin: 0;
  color: #50565b;
}

.story-list strong {
  color: #1f252b;
}

.market-band {
  color: #f3efe5;
  background: #12161a;
}

.market-band h2 {
  max-width: 780px;
}

.market-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.market-list span {
  border-color: rgba(231, 176, 66, 0.42);
  color: #ffe8a8;
  background: rgba(231, 176, 66, 0.08);
}

.premium-rfq {
  background: #1a1e23;
}

@media (max-width: 980px) {
  .preview-grid,
  .product-grid,
  .resource-grid,
  .application-grid,
  .premium-range,
  .feature-row,
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .advantage-banner {
    grid-template-columns: 1fr;
  }

  .advantage-banner::after {
    display: none;
  }

  .advantage-banner-copy {
    padding: 34px;
  }

  .advantage-banner-media {
    min-height: 280px;
  }

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

  .advantage-grid article,
  .advantage-grid article:nth-child(4),
  .advantage-grid article:nth-child(5),
  .advantage-grid article:nth-child(6),
  .advantage-grid article:nth-child(7) {
    grid-column: auto;
  }

  .business-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .tile-left-top,
  .tile-left-card,
  .tile-center-card,
  .tile-center-bottom,
  .tile-right-top,
  .tile-right-card {
    grid-column: auto;
    grid-row: auto;
  }

  .split-hero,
  .catalog-hero,
  .rfq-band,
  .two-column,
  .home-intro-shell,
  .hero-stage-main,
  .about-layout,
  .brand-story,
  .download-strip,
  .row-heading,
  .catalog-layout,
  .product-detail-hero,
  .product-detail-body,
  .advantage-showcase {
    grid-template-columns: 1fr;
  }

  .category-sidebar {
    position: static;
  }

  .about-intro {
    position: static;
  }

  .about-photo {
    flex: none;
  }

  .about-photo img {
    height: auto;
    min-height: 0;
    aspect-ratio: 1.38 / 1;
  }

  .catalog-product-card {
    grid-template-columns: 220px 1fr;
  }

  .product-detail-spec-panel {
    width: 100%;
  }

  .product-tabs {
    gap: 24px;
    flex-wrap: wrap;
  }

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

  .recommended-card {
    max-width: none;
  }

  .category-dock {
    max-width: 420px;
  }

  .hero-stage-media {
    padding: 0;
  }

  .product-visual {
    width: 220px;
    height: 220px;
  }

  .catalog-product-info {
    min-height: 0;
  }

  .list-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .clean-header {
    align-items: center;
    flex-wrap: wrap;
    padding-top: 10px;
    padding-bottom: 0;
  }

  .site-nav {
    order: 2;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .whatsapp-cta {
    margin-left: auto;
  }

  .site-search {
    margin-left: auto;
  }

  .business-section,
  .rfq-band.home-rfq {
    padding-right: 28px;
    padding-left: 28px;
  }

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

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

  .home-rfq-links {
    order: 3;
    grid-column: 1 / -1;
    margin-left: 0;
  }

  .language-switcher {
    right: 18px;
    margin-left: 0;
  }

  .hero-media img,
  .hero-slider,
  .catalog-hero img {
    min-height: 420px;
  }

  .hero-slide {
    grid-template-columns: minmax(0, 0.52fr) minmax(340px, 0.48fr);
  }

  .hero-slide-copy {
    padding: 34px 30px 32px;
  }

  .hero-slide-copy h1,
  .hero-slide-copy h2 {
    font-size: 38px;
  }

  .text-link,
  .download-strip .button {
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .preview-header,
  .site-header {
    position: relative;
    min-height: auto;
    flex-wrap: wrap;
    overflow-x: hidden;
    padding: 12px 18px 14px;
  }

  .site-header.transparent {
    position: absolute;
  }

  .preview-nav,
  .site-nav {
    width: calc(100vw - 36px);
    max-width: 100%;
    min-width: 0;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    overflow-x: visible;
  }

  .rfq-band.home-rfq,
  .contact-page-rfq {
    grid-template-columns: 1fr;
  }

  .home-rfq-links {
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .header-cta {
    min-width: 100%;
  }

  .preview-hero {
    padding: 48px 18px 18px;
  }

  .preview-hero h1,
  .hero-copy h1,
  .catalog-panel h1,
  .about-intro h2,
  .section-heading h2,
  .rfq-band h2,
  .download-strip h2,
  .brand-story h2,
  .market-band h2 {
    font-size: 34px;
  }

  .premium-copy h1 {
    font-size: 60px;
  }

  .preview-grid,
  .product-grid,
  .resource-grid,
  .application-grid,
  .premium-range,
  .feature-row,
  .about-metrics,
  .partner-grid,
  .stats-band {
    grid-template-columns: 1fr;
  }

  .advantage-banner-copy {
    padding: 28px 24px;
  }

  .advantage-banner-copy h2 {
    font-size: 31px;
  }

  .advantage-banner-media {
    min-height: 220px;
  }

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

  .advantage-grid article,
  .advantage-grid article:nth-child(4),
  .advantage-grid article:nth-child(5),
  .advantage-grid article:nth-child(6),
  .advantage-grid article:nth-child(7) {
    grid-column: auto;
  }

  .business-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .hero-copy,
  .catalog-panel {
    padding: 46px 24px 32px;
  }

  .resource-card {
    min-height: 0;
  }

  .resource-article-list {
    padding: 48px 18px 64px;
  }

  .resource-article {
    padding: 24px;
  }

  .resource-article h2 {
    font-size: 27px;
  }

  .industrial-theme .hero-media,
  .hero-stage-media {
    padding: 0 18px 28px;
  }

  .hero-slider--feature {
    min-height: 420px;
  }

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

  .hero-slide-copy {
    position: absolute;
    z-index: 2;
    right: 18px;
    bottom: 18px;
    left: 18px;
    max-width: none;
    padding: 18px 18px 16px;
    border-radius: 8px;
    background: rgba(18, 31, 40, 0.78) !important;
    backdrop-filter: blur(6px);
  }

  .hero-slide-copy h1,
  .hero-slide-copy h2 {
    font-size: 29px;
    color: #ffffff;
  }

  .hero-slide-copy p:not(.eyebrow) {
    max-width: none;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-slide-visual {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-slide-media-graphic {
    padding: 24px 18px 104px;
  }

  .hero-graphic-cluster {
    min-height: 210px;
  }

  .hero-graphic-ring--lg {
    width: 148px;
    height: 148px;
    top: 24px;
    left: 26px;
    border-width: 12px;
  }

  .hero-graphic-ring--md {
    width: 104px;
    height: 104px;
    top: 34px;
    right: 36px;
    border-width: 10px;
  }

  .hero-graphic-ring--sm {
    width: 78px;
    height: 78px;
    right: 88px;
    bottom: 28px;
    border-width: 8px;
  }

  .hero-graphic-icon {
    right: 28px;
    bottom: 22px;
    transform: scale(1.2);
  }

  .hero-graphic-boot {
    width: 88px;
    height: 144px;
  }

  .hero-graphic-boot--left {
    left: 34px;
  }

  .hero-graphic-boot--right {
    left: 142px;
  }

  .hero-graphic-tile--one {
    top: 20px;
    left: 20px;
    width: 126px;
    height: 92px;
  }

  .hero-graphic-tile--two {
    top: 56px;
    left: 116px;
    width: 142px;
    height: 102px;
  }

  .hero-graphic-tile--three {
    right: 24px;
    bottom: 26px;
    width: 116px;
    height: 88px;
  }

  .catalog-hero,
  .split-hero {
    min-height: 0;
  }

  .home-intro-shell {
    margin-top: 18px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .category-dock-head {
    min-height: 56px;
  }

  .category-dock-list a,
  .category-dock-more {
    min-height: 50px;
  }

  .hero-stage-main {
    min-height: 0;
  }

  .search-strip {
    grid-template-columns: 1fr;
  }

  .catalog-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px;
  }

  .catalog-row.header {
    display: none;
  }

  .section {
    padding: 32px 18px;
  }

  .business-section {
    padding: 32px 18px;
  }

  .resources-section {
    min-height: 0;
    padding-top: 32px;
    padding-bottom: 30px;
  }

  .partner-section + .resources-section {
    padding-top: 22px;
  }

  .resource-card {
    min-height: 300px;
  }

  .rfq-band.home-rfq.product-detail-rfq {
    margin: 24px 18px 56px;
    padding: 26px;
    border-radius: 10px;
  }

  .advantage-grid article,
  .partner-grid article {
    min-height: 0;
    padding: 20px;
  }

  .advantage-grid p,
  .business-card p,
  .business-card li,
  .partner-grid p {
    font-size: 18px;
    line-height: 1.58;
  }

  .business-image {
    min-height: 230px;
  }

  .business-card {
    padding: 24px;
  }

  .contrast .two-column {
    padding: 0 18px;
  }

  .rfq-band {
    margin: 0 18px 58px;
    padding: 26px;
  }

  .partner-section {
    min-height: auto;
    margin: 0 auto;
    padding: 32px 18px 20px;
  }

  .rfq-band.home-rfq {
    min-height: auto;
    grid-template-columns: 1fr;
    margin: 0;
    padding: 32px 18px;
    border-radius: 0;
  }

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

  .catalog-title-band > div,
  .catalog-layout,
  .product-detail-hero,
  .product-detail-body {
    padding-right: 18px;
    padding-left: 18px;
  }

  .catalog-title-band h1 {
    font-size: 28px;
  }

  .product-detail-copy h1 {
    font-size: 34px;
  }

  .catalog-product-card,
  .catalog-product-card dl,
  .spec-list {
    grid-template-columns: 1fr;
  }

  .product-tabs {
    gap: 18px;
  }

  .recommended-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .catalog-product-card {
    min-height: 0;
    gap: 14px;
    padding: 14px;
  }

  .catalog-product-info {
    min-height: 0;
  }

  .catalog-product-card dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
  }

  .catalog-product-info .button {
    width: 100%;
    justify-content: center;
  }

  .product-visual {
    width: min(100%, 220px);
    height: auto;
    aspect-ratio: 1 / 1;
    justify-self: center;
  }

  .product-detail-visual {
    width: min(100%, 360px);
    min-height: 0;
  }

  .product-gallery {
    justify-items: center;
  }

  .product-thumbnails {
    justify-content: center;
  }

  .logo-lockup img {
    max-width: 118px;
    height: 48px;
  }

  .site-nav {
    gap: 0;
  }

  .site-nav a {
    min-height: 40px;
    padding: 0 9px;
    font-size: 14px;
  }

  .whatsapp-cta {
    order: 1;
    min-height: 36px;
    padding: 0 13px;
    font-size: 13px;
  }

  .site-search {
    order: 1;
    grid-template-columns: minmax(126px, 1fr) auto;
    max-width: 236px;
    min-height: 34px;
  }

  .language-switcher {
    order: 1;
    top: 24px;
    right: 18px;
    margin-left: 0;
    transform: none;
  }

  .site-search input,
  .site-search button {
    height: 34px;
  }

  .premium-hero,
  .premium-hero img {
    min-height: 680px;
    height: 680px;
  }

  .premium-copy {
    left: 24px;
    right: 24px;
  }
}

/* Homepage mobile layout: intentionally isolated from desktop styles. */
@media (max-width: 767px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

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

  .home-page .site-header.clean-header {
    position: relative;
    display: grid;
    width: 100%;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "brand language"
      "search search"
      "menu rfq"
      "nav nav";
    gap: 10px 12px;
    align-items: center;
    padding: 10px max(14px, env(safe-area-inset-right)) 12px max(14px, env(safe-area-inset-left));
    overflow: visible;
  }

  .home-page .site-header .header-brand {
    grid-area: brand;
    width: 100%;
    min-width: 110px;
    max-width: 126px;
  }

  .home-page .site-header .logo-lockup img {
    width: 100%;
    max-width: 126px;
    height: auto;
    max-height: 48px;
    object-fit: contain;
  }

  .home-page .site-header .site-search {
    grid-area: search;
    width: 100%;
    max-width: none;
    min-width: 0;
    min-height: 42px;
    margin: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    border-radius: 6px;
  }

  .home-page .site-header .site-search-field {
    min-width: 0;
  }

  .home-page .site-header .site-search input,
  .home-page .site-header .site-search > button {
    height: 42px;
  }

  .home-page .site-header .site-search input {
    min-width: 0;
    padding: 0 10px;
    font-size: 14px;
  }

  .home-page .site-header .site-search > button {
    min-width: 66px;
    padding: 0 10px;
    font-size: 13px;
  }

  .home-page .site-header .mobile-menu-toggle {
    display: inline-flex;
    grid-area: menu;
    width: 100%;
    min-width: 0;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 10px;
    border: 1px solid #d71920;
    border-radius: 6px;
    color: #d71920;
    background: #ffffff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    justify-self: start;
    white-space: nowrap;
  }

  .home-page .site-header .mobile-rfq-button {
    display: inline-flex;
    grid-area: rfq;
    width: 100%;
    min-width: 0;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
    border: 1px solid var(--red);
    border-radius: 6px;
    color: #ffffff;
    background: var(--red);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
  }

  .home-page .site-header .mobile-menu-icon {
    display: grid;
    width: 20px;
    gap: 4px;
  }

  .home-page .site-header .mobile-menu-icon i {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .home-page .site-header .language-switcher {
    position: static;
    grid-area: language;
    justify-self: end;
    margin: 0;
    transform: none;
  }

  .home-page .site-header .language-switcher button {
    height: 36px;
  }

  .home-page .site-header .site-nav {
    display: none;
    grid-area: nav;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid #dde8ee;
    border-radius: 7px;
    background: #ffffff;
  }

  .home-page .site-header .site-nav a {
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    padding: 0 14px;
    border-bottom: 1px solid #edf2f5;
    font-size: 15px;
    white-space: nowrap;
  }

  .home-page .site-header .site-nav a:last-child {
    border-bottom: 0;
  }

  .home-page .site-header .site-nav a.active::before,
  .home-page .site-header .site-nav a.active::after {
    display: none;
  }

  .home-intro-shell {
    display: grid;
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    margin: 10px auto 16px;
    padding: 0 14px;
  }

  .home-intro-shell > .category-dock {
    display: flex;
    width: 100%;
    max-width: none;
    border: 0;
    border-radius: 0 0 7px 7px;
    overflow: visible;
  }

  .home-intro-shell .category-dock-head {
    display: none;
  }

  .home-intro-shell .category-dock-head::after {
    margin-left: auto;
    content: "+";
    font-size: 22px;
    font-weight: 400;
  }

  .home-intro-shell .category-dock-head[aria-expanded="true"]::after {
    content: "−";
  }

  .home-intro-shell .category-dock-list {
    display: none;
    grid-template-rows: none;
  }

  .home-intro-shell .category-dock-list.is-open {
    display: grid;
    border: 1px solid #dce7ed;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(29, 65, 84, 0.1);
  }

  .home-intro-shell .category-dock-list a {
    height: auto;
    min-height: 42px;
    padding: 0 15px;
    font-size: 15px;
    line-height: 1.2;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .home-intro-shell .hero-stage,
  .home-intro-shell .hero-stage-main,
  .home-intro-shell .hero-stage-media,
  .home-intro-shell .hero-slider--feature {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .home-intro-shell .hero-stage-media {
    padding: 0;
  }

  .home-intro-shell .hero-stage-main {
    height: clamp(200px, 53vw, 230px);
    aspect-ratio: auto;
    max-height: 260px;
    border-radius: 8px;
    overflow: hidden;
  }

  .home-intro-shell .hero-slider--feature {
    min-height: 0;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
  }

  .home-intro-shell .hero-slide--banner img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
  }

  .home-intro-shell .hero-dots {
    right: 12px;
    bottom: 9px;
    left: 12px;
    max-width: calc(100% - 24px);
    justify-content: center;
    transform: none;
  }

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

  .product-card {
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 18px 20px;
  }

  .product-card > .part-icon {
    position: static;
    width: 74px;
    height: 48px;
    margin-bottom: 0;
    transform: scale(0.7);
    transform-origin: left center;
  }

  .product-card h3 {
    margin: 12px 0 6px;
    font-size: 18px;
    line-height: 1.22;
  }

  .product-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.48;
  }

  .product-card strong {
    padding-top: 8px;
    font-size: 13px;
  }

  .home-page main h1,
  .home-page .section-heading h2,
  .home-page .about-intro h2,
  .home-page .advantage-banner-copy h2,
  .home-page .rfq-band h2 {
    font-size: 30px;
    line-height: 1.18;
    margin-bottom: 10px;
  }

  .home-page .section-heading {
    margin-bottom: 14px;
  }

  .home-page .advantage-banner {
    height: auto;
    min-height: unset;
    overflow: visible;
  }

  .home-page .advantage-banner-copy {
    height: auto;
    min-height: unset;
    padding: 24px 24px 28px;
    overflow: visible;
  }

  .home-page .advantage-banner-media {
    height: auto;
    min-height: unset;
    overflow: visible;
  }

  .home-page .advantage-banner-media img {
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .home-page .advantage-grid article {
    gap: 14px;
    padding: 22px;
  }

  .home-page .advantage-icon {
    flex-basis: 64px;
    width: 64px;
    height: 64px;
  }

  .home-page .advantage-icon .part-icon {
    transform: scale(0.62);
  }

  .home-page .about-section {
    padding-top: 42px;
  }

  .home-page .about-photo {
    margin-top: 18px;
  }

  .home-page .about-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .home-page .about-metrics span {
    min-height: 72px;
    padding: 10px 8px;
    font-size: 11px;
    line-height: 1.25;
  }

  .home-page .about-metrics strong {
    margin-bottom: 2px;
    font-size: 18px;
    line-height: 1.15;
    overflow: visible;
  }

  .home-page .rfq-form {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .home-page .rfq-band.home-rfq {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-page .rfq-band.home-rfq .rfq-form {
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }

  .home-page .rfq-form input {
    width: 100%;
    min-width: 0;
    height: 46px;
    min-height: 46px;
  }

  .home-page .rfq-band.home-rfq .rfq-form textarea {
    width: 100%;
    min-width: 0;
    min-height: 90px;
    height: 90px;
    flex: 0 0 90px;
  }

  .home-page .rfq-form .button {
    width: 100%;
    min-height: 48px;
    height: 48px;
  }

  main,
  section,
  .section,
  .business-section,
  .rfq-band,
  .site-footer,
  .site-footer-inner {
    max-width: 100%;
  }

  .home-page {
    padding-bottom: calc(68px + env(safe-area-inset-bottom));
  }

  .home-page .mobile-fixed-rfq {
    position: fixed;
    right: 14px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 14px;
    z-index: 26;
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #ffffff;
    background: var(--red);
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(166, 18, 24, 0.3);
  }
}

/* Tablet catalog layout: separate from phone and desktop behavior. */
@media (min-width: 768px) and (max-width: 1023px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .home-page .site-header.clean-header {
    position: relative;
    display: grid;
    width: calc(100% - 48px);
    max-width: 720px;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "brand language"
      "search search"
      "menu rfq";
    gap: 10px 16px;
    align-items: center;
    margin: 0 auto;
    padding: 12px 0 14px;
    overflow: visible;
  }

  .home-page .site-header .header-brand {
    grid-area: brand;
    width: 126px;
    min-width: 110px;
  }

  .home-page .site-header .logo-lockup img {
    width: 126px;
    max-width: 126px;
    height: auto;
    max-height: 48px;
  }

  .home-page .site-header .language-switcher {
    position: static;
    grid-area: language;
    justify-self: end;
    margin: 0;
    transform: none;
  }

  .home-page .site-header .site-search {
    grid-area: search;
    width: 100%;
    max-width: none;
    min-width: 0;
    margin: 0;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .home-page .site-header .site-search-field,
  .home-page .site-header .site-search input {
    min-width: 0;
  }

  .home-page .site-header .mobile-menu-toggle,
  .home-page .site-header .mobile-rfq-button {
    display: inline-flex;
    width: 100%;
    min-width: 0;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 14px;
    border: 1px solid var(--red);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
  }

  .home-page .site-header .mobile-menu-toggle {
    grid-area: menu;
    color: var(--red);
    background: #ffffff;
  }

  .home-page .site-header .mobile-rfq-button {
    grid-area: rfq;
    color: #ffffff;
    background: var(--red);
  }

  .home-page .site-header .mobile-menu-icon {
    display: grid;
    width: 20px;
    gap: 4px;
  }

  .home-page .site-header .mobile-menu-icon i {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .home-page .site-header .site-nav,
  .home-page .mobile-fixed-rfq {
    display: none;
  }

  .home-page {
    padding-bottom: 0;
  }

  .home-page .home-intro-shell {
    width: calc(100% - 48px);
    max-width: 720px;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    margin: 12px auto 18px;
    padding: 0;
  }

  .home-page .home-intro-shell > .category-dock {
    display: flex;
    width: 100%;
    max-width: 720px;
    border: 0;
    overflow: visible;
  }

  .home-page .home-intro-shell .category-dock-head {
    display: none;
  }

  .home-page .home-intro-shell .category-dock-list {
    display: none;
  }

  .home-page .home-intro-shell .category-dock-list.is-open {
    display: grid;
    width: 100%;
    border: 1px solid #dce7ed;
    border-radius: 7px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(29, 65, 84, 0.1);
  }

  .home-page .home-intro-shell .category-dock-list a {
    height: auto;
    min-height: 44px;
    padding: 0 16px;
    font-size: 15px;
    white-space: normal;
    overflow: visible;
  }

  .home-page .hero-stage-main {
    width: 100%;
    height: clamp(260px, 38vw, 320px);
    aspect-ratio: auto;
    max-height: 320px;
    overflow: hidden;
    border-radius: 8px;
  }

  .home-page .hero-stage-media,
  .home-page .hero-slider--feature {
    width: 100%;
    height: 100%;
    min-height: 0;
    padding: 0;
  }

  .home-page .hero-slide--banner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .home-page #products {
    width: calc(100% - 48px);
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
  }

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

  .home-page .product-card,
  .home-page .resource-card,
  .home-page .business-card,
  .home-page .advantage-grid article {
    position: relative;
  }

  .home-page .product-card {
    display: flex;
    min-width: 0;
    min-height: 220px;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .home-page .product-card > .part-icon {
    position: static;
    width: 74px;
    height: 48px;
    flex: 0 0 48px;
    transform: scale(0.7);
    transform-origin: left center;
  }

  .home-page .product-card h3 {
    position: static;
    margin: 12px 0 7px;
    font-size: 19px;
    line-height: 1.22;
  }

  .home-page .product-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.48;
  }

  .home-page .product-card strong {
    margin-top: auto;
    padding-top: 10px;
    font-size: 13px;
  }
}

/* Legacy mobile header/category-sheet rules retained inert for reference. */
@media (max-width: 0px) {
  body.mobile-category-open {
    overflow: hidden;
  }

  .site-header {
    display: grid;
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    grid-template-areas:
      "brand brand language"
      "menu search search";
    align-items: center;
    justify-content: stretch;
    gap: 8px;
    padding: 10px 14px 12px;
  }

  .header-brand {
    grid-area: brand;
    min-width: 0;
  }

  .logo-lockup img {
    display: block;
    max-width: 122px;
    height: 44px;
  }

  .site-nav {
    display: none;
  }

  .language-switcher {
    position: static;
    top: auto;
    right: auto;
    grid-area: language;
    justify-self: end;
    margin-left: 0;
    transform: none;
  }

  .language-switcher button {
    min-width: 84px;
    height: 30px;
    padding: 0 10px;
    border-radius: 5px;
    font-size: 12px;
  }

  .language-menu {
    right: 0;
  }

  .mobile-menu-toggle {
    display: grid;
    grid-area: menu;
    width: 42px;
    height: 42px;
    align-content: center;
    justify-items: center;
    gap: 4px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
    justify-self: start;
  }

  .mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: var(--red);
  }

  .site-search {
    grid-area: search;
    order: 0;
    width: 100%;
    max-width: none;
    min-height: 46px;
    min-width: 0;
    margin: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    border-color: #d9e3e9;
    border-radius: 6px;
  }

  .site-search-field {
    min-width: 0;
  }

  .site-search input {
    height: 46px;
    min-width: 0;
    padding: 0 12px;
    border-radius: 6px 0 0 6px;
    font-size: 14px;
  }

  .site-search > button {
    min-width: 88px;
    height: 46px;
    padding: 0 18px;
    border-radius: 0 6px 6px 0;
    font-size: 14px;
  }

  .home-intro-shell {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 4px auto 16px;
    padding: 0 14px;
  }

  .home-intro-shell > .category-dock {
    display: none;
  }

  .hero-stage-main {
    aspect-ratio: 2.15 / 1;
    border-radius: 8px;
  }

  .hero-stage .hero-slider,
  .hero-slider--feature {
    min-height: 0;
    border-radius: 8px;
    box-shadow: none;
  }

  .hero-slide--banner img {
    object-position: center center;
    transform: scale(1.16);
    transform-origin: center;
  }

  .hero-dots {
    bottom: 10px;
    gap: 8px;
  }

  .hero-dots button {
    width: 10px;
    height: 10px;
  }

  .hero-dots button.is-active {
    width: 22px;
  }

  .mobile-category-overlay {
    position: fixed;
    inset: 0;
    z-index: 28;
    background: rgba(14, 26, 33, 0.38);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .mobile-category-sheet {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 29;
    display: flex;
    height: 75vh;
    max-height: 75vh;
    flex-direction: column;
    border-radius: 18px 18px 0 0;
    background: #ffffff;
    box-shadow: 0 -18px 40px rgba(17, 34, 43, 0.18);
    transform: translateY(100%);
    transition: transform 220ms ease;
  }

  .mobile-category-sheet-header {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    border-bottom: 1px solid #e2ebf0;
    color: #16252f;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .mobile-category-close {
    position: relative;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .mobile-category-close span {
    position: absolute;
    top: 16px;
    left: 8px;
    width: 18px;
    height: 2px;
    background: #566671;
  }

  .mobile-category-close span:first-child {
    transform: rotate(45deg);
  }

  .mobile-category-close span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-category-sheet-list {
    display: grid;
    overflow-y: auto;
    padding: 8px 0 18px;
  }

  .mobile-category-sheet-list a {
    display: flex;
    min-height: 54px;
    align-items: center;
    padding: 0 18px;
    border-bottom: 1px solid #edf2f5;
    color: #42535e;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.25;
  }

  .mobile-category-sheet-list a:last-child {
    border-bottom: 0;
  }

  body.mobile-category-open .mobile-category-overlay {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }

  body.mobile-category-open .mobile-category-sheet {
    transform: translateY(0);
  }
}

/* Premium product detail layout */
.premium-product-hero {
  grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1.24fr);
  gap: 38px;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 46px;
}

.premium-product-hero .product-gallery {
  justify-items: stretch;
  gap: 12px;
}

.premium-product-hero .product-detail-visual {
  width: 100%;
  max-width: 420px;
  border-color: #E6EDF5;
  border-radius: 10px;
  box-shadow: none;
}

.premium-product-hero .product-thumbnails {
  max-width: 420px;
  gap: 8px;
}

.premium-product-hero .product-detail-visual .part-icon {
  transform: scale(2.25);
}

.premium-product-hero .product-thumbnails button {
  width: 64px;
  height: 64px;
  border-color: #E6EDF5;
  border-radius: 8px;
}

.premium-product-hero .product-thumbnails button.is-placeholder .part-icon {
  transform: scale(0.72);
}

.product-detail-copy {
  gap: 14px;
}

.product-detail-copy .eyebrow {
  margin-bottom: 0;
}

.product-detail-copy h1 {
  max-width: 760px;
  font-size: 38px;
  line-height: 1.08;
}

.product-detail-copy .product-seo-description {
  max-width: 760px;
  color: #5f6d78;
  font-size: 17px;
  line-height: 1.55;
}

.product-detail-spec-panel {
  width: 100%;
  margin-top: 2px;
  padding: 0;
  border: 0;
  background: transparent;
}

.product-detail-spec-panel .spec-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.product-detail-spec-panel .spec-list div {
  min-height: 66px;
  padding: 12px 14px;
  border: 1px solid #EEF4F8;
  border-radius: 10px;
  background: #F5F8FA;
}

.product-detail-spec-panel .spec-list dt {
  color: #667482;
  font-size: 11px;
  letter-spacing: 0;
}

.product-detail-spec-panel .spec-list dd {
  margin-top: 5px;
  color: #0F1F2A;
  font-size: 16px;
  line-height: 1.25;
}

.premium-product-hero .button-row {
  gap: 10px;
  margin-top: 2px;
}

.premium-product-hero .button {
  min-height: 40px;
  padding: 0 18px;
  border-radius: 8px;
  font-size: 15px;
}

.service-feature-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  margin-top: 4px;
}

.service-feature-row article {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  column-gap: 9px;
  row-gap: 2px;
  align-items: center;
  min-height: 58px;
  padding: 10px;
  border: 1px solid #E6EDF5;
  border-radius: 10px;
  background: #ffffff;
}

.service-feature-row strong {
  color: #172733;
  font-size: 13px;
  line-height: 1.2;
}

.service-feature-row article > span:not(.service-icon) {
  grid-column: 2;
  color: #6A7883;
  font-size: 12px;
  line-height: 1.2;
}

.service-icon {
  position: relative;
  grid-row: 1 / span 2;
  width: 30px;
  height: 30px;
  border: 1.5px solid #8E9BA6;
  border-radius: 9px;
}

.service-icon::before,
.service-icon::after {
  position: absolute;
  content: "";
}

.service-icon-quality::before {
  top: 7px;
  left: 8px;
  width: 12px;
  height: 7px;
  border-bottom: 2px solid var(--red);
  border-left: 2px solid var(--red);
  transform: rotate(-45deg);
}

.service-icon-sizes::before {
  top: 7px;
  left: 7px;
  width: 7px;
  height: 7px;
  border: 1.5px solid var(--red);
  border-radius: 50%;
}

.service-icon-sizes::after {
  right: 6px;
  bottom: 6px;
  width: 9px;
  height: 9px;
  border: 1.5px solid #8E9BA6;
  border-radius: 50%;
}

.service-icon-delivery::before {
  top: 10px;
  left: 5px;
  width: 18px;
  height: 9px;
  border: 1.5px solid #8E9BA6;
  border-radius: 2px;
}

.service-icon-delivery::after {
  right: 5px;
  bottom: 5px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: -12px 0 0 #8E9BA6;
}

.service-icon-support::before {
  top: 7px;
  left: 8px;
  width: 12px;
  height: 12px;
  border: 1.5px solid #8E9BA6;
  border-radius: 50%;
}

.service-icon-support::after {
  right: 6px;
  bottom: 6px;
  width: 8px;
  height: 2px;
  background: var(--red);
  transform: rotate(45deg);
}

.product-tabs-section {
  padding-top: 8px;
  padding-bottom: 56px;
}

.product-tabs {
  gap: 0;
  border-bottom: 1px solid #DDE7EE;
}

.product-tab {
  min-height: 46px;
  padding: 0 22px;
  color: #4C5A65;
  font-size: 16px;
}

.product-tab.is-active {
  color: var(--red);
}

.product-tab-panels {
  padding-top: 22px;
}

.product-tab-panel {
  padding: 24px;
  border: 1px solid #E6EDF5;
  border-radius: 10px;
  background: #ffffff;
}

.product-tab-panel p {
  max-width: 920px;
  color: #5f6d78;
  font-size: 16px;
  line-height: 1.62;
}

.description-feature-grid,
.oem-reference-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.description-feature-grid article,
.oem-reference-panel article {
  padding: 16px;
  border-radius: 10px;
  background: #F5F8FA;
}

.description-feature-grid strong,
.oem-reference-panel strong {
  display: block;
  margin-bottom: 6px;
  color: #172733;
  font-size: 14px;
}

.description-feature-grid span,
.oem-reference-panel span {
  color: #667482;
  font-size: 14px;
  line-height: 1.45;
}

.application-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.application-tags span {
  padding: 10px 14px;
  border: 1px solid #E6EDF5;
  border-radius: 999px;
  color: #263640;
  background: #F5F8FA;
  font-size: 14px;
  font-weight: 700;
}

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

.related-product-card {
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 12px;
  border: 1px solid #E6EDF5;
  border-radius: 10px;
  background: #ffffff;
  transition: box-shadow 160ms ease;
}

.related-product-card:hover {
  box-shadow: 0 12px 28px rgba(29, 65, 84, 0.1);
}

.related-product-visual {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 0.78;
  padding: 10px;
  border: 1px solid #E6EDF5;
  border-radius: 8px;
  background: #ffffff;
}

.related-product-visual .part-icon {
  transform: scale(1.25);
}

.related-product-card .product-code {
  margin-bottom: 8px;
}

.related-product-card dl {
  display: grid;
  gap: 7px;
  margin: 0 0 10px;
}

.related-product-card dl div {
  padding: 9px 10px;
  border-radius: 8px;
  background: #F5F8FA;
}

.related-product-card dt {
  color: #667482;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.related-product-card dd {
  margin: 4px 0 0;
  color: #172733;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.related-product-card .button {
  width: 100%;
  min-height: 34px;
  justify-content: center;
  border-radius: 7px;
  font-size: 14px;
}

@media (max-width: 1040px) {
  .premium-product-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .premium-product-hero .product-gallery,
  .premium-product-hero .product-detail-visual,
  .premium-product-hero .product-thumbnails {
    justify-self: center;
    width: 100%;
    max-width: 460px;
  }

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

@media (max-width: 760px) {
  .premium-product-hero {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .premium-product-hero .product-gallery,
  .premium-product-hero .product-detail-visual,
  .premium-product-hero .product-thumbnails {
    max-width: 360px;
  }

  .product-detail-copy h1 {
    font-size: 30px;
  }

  .product-detail-copy .product-seo-description {
    font-size: 16px;
  }

  .product-detail-spec-panel .spec-list,
  .service-feature-row,
  .description-feature-grid,
  .oem-reference-panel,
  .related-product-grid {
    grid-template-columns: 1fr;
  }

  .premium-product-hero .button-row {
    width: 100%;
  }

  .premium-product-hero .button-row .button {
    width: 100%;
    justify-content: center;
  }

  .product-tabs {
    gap: 0;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .product-tab {
    flex: 0 0 auto;
    padding-right: 16px;
    padding-left: 16px;
    font-size: 15px;
  }

  .product-tab-panel {
    padding: 18px;
  }
}

/* Restored classic product detail layout */
.product-detail-hero {
  display: grid;
  max-width: var(--max);
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: start;
  margin: 0 auto;
  padding: 78px 28px 72px;
}

.product-gallery {
  display: grid;
  justify-items: start;
  gap: 16px;
}

.product-detail-visual {
  width: min(100%, 440px);
  min-height: 0;
  aspect-ratio: 1 / 1;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: none;
  cursor: zoom-in;
  overflow: hidden;
}

.product-detail-visual .part-icon {
  transform: scale(1.7);
}

.product-thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: min(100%, 440px);
}

.product-thumbnails button {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  cursor: pointer;
}

.product-detail-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.product-detail-copy h1 {
  margin: 0;
  font-size: 36px;
  line-height: 1.12;
}

.product-detail-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.product-detail-spec-panel {
  width: 68%;
  max-width: 100%;
  align-self: flex-start;
  margin-top: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.product-detail-spec-panel h2 {
  margin: 0 0 18px;
  font-size: 24px;
}

.product-detail-spec-panel .spec-list {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.product-detail-spec-panel .spec-list div {
  min-height: auto;
  padding: 12px;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper);
}

.product-detail-spec-panel .spec-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.product-detail-spec-panel .spec-list dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: inherit;
  font-weight: 800;
}

.product-tabs-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 28px 62px;
}

.product-tabs {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  overflow-x: visible;
  border-bottom: 1px solid #d9e5eb;
}

.product-tab {
  position: relative;
  min-height: 0;
  padding: 0 0 16px;
  border: 0;
  color: #22313a;
  background: transparent;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}

.product-tab-panels {
  padding-top: 32px;
}

.product-tab-panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.product-tab-panel p {
  margin: 0;
  color: #67727d;
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.65;
}

.recommended-products {
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 28px 82px;
}

.recommended-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  row-gap: 28px;
  column-gap: 30px;
}

.recommended-card {
  display: flex;
  width: 100%;
  max-width: 292px;
  justify-self: center;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

@media (max-width: 1040px) {
  .product-detail-hero {
    grid-template-columns: 1fr;
  }

  .product-detail-spec-panel {
    width: 100%;
  }

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

  .recommended-card {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .product-detail-hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .product-detail-copy h1 {
    font-size: 34px;
  }

  .spec-list {
    grid-template-columns: 1fr;
  }

  .product-tabs {
    gap: 18px;
  }

  .product-tab-panel {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .recommended-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .product-detail-visual {
    width: min(100%, 360px);
    min-height: 0;
  }

  .product-gallery {
    justify-items: center;
  }

  .product-thumbnails {
    justify-content: center;
  }
}

/* Product hero refinement only */
.product-detail-hero {
  grid-template-columns: 420px minmax(0, 1fr);
  column-gap: 48px;
  row-gap: 32px;
  align-items: start;
  padding-top: 54px;
  padding-bottom: 48px;
}

.product-detail-hero .product-detail-visual {
  width: 420px;
  height: 420px;
  max-width: 100%;
  min-height: 0;
  border-color: #E6EDF5;
  border-radius: 10px;
}

.product-detail-hero .product-gallery {
  justify-items: start;
}

.product-detail-hero .product-thumbnails {
  display: flex;
  gap: 16px;
  max-width: min(100%, 420px);
}

.product-detail-hero .product-thumbnails button {
  width: 80px;
  height: 80px;
  padding: 7px;
  border: 1px solid #E6EDF5;
  border-radius: 8px;
  background: #ffffff;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-detail-hero .product-thumbnails button:hover {
  border-color: #BFD3DE;
  box-shadow: 0 8px 18px rgba(29, 65, 84, 0.08);
}

.product-detail-hero .product-thumbnails button.active {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(215, 25, 32, 0.1);
}

.product-detail-hero .product-thumbnails button.is-placeholder .part-icon {
  transform: scale(0.78);
}

/* Uploaded square product photography: fill image surfaces without the inset frame. */
.catalog-product-card .product-visual,
.product-detail-hero .product-detail-visual,
.product-detail-hero .product-thumbnails button {
  padding: 0;
  overflow: hidden;
}

.catalog-product-card .product-image,
.product-detail-hero .detail-product-image,
.product-detail-hero .product-thumbnails img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
}

.product-detail-hero .product-detail-copy {
  min-height: 516px;
  justify-content: space-between;
  gap: 14px;
}

.product-detail-hero .product-detail-copy h1 {
  font-size: 30px;
  line-height: 1.16;
}

.product-detail-hero.compact-detail-title .product-detail-copy p:not(.eyebrow) {
  font-size: 17px;
  line-height: 1.58;
}

.product-detail-hero .product-detail-spec-panel {
  width: 100%;
  max-width: 646px;
  margin-top: 2px;
  padding: 0;
  border: 0;
  background: transparent;
}

.product-detail-hero .product-detail-spec-panel .spec-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.product-detail-hero .product-detail-spec-panel .spec-list div {
  min-height: 72px;
  padding: 11px 13px;
  border: 0;
  border-radius: 8px;
  background: #F5F8FA;
}

.product-detail-hero .product-detail-spec-panel .spec-list dt {
  color: #667482;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-detail-hero .product-detail-spec-panel .spec-list dd {
  margin: 6px 0 0;
  color: #0F1F2A;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
}

.product-detail-hero .button-row {
  display: flex;
  gap: 14px;
  flex-wrap: nowrap;
  width: 100%;
  margin-top: 4px;
}

.product-detail-hero .button-row .button {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  white-space: nowrap;
}

.product-detail-hero .button-row .button.primary {
  width: 210px;
  justify-content: center;
}

.product-detail-hero .button-row .button.ghost {
  width: 210px;
  justify-content: center;
}

.product-detail-hero .product-hero-service-row {
  display: flex;
  width: auto;
  max-width: 820px;
  gap: 30px;
  align-items: center;
  margin-top: 6px;
}

.product-detail-hero .product-hero-service-row article {
  display: grid;
  grid-template-columns: 32px max-content;
  column-gap: 7px;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.product-detail-hero .service-icon {
  display: grid;
  grid-row: 1 / span 2;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  border-radius: 0;
  color: #7C8994;
}

.product-detail-hero .service-icon::before,
.product-detail-hero .service-icon::after {
  content: none;
}

.product-detail-hero .service-icon svg {
  width: 32px;
  height: 32px;
  overflow: visible;
}

.product-detail-hero .service-icon path,
.product-detail-hero .service-icon circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-detail-hero .service-icon .accent-stroke {
  stroke: var(--red);
}

.product-detail-hero .service-icon .accent-fill {
  fill: var(--red);
  stroke: #ffffff;
  stroke-width: 1.1;
}

.product-detail-hero .product-hero-service-row strong {
  color: #172733;
  font-size: 14.5px;
  line-height: 1.16;
  white-space: nowrap;
}

.product-detail-hero .product-hero-service-row article > span:not(.service-icon) {
  color: #6A7883;
  font-size: 13.5px;
  line-height: 1.18;
  white-space: nowrap;
}

@media (max-width: 1040px) {
  .product-detail-hero {
    grid-template-columns: 1fr;
  }

  .product-detail-hero .product-detail-copy {
    min-height: 0;
    justify-content: flex-start;
  }

  .product-detail-hero .product-detail-spec-panel .spec-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-hero .product-hero-service-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 12px;
    flex-wrap: wrap;
    gap: 16px 28px;
  }
}

@media (max-width: 760px) {
  .product-detail-hero {
    gap: 26px;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .product-detail-hero .product-detail-visual {
    width: min(100%, 340px);
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .product-detail-hero .product-detail-spec-panel .spec-list {
    grid-template-columns: 1fr;
  }

  .product-detail-hero .button-row {
    flex-direction: column;
    gap: 10px;
  }

  .product-detail-hero .button-row .button {
    width: 100%;
    justify-content: center;
  }

  .product-detail-hero .button-row .button.primary,
  .product-detail-hero .button-row .button.ghost {
    width: 100%;
  }

  .product-detail-hero .product-hero-service-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.rfq-band.home-rfq.product-detail-rfq h2 {
  font-size: 28px;
}

.rfq-band.home-rfq:not(.product-detail-rfq) h2 {
  font-size: 28px;
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-nav {
    contain: layout paint;
  }

  .rfq-band.home-rfq,
  .rfq-band.home-rfq.product-detail-rfq,
  .contact-page-rfq {
    grid-template-columns: minmax(0, 1fr);
  }

  .rfq-band.home-rfq > *,
  .rfq-band.home-rfq.product-detail-rfq > *,
  .home-rfq-links,
  .home-rfq-link-columns,
  .home-rfq-link-columns a {
    min-width: 0;
    max-width: 100%;
  }

  .home-rfq-links,
  .home-rfq-link-columns,
  .home-rfq-link-columns a {
    width: 100%;
  }

  .contact-page-rfq .home-rfq-copy,
  .contact-info-block,
  .contact-info-block dl,
  .contact-info-row,
  .contact-info-block dd,
  .contact-info-block a {
    min-width: 0;
    max-width: 100%;
  }

  .contact-info-block {
    margin-top: 14px;
    gap: 12px;
  }

  .contact-info-block dl {
    gap: 14px;
  }

  .contact-info-row {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 2px 12px;
    align-items: center;
  }

  .contact-info-icon {
    grid-row: 1 / span 2;
    width: 36px;
    height: 36px;
  }

  .contact-info-icon svg {
    width: 20px;
    height: 20px;
  }

  .contact-info-block dt,
  .contact-info-block dd {
    grid-column: 2;
  }

  .contact-info-block dt {
    line-height: 1.25;
  }

  .contact-info-block dd {
    font-size: 18px;
    line-height: 1.45;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .contact-info-email dd a {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .contact-info-address dd {
    max-width: none;
  }

.catalog-product-card h2 {
    -webkit-line-clamp: 3;
  }
}

/* Product Center phone layout only. Tablet and desktop remain unchanged. */
@media (max-width: 767px) {
  .product-list-page,
  .product-list-page main,
  .product-list-page .catalog-layout,
  .product-list-page .product-list-area,
  .product-list-page .catalog-product-grid,
  .product-list-page .catalog-product-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .product-list-page {
    overflow-x: hidden;
  }

  .product-list-page .site-header.clean-header {
    position: relative;
    display: grid;
    grid-template-columns: minmax(110px, 126px) minmax(0, 1fr);
    grid-template-areas:
      "brand language"
      "search search";
    gap: 10px 12px;
    align-items: center;
    padding: 10px 14px 12px;
    overflow: visible;
  }

  .product-list-page .site-header .header-brand {
    grid-area: brand;
    width: 126px;
    min-width: 110px;
    max-width: 126px;
  }

  .product-list-page .site-header .logo-lockup img {
    width: 100%;
    max-width: 126px;
    height: auto;
    max-height: 48px;
  }

  .product-list-page .site-header .site-nav {
    display: none;
  }

  .product-list-page .site-header .language-switcher {
    position: static;
    grid-area: language;
    justify-self: end;
    margin: 0;
    transform: none;
  }

  .product-list-page .site-header .site-search {
    grid-area: search;
    width: 100%;
    max-width: none;
    min-width: 0;
    margin: 0;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .product-list-page .site-header .site-search-field,
  .product-list-page .site-header .site-search input {
    min-width: 0;
  }

  .product-list-page .catalog-title-band > div {
    padding-right: 18px;
    padding-left: 18px;
  }

  .product-list-page .catalog-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
    padding: 20px 18px 64px;
  }

  .product-list-page .category-sidebar.category-dock {
    position: static;
    width: 100%;
    max-width: 100%;
    border-radius: 7px;
    overflow: hidden;
  }

  .product-list-page .category-sidebar .category-dock-head {
    display: flex;
    width: 100%;
    min-height: 50px;
    justify-content: flex-start;
    padding: 0 15px;
    cursor: pointer;
  }

  .product-list-page .category-sidebar .category-dock-head::after {
    margin-left: auto;
    content: "+";
    font-size: 22px;
    font-weight: 400;
  }

  .product-list-page .category-sidebar .category-dock-head[aria-expanded="true"]::after {
    content: "−";
  }

  .product-list-page .category-sidebar .category-dock-list {
    display: none;
  }

  .product-list-page .category-sidebar .category-dock-list.is-open {
    display: grid;
  }

  .product-list-page .category-sidebar .category-dock-list a {
    height: auto;
    min-height: 43px;
    padding: 0 15px;
    font-size: 15px;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  .product-list-page .product-list-area {
    gap: 14px;
  }

  .product-list-page .list-toolbar {
    min-height: 46px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 8px;
  }

  .product-list-page .list-toolbar p {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 14px;
  }

  .product-list-page .list-toolbar .red-link {
    display: inline-flex;
    min-height: 38px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    border-radius: 7px;
    color: #ffffff;
    background: var(--red);
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
  }

  .product-list-page .catalog-product-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .product-list-page .catalog-product-card {
    position: relative;
    display: flex;
    min-height: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px;
    overflow: hidden;
  }

  .product-list-page .catalog-product-card .product-visual {
    width: 100%;
    max-width: 100%;
    height: 180px;
    aspect-ratio: auto;
    align-self: stretch;
    justify-self: stretch;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  .product-list-page .catalog-product-card.category-oring .product-visual,
  .product-list-page .catalog-product-card.category-ptfe-gasket .product-visual {
    padding: 0;
  }

  .product-list-page .catalog-product-card .product-image,
  .product-list-page .catalog-product-card.category-oring .product-image,
  .product-list-page .catalog-product-card.category-ptfe-gasket .product-image {
    width: 100%;
    max-width: 100%;
    height: 178px;
    max-height: 178px;
    object-fit: contain;
    object-position: center;
  }

  .product-list-page .catalog-product-info,
  .product-list-page .catalog-product-info.has-no-code {
    min-width: 0;
    min-height: 0;
    justify-content: flex-start;
    gap: 9px;
  }

  .product-list-page .product-code {
    min-height: 0;
    font-size: 13px;
  }

  .product-list-page .catalog-product-card h2 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .product-list-page .catalog-product-card dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .product-list-page .catalog-product-card dl div {
    min-width: 0;
    min-height: 58px;
    padding: 8px;
  }

  .product-list-page .catalog-product-card dt {
    font-size: 10px;
  }

  .product-list-page .catalog-product-card dd {
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.2;
  }

  .product-list-page .catalog-product-info .button {
    width: 100%;
    min-height: 44px;
    height: 44px;
    align-self: stretch;
    justify-content: center;
    margin-top: 0;
  }
}

/* Product list/detail phone navigation and RFQ access. */
@media (max-width: 767px) {
  html,
  body.product-list-page,
  body.product-detail-page {
    max-width: 100%;
    overflow-x: hidden;
  }

  body.product-list-page,
  body.product-detail-page {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .product-list-page img,
  .product-detail-page img {
    max-width: 100%;
    height: auto;
  }

  .product-list-page .site-header.clean-header,
  .product-detail-page .site-header.clean-header {
    position: relative;
    display: grid;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "brand language"
      "search search"
      "menu rfq"
      "nav nav";
    gap: 10px 12px;
    align-items: center;
    padding: 10px 14px 12px;
    overflow: visible;
  }

  .product-list-page .site-header .header-brand,
  .product-detail-page .site-header .header-brand {
    grid-area: brand;
    width: 126px;
    min-width: 110px;
    max-width: 126px;
  }

  .product-list-page .site-header .logo-lockup img,
  .product-detail-page .site-header .logo-lockup img {
    width: 100%;
    max-width: 126px;
    height: auto;
    max-height: 48px;
  }

  .product-list-page .site-header .language-switcher,
  .product-detail-page .site-header .language-switcher {
    position: static;
    grid-area: language;
    justify-self: end;
    margin: 0;
    transform: none;
  }

  .product-list-page .site-header .site-search,
  .product-detail-page .site-header .site-search {
    grid-area: search;
    width: 100%;
    max-width: none;
    min-width: 0;
    margin: 0;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .product-list-page .site-header .site-search-field,
  .product-detail-page .site-header .site-search-field,
  .product-list-page .site-header .site-search input,
  .product-detail-page .site-header .site-search input {
    min-width: 0;
  }

  .product-list-page .product-mobile-menu-toggle,
  .product-detail-page .product-mobile-menu-toggle,
  .product-list-page .product-mobile-rfq,
  .product-detail-page .product-mobile-rfq {
    display: inline-flex;
    width: 100%;
    min-width: 0;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
    border: 1px solid var(--red);
    border-radius: 7px;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
  }

  .product-list-page .product-mobile-menu-toggle,
  .product-detail-page .product-mobile-menu-toggle {
    grid-area: menu;
    color: var(--red);
    background: #ffffff;
    cursor: pointer;
  }

  .product-list-page .product-mobile-rfq,
  .product-detail-page .product-mobile-rfq {
    grid-area: rfq;
    color: #ffffff;
    background: var(--red);
  }

  .product-list-page .site-header .site-nav,
  .product-detail-page .site-header .site-nav {
    display: none;
    grid-area: nav;
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid #dce7ed;
    border-radius: 7px;
    background: #ffffff;
  }

  .product-list-page.product-mobile-nav-open .site-header .site-nav,
  .product-detail-page.product-mobile-nav-open .site-header .site-nav {
    display: flex;
  }

  .product-list-page .site-header .site-nav a,
  .product-detail-page .site-header .site-nav a {
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    padding: 0 14px;
    border-bottom: 1px solid #edf2f5;
    font-size: 15px;
    white-space: nowrap;
  }

  .product-list-page .site-header .site-nav a:last-child,
  .product-detail-page .site-header .site-nav a:last-child {
    border-bottom: 0;
  }

  .product-list-page .site-header .site-nav a::before,
  .product-list-page .site-header .site-nav a::after,
  .product-detail-page .site-header .site-nav a::before,
  .product-detail-page .site-header .site-nav a::after {
    display: none;
  }

  .product-list-page .product-fixed-rfq,
  .product-detail-page .product-fixed-rfq {
    position: fixed;
    right: 14px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 14px;
    z-index: 26;
    display: flex;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #ffffff;
    background: var(--red);
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(166, 18, 24, 0.3);
    transition: opacity 140ms ease, visibility 140ms ease;
  }

  .product-list-page .product-fixed-rfq.is-obscured,
  .product-detail-page .product-fixed-rfq.is-obscured {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .product-detail-page .recommended-products {
    width: 100%;
    max-width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .product-detail-page .recommended-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-detail-page .recommended-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .product-detail-page .recommended-visual {
    width: 100%;
    height: 120px;
    aspect-ratio: auto;
  }

  .product-detail-page .recommended-visual .product-image,
  .product-detail-page .recommended-card.category-ptfe-gasket .recommended-visual .product-image {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    transform: none;
  }

  .product-detail-page .recommended-card h3 {
    display: -webkit-box;
    overflow: hidden;
    min-width: 0;
    font-size: 14px;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

/* Shared phone header component used by every public page. */
@media (max-width: 767px) {
  body .mobile-menu-toggle,
  body .mobile-rfq-button,
  body .product-mobile-menu-toggle,
  body .product-mobile-rfq {
    display: none !important;
  }

  body .site-header.clean-header,
  body .shared-mobile-created-header {
    position: relative;
    display: grid;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "brand language"
      "search search"
      "menu rfq"
      "nav nav";
    gap: 10px 12px;
    align-items: center;
    margin: 0;
    padding: 10px 14px 12px;
    overflow: visible;
  }

  body .site-header .header-brand {
    grid-area: brand;
    width: 126px;
    min-width: 110px;
    max-width: 126px;
  }

  body .site-header .logo-lockup img {
    width: 100%;
    max-width: 126px;
    height: auto;
    max-height: 48px;
  }

  body .site-header .language-switcher {
    position: static;
    grid-area: language;
    justify-self: end;
    margin: 0;
    transform: none;
  }

  body .site-header .site-search {
    grid-area: search;
    width: 100%;
    max-width: none;
    min-width: 0;
    margin: 0;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  body .site-header .site-search-field,
  body .site-header .site-search input {
    min-width: 0;
  }

  body .shared-mobile-menu-toggle,
  body .shared-mobile-rfq {
    display: inline-flex;
    width: 100%;
    min-width: 0;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
    border: 1px solid var(--red);
    border-radius: 7px;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
  }

  body .shared-mobile-menu-toggle {
    grid-area: menu;
    color: var(--red);
    background: #ffffff;
    cursor: pointer;
  }

  body .shared-mobile-rfq {
    grid-area: rfq;
    color: #ffffff;
    background: var(--red);
  }

  body .site-header .site-nav {
    display: none;
    grid-area: nav;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid #dce7ed;
    border-radius: 7px;
    background: #ffffff;
  }

  body.shared-mobile-nav-open .site-header .site-nav {
    display: flex;
  }

  body .site-header .site-nav a {
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    padding: 0 14px;
    border-bottom: 1px solid #edf2f5;
    font-size: 15px;
    white-space: nowrap;
  }

  body .site-header .site-nav a:last-child {
    border-bottom: 0;
  }

  body .site-header .site-nav a::before,
  body .site-header .site-nav a::after {
    display: none;
  }

  body.product-list-page,
  body.product-detail-page {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  body .shared-fixed-rfq {
    position: fixed;
    right: 14px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 14px;
    z-index: 26;
    display: flex;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #ffffff;
    background: var(--red);
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(166, 18, 24, 0.3);
    transition: opacity 140ms ease, visibility 140ms ease;
  }

  body .shared-fixed-rfq.is-obscured {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .home-page .home-intro-shell > .category-dock {
    display: flex;
  }

  .home-page .home-intro-shell .category-dock-head {
    display: flex;
    min-height: 50px;
  }
}

/* Final conflict reset for the shared phone components. */
@media (max-width: 767px) {
  body .home-intro-shell > .category-dock.shared-mobile-categories,
  body .catalog-layout > .category-dock.shared-mobile-categories {
    position: static;
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    box-shadow: none;
    background: transparent;
  }

  body .shared-mobile-categories .category-dock-head {
    display: flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    padding: 0 15px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: var(--red);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
  }

  body .shared-mobile-categories .category-dock-head::after {
    margin-left: auto;
    content: "+";
    font-size: 22px;
    font-weight: 400;
  }

  body .shared-mobile-categories .category-dock-head[aria-expanded="true"] {
    border-radius: 8px 8px 0 0;
  }

  body .shared-mobile-categories .category-dock-head[aria-expanded="true"]::after { content: "−"; }
  body .shared-mobile-categories .category-dock-list { display: none; }
  body .shared-mobile-categories .category-dock-list.is-open {
    display: grid;
    overflow: hidden;
    border: 1px solid #e1e7ea;
    border-top: 0;
    border-radius: 0 0 8px 8px;
    background: #fff;
  }

  body .site-header .site-search,
  body.product-list-page .site-header .site-search,
  body.product-detail-page .site-header .site-search {
    width: 100%;
    max-width: 100%;
    height: 46px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  body .site-header .site-search input,
  body .site-header .site-search > button { height: 46px; }

  body.product-list-page .catalog-product-card {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-direction: column;
    gap: 12px;
    padding: 15px;
  }

  body.product-list-page .catalog-product-card .product-visual,
  body.product-list-page .catalog-product-card .product-image {
    width: 100%;
    max-width: 100%;
    height: 170px;
    max-height: 170px;
    object-fit: contain;
  }

  body.product-list-page .catalog-product-card dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
}

/* Phone-only spacing, catalog image, and detail gallery refinements. */
@media (max-width: 767px) {
  /* Home rhythm: header rows 12px, menu to catalog 12px, catalog to banner 12px. */
  body.home-page .site-header.clean-header {
    row-gap: 12px;
    padding-bottom: 0;
  }

  body.home-page .home-intro {
    margin: 0;
    padding: 0;
  }

  body.home-page .home-intro-shell {
    gap: 12px;
    margin-top: 12px;
    margin-bottom: 0;
  }

  /* Banner to Core Range is controlled here instead of stacked margin + padding. */
  body.home-page #products {
    margin-top: 16px;
    padding-top: 0;
    padding-bottom: 0;
  }

  /* One 20px transition between each later homepage section. */
  body.home-page main > .section:not(#products) {
    margin-top: 20px;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  body.home-page main > .rfq-band.home-rfq {
    margin-top: 20px;
  }

  /* Product list/category/search card image surface only. */
  body.product-list-page .catalog-product-card .product-visual,
  body.product-list-page .catalog-product-card.category-oring .product-visual,
  body.product-list-page .catalog-product-card.category-ptfe-gasket .product-visual {
    display: flex;
    width: 100%;
    max-width: 100%;
    height: 170px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 10px;
    overflow: hidden;
  }

  body.product-list-page .catalog-product-card .product-image,
  body.product-list-page .catalog-product-card.category-oring .product-image,
  body.product-list-page .catalog-product-card.category-ptfe-gasket .product-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 85%;
    max-height: 85%;
    margin: auto;
    object-fit: contain;
    object-position: center center;
    transform: none;
  }

  /* Remove the desktop gallery column assumptions on product detail pages. */
  body.product-detail-page .product-detail-hero {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    max-width: 100%;
  }

  body.product-detail-page .product-detail-hero .product-gallery {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0;
    padding: 0;
  }

  body.product-detail-page .product-detail-hero .product-detail-visual {
    display: flex;
    width: 100%;
    max-width: 360px;
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
  }

  body.product-detail-page .product-detail-hero .detail-product-image,
  body.product-detail-page .product-detail-hero.category-oring .detail-product-image,
  body.product-detail-page .product-detail-hero.category-ptfe-gasket .detail-product-image {
    position: static;
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    object-fit: contain;
    object-position: center center;
    transform: none;
  }

  body.product-detail-page .product-detail-hero .product-thumbnails {
    width: 100%;
    max-width: 360px;
    justify-content: center;
    margin: 0 auto;
  }
}

/* Actual catalog Product Card component: Product Center/category/search, phone only. */
@media (max-width: 767px) {
  body.product-list-page .catalog-product-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  body.product-list-page .catalog-product-card {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
  }

  body.product-list-page .catalog-product-card .product-visual,
  body.product-list-page .catalog-product-card.category-oring .product-visual,
  body.product-list-page .catalog-product-card.category-ptfe-gasket .product-visual {
    display: flex;
    width: 100%;
    max-width: 100%;
    height: 150px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 8px;
    overflow: hidden;
  }

  body.product-list-page .catalog-product-card .product-image,
  body.product-list-page .catalog-product-card.category-oring .product-image,
  body.product-list-page .catalog-product-card.category-ptfe-gasket .product-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 90%;
    max-height: 90%;
    margin: 0 auto;
    object-fit: contain;
    object-position: center center;
    transform: none;
  }

  body.product-list-page .catalog-product-info,
  body.product-list-page .catalog-product-info.has-no-code {
    gap: 8px;
  }

  body.product-list-page .catalog-product-card .product-code {
    margin: 0;
  }

  body.product-list-page .catalog-product-card h2 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  body.product-list-page .catalog-product-card dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
  }

  body.product-list-page .catalog-product-card dl div {
    min-width: 0;
    min-height: 54px;
    padding: 6px;
  }

  body.product-list-page .catalog-product-info .button {
    width: 100%;
    height: 44px;
    min-height: 44px;
    justify-content: center;
    margin: 0;
  }

  /* Detail thumbnails stay on one row without changing the main gallery. */
  body.product-detail-page .product-detail-hero .product-thumbnails {
    display: flex;
    width: 100%;
    max-width: 360px;
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
  }

  body.product-detail-page .product-detail-hero .product-thumbnails button {
    width: calc((100% - 24px) / 4);
    min-width: 0;
    height: auto;
    aspect-ratio: 1 / 1;
    flex: 0 1 calc((100% - 24px) / 4);
  }
}

/* Homepage phone-only density and image visibility refinements. */
@media (max-width: 767px) {
  body.home-page #products .section-heading h2 {
    font-size: 14px;
    line-height: 1.45;
  }

  body.home-page #products .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  body.home-page #products .product-card {
    min-width: 0;
    min-height: 0;
    padding: 12px;
  }

  body.home-page #products .product-card > .part-icon {
    position: static;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    margin: 0;
    transform: scale(.52);
    transform-origin: left center;
  }

  body.home-page #products .product-card h3 {
    margin: 7px 0 5px;
    font-size: 15px;
    line-height: 1.25;
  }

  body.home-page #products .product-card p {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  body.home-page #products .product-card strong {
    margin-top: auto;
    padding-top: 7px;
    font-size: 11px;
    line-height: 1.2;
  }

  body.home-page .about-section .about-intro h2 {
    font-size: 14px;
    line-height: 1.5;
  }

  body.home-page #what-we-supply .section-heading h2,
  body.home-page #resources .section-heading h2 {
    font-size: 14px;
    line-height: 1.5;
  }

  body.home-page #what-we-supply .business-image {
    display: none;
  }

  body.home-page #what-we-supply .business-mosaic {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: none;
    grid-auto-rows: auto;
    gap: 12px;
  }

  body.home-page #what-we-supply .business-card {
    grid-column: auto;
    grid-row: auto;
  }

  body.home-page #supply .advantage-banner {
    grid-template-columns: minmax(0, 1fr);
  }

  body.home-page #supply .advantage-banner-media {
    display: none;
  }
}

/* Mobile industrial catalog card: left image, right summary, full-width specs/action. */
@media (max-width: 767px) {
  body.product-list-page .catalog-product-grid {
    gap: 12px;
  }

  body.product-list-page .catalog-product-card {
    display: grid;
    width: 100%;
    max-width: 100%;
    height: 218px;
    min-height: 218px;
    grid-template-columns: 96px minmax(0, 1fr);
    grid-template-rows: 96px 50px 44px;
    column-gap: 14px;
    row-gap: 4px;
    align-items: stretch;
    padding: 10px 14px;
    overflow: hidden;
  }

  body.product-list-page .catalog-product-card .product-visual {
    grid-column: 1;
    grid-row: 1;
    width: 96px;
    max-width: 96px;
    height: 96px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    justify-self: center;
    margin: 0;
    border: 0;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: none;
  }

  body.product-list-page .catalog-product-card .product-image,
  body.product-list-page .catalog-product-card.category-oring .product-image,
  body.product-list-page .catalog-product-card.category-ptfe-gasket .product-image {
    width: auto;
    height: auto;
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    object-position: center center;
    display: block;
    margin: 0 auto;
    transform: none;
  }

  body.product-list-page .catalog-product-card .product-visual .part-icon {
    transform: scale(.8);
  }

  body.product-list-page .catalog-product-info,
  body.product-list-page .catalog-product-info.has-no-code {
    display: contents;
  }

  body.product-list-page .catalog-product-card .product-code {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    margin: 4px 0 0;
    color: var(--red);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.15;
  }

  body.product-list-page .catalog-product-card h2 {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    min-width: 0;
    margin: 25px 0 0;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
    -webkit-line-clamp: 2;
  }

  body.product-list-page .catalog-product-info.has-no-code h2 {
    margin-top: 8px;
  }

  body.product-list-page .catalog-product-card dl {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    width: 100%;
    height: 50px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 0;
  }

  body.product-list-page .catalog-product-card dl div {
    min-width: 0;
    min-height: 50px;
    height: 50px;
    padding: 6px 8px;
    border-radius: 7px;
    background: var(--paper);
  }

  body.product-list-page .catalog-product-card dt {
    font-size: 9px;
    line-height: 1.1;
  }

  body.product-list-page .catalog-product-card dd {
    margin-top: 3px;
    font-size: 12px;
    line-height: 1.15;
  }

  body.product-list-page .catalog-product-info .button {
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
    height: 44px;
    min-height: 44px;
    align-self: stretch;
    justify-content: center;
    margin: 0;
  }
}

/* Homepage lower sections: compact B2B catalog rhythm on phones only. */
@media (max-width: 767px) {
  body.home-page main > .section {
    margin-top: 20px;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  body.home-page .about-section .about-intro h2 {
    font-size: 17px;
    line-height: 1.35;
  }

  body.home-page .about-section .about-photo {
    height: 200px;
    margin-top: 14px;
    overflow: hidden;
  }

  body.home-page .about-section .about-photo img {
    width: 100%;
    height: 200px;
    min-height: 0;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
  }

  body.home-page .about-section .about-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  body.home-page .about-section .about-metrics span {
    min-height: 58px;
    padding: 7px 5px;
    font-size: 10px;
    line-height: 1.2;
  }

  body.home-page .about-section .about-metrics strong {
    margin-bottom: 1px;
    font-size: 16px;
    line-height: 1.1;
  }

  body.home-page .about-section .home-about-copy p {
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  body.home-page .about-section .home-about-copy p:nth-of-type(n + 3) {
    display: none;
  }

  body.home-page #what-we-supply .business-mosaic {
    gap: 12px;
  }

  body.home-page #what-we-supply .business-card {
    min-height: 0;
    padding: 16px;
  }

  body.home-page #what-we-supply .business-card h3 {
    font-size: 17px;
    line-height: 1.3;
  }

  body.home-page #what-we-supply .business-card p {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.45;
  }

  body.home-page #supply .advantage-banner-copy {
    padding: 18px 18px 20px;
  }

  body.home-page #supply .advantage-banner-copy h2 {
    margin-bottom: 8px;
    font-size: 23px;
    line-height: 1.25;
  }

  body.home-page #supply .advantage-banner-copy > p:last-child {
    font-size: 14px;
    line-height: 1.5;
  }

  body.home-page #supply .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  body.home-page #supply .advantage-grid article,
  body.home-page #supply .advantage-grid article:nth-child(n) {
    min-width: 0;
    min-height: 0;
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 12px;
  }

  body.home-page #supply .advantage-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
  }

  body.home-page #supply .advantage-icon .part-icon {
    transform: scale(.46);
  }

  body.home-page #supply .advantage-grid article > div {
    min-width: 0;
  }

  body.home-page #supply .advantage-grid strong {
    font-size: 15px;
    line-height: 1.25;
  }

  body.home-page #supply .advantage-grid p {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 5px;
    font-size: 12px;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  body.home-page #resources .resource-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  body.home-page #resources .resource-card {
    min-height: 0;
    padding: 16px;
  }

  body.home-page #resources .resource-card span {
    font-size: 13px;
  }

  body.home-page #resources .resource-card h3 {
    margin: 6px 0;
    font-size: 17px;
    line-height: 1.3;
  }

  body.home-page #resources .resource-card p {
    margin: 0;
    font-size: 14px;
    line-height: 1.45;
  }

  body.home-page #resources .resource-card strong {
    margin-top: 0;
    padding-top: 7px;
    font-size: 12px;
  }
}

/* Unified public mobile components. Keep this single authoritative phone layer last. */
@media (max-width: 767px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body .site-header.clean-header,
  body .shared-mobile-created-header {
    position: relative;
    display: grid;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: "brand language" "search search" "menu rfq" "nav nav";
    gap: 10px 12px;
    align-items: center;
    margin: 0;
    padding: 10px 14px 12px;
    overflow: visible;
  }

  body .site-header .header-brand {
    grid-area: brand;
    width: 126px;
    min-width: 110px;
    max-width: 126px;
  }

  body .site-header .header-brand img {
    display: block;
    width: 100%;
    max-width: 126px;
    height: auto;
    max-height: 48px;
  }

  body .site-header .language-switcher {
    position: static;
    grid-area: language;
    justify-self: end;
    margin: 0;
    transform: none;
  }

  body .site-header .site-search {
    display: grid;
    grid-area: search;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 46px;
    grid-template-columns: minmax(0, 1fr) auto;
    margin: 0;
  }

  body .site-header .site-search-field,
  body .site-header .site-search input {
    width: 100%;
    min-width: 0;
    height: 46px;
    border-radius: 7px 0 0 7px;
  }

  body .site-header .site-search > button {
    min-width: 76px;
    height: 46px;
    border-radius: 0 7px 7px 0;
  }

  body .mobile-menu-toggle,
  body .mobile-rfq-button,
  body .product-mobile-menu-toggle,
  body .product-mobile-rfq,
  body .product-fixed-rfq {
    display: none !important;
  }

  body .shared-mobile-menu-toggle,
  body .shared-mobile-rfq {
    display: inline-flex;
    width: 100%;
    min-width: 0;
    height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 12px;
    border: 1px solid var(--red);
    border-radius: 7px;
    font-size: 14px;
    font-weight: 800;
    white-space: nowrap;
  }

  body .shared-mobile-menu-toggle {
    grid-area: menu;
    color: var(--red);
    background: #fff;
  }

  body .shared-mobile-rfq {
    grid-area: rfq;
    color: #fff;
    background: var(--red);
  }

  body .site-header .site-nav {
    display: none;
    grid-area: nav;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    border: 1px solid #dce7ed;
    border-radius: 7px;
    background: #fff;
  }

  body.shared-mobile-nav-open .site-header .site-nav {
    display: flex;
  }

  body .site-header .site-nav a {
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    padding: 0 14px;
    border-bottom: 1px solid #edf2f5;
    font-size: 15px;
    white-space: nowrap;
  }

  body .site-header .site-nav a:last-child { border-bottom: 0; }
  body .site-header .site-nav a::before,
  body .site-header .site-nav a::after { display: none; }

  body .shared-mobile-categories,
  body .home-intro-shell > .shared-mobile-categories,
  body .category-sidebar.shared-mobile-categories {
    position: static;
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
    border: 0;
    border-radius: 8px;
    box-shadow: none;
    background: transparent;
  }

  body .shared-mobile-categories .category-dock-head {
    display: flex;
    width: 100%;
    min-height: 50px;
    align-items: center;
    justify-content: flex-start;
    padding: 0 15px;
    border: 0;
    border-radius: 8px;
    color: #fff;
    background: var(--red);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
  }

  body .shared-mobile-categories .category-dock-head::after {
    margin-left: auto;
    content: "+";
    font-size: 22px;
    font-weight: 400;
  }

  body .shared-mobile-categories .category-dock-head[aria-expanded="true"] {
    border-radius: 8px 8px 0 0;
  }
  body .shared-mobile-categories .category-dock-head[aria-expanded="true"]::after { content: "−"; }

  body .shared-mobile-categories .category-dock-list {
    display: none;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border: 1px solid #e1e7ea;
    border-top: 0;
    border-radius: 0 0 8px 8px;
    background: #fff;
  }

  body .shared-mobile-categories .category-dock-list.is-open { display: grid; }
  body .shared-mobile-categories .category-dock-list a {
    display: flex;
    width: 100%;
    min-height: 43px;
    align-items: center;
    padding: 8px 15px;
    font-size: 15px;
    line-height: 1.25;
    white-space: normal;
  }

  body.product-list-page,
  body.product-detail-page {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  body .shared-fixed-rfq {
    position: fixed;
    right: 14px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 14px;
    z-index: 26;
    display: flex;
    height: 48px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #fff;
    background: var(--red);
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(166, 18, 24, .3);
  }

  .product-list-page .catalog-product-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 15px;
  }

  .product-list-page .catalog-product-card {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-direction: column;
    gap: 12px;
    padding: 15px;
    overflow: hidden;
  }

  .product-list-page .catalog-product-card .product-visual {
    width: 100%;
    max-width: 100%;
    height: 170px;
    margin: 0;
    overflow: hidden;
  }

  .product-list-page .catalog-product-card .product-image {
    width: 100%;
    max-width: 100%;
    height: 170px;
    max-height: 170px;
    object-fit: contain;
    object-position: center;
  }

  .product-list-page .catalog-product-card h2 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .product-list-page .catalog-product-card dl {
    display: grid;
    width: 100%;
    max-width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .product-list-page .catalog-product-card dl div { min-width: 0; padding: 8px; }
  .product-list-page .catalog-product-card dd { overflow-wrap: anywhere; font-size: 14px; }
  .product-list-page .catalog-product-info .button { width: 100%; height: 44px; justify-content: center; }
}

/* Site-wide B2B catalog density: phones only. */
@media (max-width: 767px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body main {
    width: 100%;
    max-width: 100%;
  }

  body main img {
    max-width: 100%;
  }

  body .catalog-title-band {
    padding: 22px 18px;
  }

  body .catalog-title-band h1 {
    font-size: 26px;
    line-height: 1.2;
  }

  body .catalog-title-band p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Product detail: compact gallery, priority specs and RFQ actions. */
  body.product-detail-page .product-detail-hero {
    gap: 16px;
    padding: 20px 18px;
  }

  body.product-detail-page .product-gallery {
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  body.product-detail-page .product-detail-hero .product-detail-visual {
    width: min(100%, 280px);
    max-width: 280px;
    height: 240px;
    aspect-ratio: auto;
    margin: 0 auto;
  }

  body.product-detail-page .product-detail-hero .detail-product-image {
    max-width: 86%;
    max-height: 86%;
    object-fit: contain;
    object-position: center;
  }

  body.product-detail-page .product-detail-copy {
    display: flex;
    gap: 10px;
  }

  body.product-detail-page .product-detail-copy > .eyebrow { order: 1; }
  body.product-detail-page .product-detail-copy > h1 {
    order: 2;
    font-size: 24px;
    line-height: 1.25;
  }
  body.product-detail-page .product-detail-copy > .product-detail-spec-panel { order: 3; }
  body.product-detail-page .product-detail-copy > .button-row { order: 4; }
  body.product-detail-page .product-detail-copy > p:not(.eyebrow) {
    order: 5;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
  }
  body.product-detail-page .product-detail-copy > .product-hero-service-row { order: 6; }

  body.product-detail-page .product-detail-spec-panel .spec-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body.product-detail-page .product-detail-spec-panel .spec-list div {
    min-height: 58px;
    padding: 8px;
  }

  body.product-detail-page .product-detail-spec-panel .spec-list dd {
    margin-top: 3px;
    font-size: 14px;
  }

  body.product-detail-page .button-row {
    gap: 8px;
  }

  body.product-detail-page .button-row .button {
    min-height: 46px;
  }

  body.product-detail-page .product-tabs-section,
  body.product-detail-page .recommended-products,
  body.product-detail-page .product-detail-rfq {
    margin-top: 20px;
  }

  body.product-detail-page .product-tab-panel {
    padding: 16px;
  }

  body.product-detail-page .product-tab-panel p,
  body.product-detail-page .product-tab-panel li {
    font-size: 14px;
    line-height: 1.55;
  }

  body.product-detail-page .recommended-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
  }

  body.product-detail-page .recommended-card {
    display: grid;
    min-height: 112px;
    grid-template-columns: 96px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 10px 14px;
  }

  body.product-detail-page .recommended-visual {
    width: 96px;
    height: 96px;
    padding: 6px;
    border: 0;
  }

  body.product-detail-page .recommended-visual .product-image,
  body.product-detail-page .recommended-card.category-ptfe-gasket .recommended-visual .product-image {
    width: auto;
    height: auto;
    max-width: 82%;
    max-height: 82%;
    object-fit: contain;
  }

  body.product-detail-page .recommended-card h3 {
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
    -webkit-line-clamp: 2;
  }

  /* About page: one visual, compact metrics, two readable profile paragraphs. */
  body.about-page .about-section {
    margin-top: 20px;
    padding: 0 18px 20px;
  }

  body.about-page .about-layout {
    gap: 14px;
  }

  body.about-page .about-intro h2 {
    font-size: 18px;
    line-height: 1.35;
  }

  body.about-page .about-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  body.about-page .about-metrics span {
    min-height: 58px;
    padding: 7px 5px;
    font-size: 10px;
    line-height: 1.2;
  }

  body.about-page .about-metrics strong {
    margin-bottom: 1px;
    font-size: 16px;
  }

  body.about-page .about-page-photo,
  body.about-page .about-page-photo img {
    width: 100%;
    height: 200px;
    min-height: 0;
    aspect-ratio: auto;
  }

  body.about-page .about-page-photo img {
    object-fit: cover;
    object-position: center;
  }

  body.about-page .about-copy {
    gap: 12px;
  }

  body.about-page .about-copy p {
    margin: 0;
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  /* Resources page: article summaries instead of long mobile article cards. */
  body.resources-page .resource-article-list {
    gap: 12px;
    padding: 20px 18px;
  }

  body.resources-page .resource-article {
    min-height: 0;
    padding: 16px;
  }

  body.resources-page .resource-article h2 {
    margin: 5px 0 7px;
    font-size: 17px;
    line-height: 1.3;
  }

  body.resources-page .resource-article > div > p {
    margin: 0;
    color: #67727d;
    font-size: 14px;
    line-height: 1.55;
  }

  body.resources-page .resource-article h3 {
    margin: 16px 0 7px;
    font-size: 16px;
    line-height: 1.3;
  }

  body.resources-page .resource-article li,
  body.resources-page .resource-article > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.55;
  }

  /* Contact page: form first, contact and catalog links below. */
  body.contact-page .contact-page-rfq {
    display: flex;
    gap: 16px;
    margin: 20px 18px;
    padding: 18px;
    flex-direction: column;
  }

  body.contact-page .contact-page-rfq .rfq-form { order: 1; }
  body.contact-page .contact-page-rfq .home-rfq-copy { order: 2; }
  body.contact-page .contact-page-rfq .home-rfq-links { order: 3; }

  body.contact-page .rfq-form {
    width: 100%;
    gap: 10px;
  }

  body.contact-page .rfq-form input {
    width: 100%;
    height: 46px;
    min-height: 46px;
    box-sizing: border-box;
  }

  body.contact-page .rfq-form textarea {
    width: 100%;
    min-height: 96px;
  }

  body.contact-page .rfq-form .button {
    width: 100%;
    height: 48px;
    min-height: 48px;
  }

  body.contact-page .contact-info-block {
    margin-top: 10px;
  }

  body.contact-page .contact-info-block dd {
    font-size: 14px;
    line-height: 1.45;
  }

  body.contact-page .contact-socials {
    margin-top: 10px;
  }

  body.contact-page .home-rfq-links {
    margin: 0;
  }

  body.contact-page .home-rfq-link-columns {
    gap: 2px;
  }

  body.contact-page .home-rfq-link-columns a {
    min-height: 32px;
    font-size: 14px;
  }

  /* Compact any shared footer implementation without adding new content. */
  body .site-footer {
    padding: 20px 18px;
    font-size: 14px;
  }

  body .site-footer-inner {
    gap: 16px;
  }

  body .site-footer a,
  body .site-footer p,
  body .site-footer li {
    font-size: 14px;
    line-height: 1.45;
  }
}

/* Homepage About summary card: phones only. */
@media (max-width: 767px) {
  body.home-page .about-section .home-about-copy {
    display: none;
  }

  body.home-page .about-section .mobile-about-summary[hidden] {
    display: flex !important;
    width: 100%;
    min-width: 0;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
  }

  body.home-page .about-section .mobile-about-summary p {
    margin: 0;
    color: #67727d;
    font-size: 14px;
    line-height: 1.55;
  }

  body.home-page .about-section .mobile-about-summary ul {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  body.home-page .about-section .mobile-about-summary li {
    position: relative;
    min-height: 32px;
    padding: 7px 10px 7px 28px;
    border-radius: 7px;
    background: var(--paper);
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
  }

  body.home-page .about-section .mobile-about-summary li::before {
    position: absolute;
    top: 50%;
    left: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
    content: "";
    transform: translateY(-50%);
  }

  body.home-page .about-section .mobile-about-summary .red-link {
    align-self: flex-start;
    margin-top: 1px;
    color: var(--red);
    font-size: 14px;
    font-weight: 800;
  }
}

/* Product detail recommendations: independent compact phone card. */
@media (max-width: 767px) {
  body.product-detail-page .recommended-products .recommended-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  body.product-detail-page .recommended-products .recommended-card {
    display: flex;
    width: 100%;
    min-width: 0;
    min-height: 0;
    height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px;
  }

  body.product-detail-page .recommended-products .recommended-visual {
    display: flex;
    width: 100%;
    max-width: 100%;
    height: 100px;
    align-items: center;
    justify-content: center;
    padding: 6px;
  }

  body.product-detail-page .recommended-products .recommended-visual .product-image,
  body.product-detail-page .recommended-products .recommended-card.category-ptfe-gasket .recommended-visual .product-image {
    display: block;
    width: auto;
    height: auto;
    max-width: 88%;
    max-height: 88%;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  body.product-detail-page .recommended-products .recommended-card h3 {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    font-size: 14px;
    line-height: 1.3;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}

/* Homepage RFQ/footer catalog: compact phone-only composition. */
@media (max-width: 767px) {
  body.home-page main > .rfq-band.home-rfq {
    display: flex;
    width: 100%;
    min-height: 0;
    flex-direction: column;
    gap: 0;
    margin: 20px 0 0;
    padding: 28px 18px;
  }

  body.home-page .home-rfq .home-rfq-copy {
    order: 1;
    width: 100%;
    max-width: none;
  }

  body.home-page .home-rfq .home-rfq-copy h2 {
    margin-bottom: 8px;
    font-size: 24px;
    line-height: 1.25;
  }

  body.home-page .home-rfq .home-rfq-copy > p:not(.eyebrow) {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
  }

  body.home-page .home-rfq .contact-socials {
    gap: 8px;
    margin-top: 12px;
  }

  body.home-page .home-rfq .social-link {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
  }

  body.home-page .home-rfq .rfq-form {
    order: 2;
    width: 100%;
    max-width: 100%;
    gap: 8px;
    margin-top: 18px;
  }

  body.home-page .home-rfq .rfq-form input {
    width: 100%;
    height: 44px;
    min-height: 44px;
    box-sizing: border-box;
  }

  body.home-page .home-rfq .rfq-form textarea {
    width: 100%;
    height: 88px !important;
    min-height: 88px !important;
    max-height: 88px !important;
    box-sizing: border-box !important;
    resize: vertical;
  }

  body.home-page .home-rfq .rfq-form .button {
    width: 100%;
    height: 46px;
    min-height: 46px;
    margin: 0;
  }

  body.home-page .home-rfq .home-rfq-links {
    order: 3;
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
    margin: 24px 0 0;
  }

  body.home-page .home-rfq .home-rfq-links .eyebrow {
    margin: 0 0 10px;
    padding: 0;
    color: #ff5058;
  }

  body.home-page .home-rfq .home-rfq-link-columns {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 16px;
  }

  body.home-page .home-rfq .home-rfq-link-columns a {
    width: 100%;
    min-width: 0;
    min-height: 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.35;
    white-space: normal;
  }
}

/* Catalog Product Card density: Product Center/category/search on phones only. */
@media (max-width: 767px) {
  body.product-list-page .catalog-product-grid {
    gap: 10px;
  }

  body.product-list-page .catalog-product-card {
    height: 195px;
    min-height: 195px;
    grid-template-columns: 82px minmax(0, 1fr);
    grid-template-rows: 82px 41px 40px;
    column-gap: 10px;
    row-gap: 4px;
    padding: 12px;
  }

  body.product-list-page .catalog-product-card .product-visual {
    width: 82px;
    max-width: 82px;
    height: 82px;
  }

  body.product-list-page .catalog-product-card .product-image,
  body.product-list-page .catalog-product-card.category-oring .product-image,
  body.product-list-page .catalog-product-card.category-ptfe-gasket .product-image {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
  }

  body.product-list-page .catalog-product-card .product-code {
    margin-top: 2px;
    font-size: 13px;
    font-weight: 700;
  }

  body.product-list-page .catalog-product-card h2 {
    margin-top: 21px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
    -webkit-line-clamp: 2;
  }

  body.product-list-page .catalog-product-info.has-no-code h2 {
    margin-top: 5px;
  }

  body.product-list-page .catalog-product-card dl {
    height: 41px;
    gap: 8px;
  }

  body.product-list-page .catalog-product-card dl div {
    height: 41px;
    min-height: 0;
    padding: 8px;
    box-sizing: border-box;
  }

  body.product-list-page .catalog-product-card dt {
    font-size: 10px;
    line-height: 1;
  }

  body.product-list-page .catalog-product-card dd {
    margin-top: 2px;
    font-size: 12px;
    line-height: 1.05;
  }

  body.product-list-page .catalog-product-info .button {
    height: 40px;
    min-height: 40px;
    font-size: 14px;
    font-weight: 700;
  }
}

/* Product detail density and gallery: phones only. */
@media (max-width: 767px) {
  body.product-detail-page {
    padding-bottom: 20px;
  }

  body.product-detail-page .product-fixed-rfq {
    display: none !important;
  }

  body.product-detail-page .product-detail-hero {
    gap: 14px;
    padding: 18px 16px 22px;
  }

  body.product-detail-page .product-detail-hero .product-gallery {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
  }

  body.product-detail-page .product-detail-hero .product-detail-visual {
    display: flex;
    width: min(100%, 280px);
    max-width: 280px;
    height: 240px;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  body.product-detail-page .product-detail-hero .detail-product-image,
  body.product-detail-page .product-detail-hero.category-oring .detail-product-image,
  body.product-detail-page .product-detail-hero.category-ptfe-gasket .detail-product-image {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    margin: 0 auto;
    object-fit: cover;
    object-position: center center;
  }

  body.product-detail-page .product-detail-hero .product-thumbnails {
    display: flex;
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 8px;
    margin: 10px auto 0;
    overflow: hidden;
  }

  body.product-detail-page .product-detail-hero .product-thumbnails button {
    width: clamp(76px, calc((100% - 24px) / 4), 82px);
    min-width: 76px;
    max-width: 82px;
    height: clamp(76px, calc((100% - 24px) / 4), 82px);
    flex: 0 0 clamp(76px, calc((100% - 24px) / 4), 82px);
  }

  body.product-detail-page .product-detail-copy > .eyebrow {
    margin: 0;
    color: var(--red);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
  }

  body.product-detail-page .product-detail-copy > h1 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.22;
  }

  body.product-detail-page .product-detail-spec-panel .spec-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  body.product-detail-page .product-detail-spec-panel .spec-list div {
    min-height: 0;
    padding: 10px 12px;
  }

  body.product-detail-page .product-detail-spec-panel .spec-list dt {
    font-size: 11px;
  }

  body.product-detail-page .product-detail-spec-panel .spec-list dd {
    margin-top: 4px;
    font-size: 14px;
    line-height: 1.2;
  }

  body.product-detail-page .product-detail-hero .button-row {
    gap: 8px;
    margin-top: 2px;
  }

  body.product-detail-page .product-detail-hero .button-row .button {
    font-size: 15px;
  }

  body.product-detail-page .product-detail-hero .button-row .button.primary {
    height: 46px;
    min-height: 46px;
  }

  body.product-detail-page .product-detail-hero .button-row .button.ghost {
    height: 44px;
    min-height: 44px;
  }

  body.product-detail-page .product-detail-copy > p:not(.eyebrow) {
    margin-top: 6px;
  }

  body.product-detail-page .product-tabs-section {
    margin-bottom: 0;
    padding-bottom: 12px;
  }

  body.product-detail-page .product-tab-panels {
    padding-top: 10px;
  }
}

/* Phone spacing and typography fixes from visual QA. */
@media (max-width: 767px) {
  body.home-page {
    padding-bottom: 0;
  }

  body.home-page .about-section .about-layout {
    gap: 12px;
  }

  body.home-page .about-section .about-intro,
  body.home-page .about-section .about-content {
    gap: 10px;
  }

  body .shared-mobile-categories .category-dock-list a,
  body.product-list-page .category-sidebar .category-dock-list a,
  body.home-page .home-intro-shell .category-dock-list a {
    color: #3d5969;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.25;
  }

  body .shared-mobile-categories .category-dock-list a.active,
  body.product-list-page .category-sidebar .category-dock-list a.active {
    color: var(--red);
  }

  body .catalog-title-band {
    padding: 0;
  }

  body .catalog-title-band > div {
    min-height: 96px;
    padding: 14px 18px;
  }

  body .catalog-title-band .eyebrow {
    margin-bottom: 6px;
  }

  body .catalog-title-band h1 {
    font-size: 24px;
    line-height: 1.2;
  }

  body .catalog-title-band p:not(.eyebrow) {
    margin-top: 7px;
    font-size: 14px;
    line-height: 1.4;
  }
}

/* Final phone-only fixes: catalog density, RFQ typography, search and spacing. */
@media (max-width: 767px) {
  body .site-header .language-switcher {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    margin: 0 !important;
    padding-top: 0 !important;
    transform: none !important;
  }

  body .site-header .language-switcher .language-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    left: auto;
    margin-top: 0;
    transform: none;
  }

  body.product-list-page {
    padding-bottom: 20px;
  }

  body.product-list-page .shared-fixed-rfq,
  body.product-list-page .product-fixed-rfq {
    display: none !important;
  }

  body.product-list-page .catalog-product-card {
    height: 230px;
    min-height: 230px;
    grid-template-columns: 112px minmax(0, 1fr);
    grid-template-rows: 112px 44px 40px;
    column-gap: 10px;
    row-gap: 5px;
    padding: 12px;
  }

  body.product-list-page .catalog-product-card .product-visual {
    width: 112px;
    max-width: 112px;
    height: 112px;
    border: 1px solid #dbe5eb;
    border-radius: 8px;
    background: #ffffff;
    box-sizing: border-box;
  }

  body.product-list-page .catalog-product-card .product-code {
    margin-top: 27px;
  }

  body.product-list-page .catalog-product-card h2 {
    margin-top: 47px;
  }

  body.product-list-page .catalog-product-info.has-no-code h2 {
    margin-top: 36px;
  }

  body.product-list-page .catalog-product-card .product-image,
  body.product-list-page .catalog-product-card.category-oring .product-image,
  body.product-list-page .catalog-product-card.category-ptfe-gasket .product-image {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: center center;
  }

  body.product-list-page .catalog-product-card dl,
  body.product-list-page .catalog-product-card dl div {
    height: 44px;
  }

  body.product-detail-page .recommended-products {
    margin-top: 8px;
    padding: 0 18px 12px;
  }

  body.product-detail-page .recommended-products .section-heading {
    margin-bottom: 12px;
  }

  body.product-detail-page .recommended-products .section-heading h2 {
    font-size: 14px;
    line-height: 1.45;
  }

  body.product-detail-page .product-detail-rfq {
    margin-top: 12px;
  }

  body.product-detail-page .product-detail-rfq,
  body.contact-page .contact-page-rfq {
    color: #ffffff;
    background: #20262b;
  }

  body.product-detail-page .product-detail-rfq .eyebrow,
  body.contact-page .contact-page-rfq .eyebrow {
    color: #ff5058;
  }

  body.product-detail-page .product-detail-rfq h2,
  body.contact-page .contact-page-rfq h2 {
    color: #ffffff;
    font-size: 24px;
    line-height: 1.25;
  }

  body.contact-page .contact-page-rfq .contact-info-block,
  body.contact-page .contact-page-rfq .contact-info-block dt,
  body.contact-page .contact-page-rfq .contact-info-block dd,
  body.contact-page .contact-page-rfq .contact-info-block a {
    color: #ffffff;
  }

  body.product-detail-page .product-detail-rfq p:not(.eyebrow),
  body.contact-page .contact-page-rfq p:not(.eyebrow) {
    color: rgba(255, 255, 255, .74);
    font-size: 14px;
    line-height: 1.5;
  }

  body.product-detail-page .product-detail-rfq .home-rfq-link-columns a,
  body.contact-page .contact-page-rfq .home-rfq-link-columns a {
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    line-height: 1.35;
  }

  body .site-header .site-search-field {
    position: relative;
    overflow: visible;
  }

  body .site-header .site-search-dropdown {
    top: calc(100% + 5px);
    right: 0;
    left: 0;
    z-index: 80;
    width: 100%;
    max-height: 300px;
    overflow-x: hidden;
    overflow-y: auto;
  }

  body .site-header .site-search-dropdown .search-suggestion {
    position: static;
    display: grid;
    width: 100%;
    height: auto;
    min-height: 56px;
    grid-template-columns: minmax(0, 1fr);
    gap: 3px;
    align-items: start;
    justify-content: stretch;
    padding: 9px 12px;
    white-space: normal;
  }

  body .site-header .site-search-dropdown .search-suggestion-name,
  body .site-header .site-search-dropdown .search-suggestion-meta {
    position: static;
    width: 100%;
    min-width: 0;
    height: auto;
    overflow-wrap: anywhere;
  }

  body.home-page .site-header .site-search {
    display: grid;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 46px;
    grid-template-columns: minmax(0, 1fr) auto;
    margin: 0;
  }

  body.home-page .site-header .site-search-field,
  body.home-page .site-header .site-search input {
    width: 100%;
    min-width: 0;
    height: 46px;
    border-radius: 7px 0 0 7px;
  }

  body.home-page .site-header .site-search > button {
    min-width: 76px;
    height: 46px;
    border-radius: 0 7px 7px 0;
  }
}
