: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;
}

.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);
}

.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;
  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;
}

.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-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);
}

.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: 168px;
  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: 50px;
  line-height: 1.05;
}

.catalog-title-band p:not(.eyebrow) {
  max-width: 720px;
  margin-right: 0;
  margin-left: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.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;
}

.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;
  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;
  max-width: 620px;
  margin: 0;
}

.catalog-product-card dl div,
.spec-list div {
  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;
}

.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: translateY(-8%);
}

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

.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;
    padding: 12px 18px 14px;
  }

  .site-header.transparent {
    position: absolute;
  }

  .preview-nav,
  .site-nav {
    width: 100%;
    gap: 14px;
    overflow-x: auto;
  }

  .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,
  .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 13px;
  }

  .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;
  }
}

/* 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);
}

.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;
}
