:root {
  --ink: #2f3030;
  --muted: #6f6f6f;
  --line: #dedede;
  --panel: #f7f7f7;
  --soft: #f1f1f1;
  --white: #ffffff;
  --orange: #F39700;
  --orange-dark: #cf8100;
  --green: #11845b;
  --steel: #111111;
  --footer: #050505;
  --shadow: 0 18px 45px rgba(89, 87, 87, .12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  color: #f2f2f2;
  background: #111111;
  font-size: 13px;
  font-weight: 800;
}

.topbar-inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-inner > * {
  min-width: 0;
}

.topbar-contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 7px;
  overflow-wrap: anywhere;
}

.topbar a {
  color: #fff;
  font-weight: 900;
}

.topbar-chat {
  min-height: 22px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  line-height: 1;
}

.topbar-whatsapp {
  background: #18a957;
}

.topbar-wechat {
  background: #07b34a;
}

.topbar-phone {
  color: #f2f2f2;
}

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

.nav {
  min-height: 102px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  width: 520px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}

.brand img {
  width: 238px;
  height: auto;
  flex: 0 0 auto;
}

.brand-lines {
  display: grid;
  gap: 4px;
  min-width: 0;
  color: #111111;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.38;
}

.brand-lines strong {
  color: #111111;
  font-size: 13px;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex: 1;
  color: #111111;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav a {
  white-space: nowrap;
  padding: 28px 0;
  border-bottom: 3px solid transparent;
}

.main-nav a:hover {
  color: #111111;
  border-color: var(--orange);
}

.main-nav a.is-current {
  color: #111111;
  border-color: var(--orange);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 4px;
  font-weight: 800;
}

.nav-cta {
  color: var(--white);
  background: var(--orange);
  white-space: nowrap;
}

.language-select {
  min-height: 34px;
  max-width: 104px;
  padding: 0 10px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, .18);
  border-radius: 4px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

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

.hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-slider,
.hero-slide,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-slider {
  overflow: hidden;
}

.hero-slide {
  opacity: 0;
  background-position: center;
  background-size: cover;
  transform: scale(1.015);
  transition: opacity 1.1s ease-in-out, transform 4.2s ease-out;
  will-change: opacity, transform;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.055);
}

.slide-1 {
  background-image: url("assets/hero-machining.jpg");
}

.slide-2 {
  background-image: url("assets/company-reception.jpg");
}

.slide-3 {
  background-image: url("assets/exhibition-service.jpg");
}

.slide-4 {
  background-image: url("assets/hero-warehouse-gearwell.jpg");
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(40, 39, 39, .86) 0%, rgba(65, 63, 63, .48) 30%, rgba(89, 87, 87, .08) 48%, rgba(89, 87, 87, 0) 58%, rgba(89, 87, 87, 0) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, .05) 0%, rgba(0, 0, 0, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 58px 0 74px;
}

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

.eyebrow.dark {
  color: var(--orange-dark);
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: 54px;
  line-height: 1.08;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: #e7edf2;
  font-size: 18px;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-dots {
  display: flex;
  gap: 8px;
  margin-top: 40px;
}

.hero-dots span {
  width: 28px;
  height: 3px;
  background: rgba(255, 255, 255, .35);
  transition: width .35s ease, background .35s ease;
}

.hero-dots span.is-active {
  width: 36px;
  background: var(--orange);
}

.button.primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 10px 26px rgba(245, 154, 35, .24);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .52);
  background: rgba(255, 255, 255, .08);
}

.button.outline {
  color: var(--orange-dark);
  border: 1px solid var(--orange);
  background: var(--white);
}

.quick-stats {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.stats-grid div {
  min-height: 108px;
  padding: 22px 26px;
  background: var(--white);
}

.stats-grid strong {
  display: block;
  color: var(--steel);
  font-size: 30px;
  line-height: 1.1;
}

  .stats-grid span {
    max-width: 100%;
    display: block;
    margin-top: 6px;
    color: var(--muted);
    font-size: 14px;
    overflow-wrap: break-word;
  }

.section {
  padding: 44px 0;
}

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

h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.18;
}

.text-link {
  color: var(--orange-dark);
  font-weight: 800;
}

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

.product-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
  align-items: start;
}

.category-panel {
  position: sticky;
  top: 128px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.category-panel h3 {
  margin: 0 0 18px;
  font-size: 22px;
}

.category-panel a {
  display: flex;
  align-items: center;
  min-height: 54px;
  margin-bottom: 8px;
  padding: 10px 16px;
  color: #4c5865;
  border-left: 3px solid transparent;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  background: #fafafa;
}

.category-panel a.active,
.category-panel a:hover {
  color: var(--orange-dark);
  background: #fff6ea;
  border-color: var(--orange);
}

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

.category-card-main {
  min-width: 0;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.category-card-main:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.category-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 20% 20%, rgba(243, 151, 0, .13), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f4f4f4 100%);
  border: 1px solid #edf1f5;
  border-radius: 4px;
  overflow: hidden;
}

.category-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(89, 87, 87, .08);
}

.category-visual img {
  position: relative;
  z-index: 1;
}

.visual-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  display: none;
}

.visual-parts {
  display: block;
}

.visual-parts img {
  position: absolute;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.visual-parts .part,
.visual-parts > img:not(.part) {
  width: 76%;
  height: 76%;
  left: 12%;
  top: 9%;
}

.visual-parts .part-main {
  width: 58%;
  height: 72%;
  left: 7%;
  top: 13%;
}

.visual-parts .part-top {
  width: 34%;
  height: 40%;
  left: 60%;
  top: 10%;
}

.visual-parts .part-bottom {
  width: 36%;
  height: 36%;
  left: 58%;
  top: 54%;
}

.category-card-main h3 {
  margin: 16px 0 6px;
  font-size: 20px;
  line-height: 1.28;
}

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

.category-card-main a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--orange-dark);
  font-size: 14px;
  font-weight: 900;
}

.category-card-main.featured {
  border-color: rgba(243, 151, 0, .36);
}

.category-card-main.featured h3 {
  font-size: 23px;
}

.advantage-section {
  background: var(--white);
}

.brand-section {
  background: var(--white);
}

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

.brand-head p:not(.eyebrow) {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--muted);
}

.brand-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 18px;
}

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

.brand-category-grid article {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.brand-category-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--orange);
  background: #fff3e3;
  border-radius: 50%;
  font-weight: 900;
}

.brand-category-grid h3 {
  margin: 16px 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.brand-category-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.brand-bank {
  padding: 24px;
  color: var(--white);
  background: #111111;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.brand-bank-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.brand-bank-head h3 {
  margin: 0;
  font-size: 22px;
}

.brand-bank-head span {
  color: #aeb8c2;
  font-size: 13px;
}

.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.brand-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  color: #e8eef4;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 3px;
  font-size: 14px;
  font-weight: 700;
}

.brand-tags a:hover {
  color: var(--ink);
  background: var(--orange);
}

.brand-search-note {
  display: grid;
  gap: 6px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.brand-search-note strong {
  color: #F39700;
}

.brand-search-note span {
  color: #d4d4d4;
  font-size: 14px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 30px;
  align-items: center;
}

.advantage-copy > p:not(.eyebrow),
.about-copy p,
.factory-text p,
.inquiry-box p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 18px;
  margin-top: 16px;
}

.feature-list div {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.feature-list span {
  grid-row: span 2;
  color: var(--green);
  font-weight: 900;
  font-size: 24px;
}

.feature-list strong {
  font-size: 18px;
}

.feature-list p {
  margin: 4px 0 0;
  color: var(--muted);
}

.advantage-card {
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.advantage-card img {
  width: 100%;
  aspect-ratio: 1 / 1.25;
  object-fit: cover;
}

.factory-band {
  padding: 46px 0;
  color: var(--ink);
  background: #f4f4f4;
}

.factory-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 26px;
  align-items: start;
}

.factory-text {
  position: sticky;
  top: 132px;
}

.factory-text h2 {
  margin-bottom: 16px;
  color: var(--ink);
}

.factory-text p:not(.eyebrow) {
  color: var(--muted);
}

.factory-points {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.factory-points li {
  position: relative;
  padding-left: 20px;
  color: var(--ink);
  font-weight: 700;
}

.factory-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 2px;
  background: var(--orange);
}

.factory-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.factory-images img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 14px 34px rgba(89, 87, 87, .12);
}

.about-section {
  background: var(--soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 34px;
  align-items: center;
}

.about-image img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-image span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.about-copy p {
  margin: 14px 0 22px;
}

.company-names {
  display: grid;
  gap: 8px;
  margin: -6px 0 22px;
  padding: 16px 18px;
  color: #33404d;
  background: rgba(255, 255, 255, .72);
  border-left: 3px solid var(--orange);
  font-size: 14px;
  font-weight: 700;
}

.inquiry-section {
  padding: 32px 0;
  background: var(--white);
}

.inquiry-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 36px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(47, 48, 48, .96), rgba(89, 87, 87, .92)),
    url("assets/warehouse-1.jpg") center / cover no-repeat;
  border-radius: 6px;
}

.inquiry-box p {
  margin: 10px 0 0;
  color: #dce6ed;
}

.site-footer {
  padding: 34px 0;
  color: #dbe2e8;
  background: var(--footer);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 34px;
}

.footer-logo {
  max-width: 320px;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.site-footer p {
  max-width: 360px;
  color: #aab4bd;
}

.footer-company-names {
  display: grid;
  gap: 5px;
  margin-top: 18px;
  color: #c7d0d8;
  font-size: 13px;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 16px;
}

.site-footer a {
  display: block;
  margin: 7px 0;
  color: #aab4bd;
}

.wechat-float {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 25;
  display: none !important;
  width: 154px;
  padding: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(243, 151, 0, .32);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgba(47, 48, 48, .18);
}

.wechat-float strong,
.wechat-float span,
.wechat-float small {
  display: block;
}

.wechat-float strong {
  color: var(--orange-dark);
  font-size: 13px;
  line-height: 1.2;
}

.wechat-float img {
  width: 100%;
  margin: 8px 0;
  border-radius: 4px;
}

.wechat-float span {
  color: var(--steel);
  font-size: 12px;
  font-weight: 800;
}

.wechat-float small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.wechat-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 7px 8px;
  color: var(--white);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.wechat-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: 8px;
}

.wechat-float .whatsapp-button {
  background: #18a957;
}

.wechat-float .wechat-button {
  background: #07b34a;
}

.wechat-float .email-button {
  margin-top: 7px;
  background: var(--orange);
}

.page-hero {
  --page-hero-image: url("assets/warehouse-detail.jpg");
  --page-hero-position: center;
  --page-hero-wash: linear-gradient(90deg, rgba(255, 255, 255, .92) 0%, rgba(255, 255, 255, .72) 43%, rgba(255, 255, 255, .22) 72%, rgba(255, 255, 255, .06) 100%);
  position: relative;
  isolation: isolate;
  padding: 38px 0 34px;
  color: var(--ink);
  background:
    var(--page-hero-wash),
    var(--page-hero-image) var(--page-hero-position) / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .18;
  background:
    radial-gradient(circle at 84% 24%, rgba(243, 151, 0, .12), transparent 18%),
    linear-gradient(135deg, transparent 0 62%, rgba(243, 151, 0, .07) 62% 67%, transparent 67%),
    linear-gradient(rgba(89, 87, 87, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 87, 87, .035) 1px, transparent 1px);
  background-size: auto, auto, 34px 34px, 34px 34px;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  z-index: -1;
  background: linear-gradient(90deg, var(--orange) 0 18%, rgba(255,255,255,.35) 18% 30%, transparent 30%);
}

.page-hero > .container {
  position: relative;
  z-index: 1;
}

.product-page-hero {
  --page-hero-image: url("https://images.pexels.com/photos/36564992/pexels-photo-36564992.jpeg?auto=compress&cs=tinysrgb&w=1800");
  --page-hero-position: center 52%;
}

.stock-page-hero {
  --page-hero-image: url("assets/exhibition-booth.jpg");
  --page-hero-position: center 50%;
}

.product-detail-hero {
  --page-hero-image: url("assets/ai-categories/hydraulic-pneumatic-parts.jpg");
  --page-hero-position: center 48%;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: end;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: 42px;
  line-height: 1.12;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--steel);
}

.product-search-card {
  padding: 18px;
  background: rgba(255, 255, 255, .9);
  border-left: 4px solid var(--orange);
  border-radius: 6px;
  box-shadow: 0 18px 46px rgba(48, 48, 48, .1);
}

.product-search-card strong {
  display: block;
  color: var(--steel);
  font-size: 15px;
}

.product-search-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
}

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

.products-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  margin-bottom: 20px;
}

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

.search-box input {
  min-width: 0;
  flex: 1;
  height: 48px;
  padding: 0 16px;
  border: 0;
  color: var(--ink);
  font: inherit;
}

.search-box button {
  min-width: 128px;
  border: 0;
  color: var(--white);
  background: var(--orange);
  font-weight: 800;
  cursor: pointer;
}

.search-box input:focus {
  outline: 0;
  box-shadow: inset 0 -2px 0 var(--orange);
}

.no-results {
  margin: 14px 0 0;
  padding: 18px;
  color: var(--steel);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 6px;
  font-weight: 800;
}

.toolbar-note {
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: var(--steel);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
}

.products-catalog-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 20px;
  align-items: start;
}

.filter-panel,
.product-result-head,
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.filter-panel {
  position: sticky;
  top: 128px;
  padding: 20px;
}

.filter-panel h2,
.filter-group h3 {
  margin: 0;
}

.filter-panel h2 {
  font-size: 22px;
  font-weight: 900;
}

.filter-group {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.filter-group h3 {
  color: var(--steel);
  font-size: 14px;
  font-weight: 900;
}

.filter-group a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  margin-top: 8px;
  padding: 0 10px;
  color: #4c5865;
  background: #fafafa;
  border-left: 3px solid transparent;
  font-size: 13px;
  font-weight: 900;
}

.filter-group a.active,
.filter-group a:hover {
  color: var(--orange-dark);
  background: #fff6ea;
  border-color: var(--orange);
}

.filter-group span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.product-result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  padding: 16px 18px;
}

.product-result-head h2 {
  font-size: 24px;
}

.product-result-head p {
  display: none;
}

.sort-pill {
  flex: 0 0 auto;
  padding: 8px 12px;
  color: var(--steel);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

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

.product-card {
  min-width: 0;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

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

.product-thumb {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  background: #f8f8f8;
  border-bottom: 1px solid var(--line);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card-body {
  padding: 12px;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 8px;
}

.product-meta span {
  padding: 3px 7px;
  color: var(--orange-dark);
  background: #fff6ea;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.products-list-page .product-meta span:first-child {
  display: none;
}

.product-card h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.product-title-wrap {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 76px;
}

.brand-logo-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 72px;
  max-width: 100%;
  min-height: 27px;
  padding: 0 10px 0 13px;
  color: var(--steel);
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 3px;
  box-shadow: 0 8px 18px rgba(89, 87, 87, .08);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-logo-badge::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 7px;
  background: currentColor;
  border-radius: 50%;
  opacity: .28;
}

.brand-danfoss { color: #c9232a; }
.brand-zhengde { color: var(--orange-dark); }
.brand-mac { color: #1976a9; }
.brand-bussmann { color: #d1242f; }
.brand-yudian { color: #1b7b5a; }
.brand-kimo { color: #e06b1a; }
.brand-smc { color: #1d69a8; }
.brand-panasonic { color: #0c5aa6; }
.brand-dpc { color: var(--steel); }
.brand-siemens { color: #00847d; }
.brand-mersen { color: #bf1e2e; }
.brand-telemecanique { color: #27845f; }
.brand-mettler { color: #2f5f8f; }
.brand-smartscan { color: #4a5fab; }

.product-card p {
  display: none;
}

.product-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.product-actions a {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

.product-actions a:first-child {
  color: var(--white);
  background: var(--orange);
}

.product-actions a:last-child {
  color: var(--orange-dark);
  border: 1px solid var(--orange);
}

.product-help-band {
  margin-top: 18px;
  padding: 18px;
  color: var(--white);
  background: #111111;
  border-radius: 6px;
}

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

.detail-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.detail-breadcrumb a {
  color: var(--steel);
}

.detail-breadcrumb strong {
  color: var(--orange-dark);
}

.product-detail-wrap {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(360px, .72fr);
  gap: 20px;
  align-items: start;
}

.detail-gallery,
.detail-summary,
.spec-card,
.sourcing-card,
.quote-flow article,
.related-strip article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.detail-gallery {
  padding: 16px;
}

.detail-main-image {
  display: grid;
  place-items: center;
  min-height: 470px;
  background: #f8f8f8;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.detail-main-image img {
  width: 100%;
  height: 100%;
  max-height: 470px;
  object-fit: contain;
}

.detail-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.detail-thumbs button {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fafafa;
  cursor: pointer;
}

.detail-thumbs button.is-active,
.detail-thumbs button:hover {
  border-color: var(--orange);
  box-shadow: inset 0 0 0 1px rgba(243, 151, 0, .35);
}

.detail-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-summary {
  padding: 24px;
}

.detail-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.detail-tags span {
  padding: 5px 9px;
  color: var(--orange-dark);
  background: #fff6ea;
  border: 1px solid rgba(243, 151, 0, .25);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-summary h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.16;
  overflow-wrap: anywhere;
}

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

.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.detail-meta-grid div {
  min-height: 82px;
  padding: 13px;
  background: var(--panel);
  border-left: 3px solid var(--orange);
}

.detail-meta-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.detail-meta-grid strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.detail-quote-box {
  margin-top: 18px;
  padding: 15px 16px;
  color: var(--white);
  background: var(--steel);
  border-left: 4px solid var(--orange);
}

.detail-quote-box strong {
  display: block;
  font-size: 16px;
}

.detail-quote-box p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, .82);
}

.detail-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.detail-info-section,
.quote-flow-section,
.related-section {
  padding-top: 34px;
}

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

.section-head.compact h2 {
  font-size: 30px;
}

.spec-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 20px;
  align-items: stretch;
}

.spec-card,
.sourcing-card {
  padding: 22px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.spec-table tr {
  border-top: 1px solid var(--line);
}

.spec-table th,
.spec-table td {
  padding: 13px 0;
  vertical-align: top;
  text-align: left;
}

.spec-table th {
  width: 160px;
  color: var(--steel);
  font-weight: 900;
}

.spec-table td {
  color: var(--muted);
}

.sourcing-card {
  background:
    linear-gradient(180deg, rgba(89, 87, 87, .94), rgba(89, 87, 87, .88)),
    url("assets/hero-warehouse-gearwell.jpg") center / cover no-repeat;
  color: var(--white);
}

.sourcing-card .eyebrow {
  color: var(--orange);
}

.sourcing-card h3 {
  margin: 8px 0 12px;
  font-size: 24px;
  line-height: 1.2;
}

.sourcing-card ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding-left: 19px;
  color: rgba(255, 255, 255, .82);
}

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

.quote-flow article {
  min-height: 190px;
  padding: 20px;
}

.quote-flow span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--orange-dark);
  background: #fff3df;
  border-radius: 50%;
  font-weight: 900;
}

.quote-flow h3 {
  margin: 16px 0 6px;
  font-size: 21px;
}

.quote-flow p {
  margin: 0;
  color: var(--muted);
}

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

.related-strip article {
  overflow: hidden;
}

.related-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f8f8f8;
  border-bottom: 1px solid var(--line);
}

.related-strip h3 {
  min-height: 58px;
  margin: 0;
  padding: 12px 13px 0;
  font-size: 15px;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.related-strip a {
  display: inline-flex;
  margin: 10px 13px 14px;
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
}

.stock-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.stock-toolbar h2 {
  margin: 0;
}

.stock-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 18px;
  align-items: start;
}

.stock-filter {
  position: sticky;
  top: 126px;
}

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

.stock-card {
  display: grid;
  grid-template-columns: 1fr;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: transform .2s ease, box-shadow .2s ease;
}

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

.stock-thumb {
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  min-height: 0;
  background: #f8f8f8;
  border-right: 0;
  border-bottom: 1px solid var(--line);
}

.stock-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stock-body {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 14px;
}

.stock-status {
  width: fit-content;
  padding: 4px 8px;
  color: var(--orange-dark);
  background: #fff6ea;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.stock-body h3 {
  margin: 0;
  min-height: 42px;
  font-size: 15px;
  line-height: 1.32;
  overflow-wrap: anywhere;
}

.stock-price {
  color: var(--orange-dark);
  font-size: 22px;
  font-weight: 900;
}

.stock-body dl {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 5px 8px;
  margin: 0;
  color: var(--steel);
  font-size: 12px;
}

.stock-body dt {
  color: var(--muted);
  font-weight: 800;
}

.stock-body dd {
  margin: 0;
  font-weight: 800;
}

.stock-body a {
  width: 100%;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
  padding: 0 12px;
  color: var(--white);
  background: var(--orange);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.store-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.store-process div {
  min-height: 82px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 6px;
}

.store-process strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.store-process span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

.product-help-band h3 {
  margin: 0;
}

.product-help-band p {
  max-width: 760px;
  margin: 8px 0 0;
  color: #e5e5e5;
}

.subpage-hero {
  min-height: 220px;
  display: flex;
  align-items: center;
  padding-top: 26px;
  padding-bottom: 24px;
}

.brand-page-hero {
  --page-hero-image: linear-gradient(135deg, #ffffff 0%, #f7f8fa 52%, #eef0f3 100%);
  --page-hero-position: center;
  --page-hero-wash: linear-gradient(90deg, rgba(247, 248, 250, .94) 0%, rgba(247, 248, 250, .82) 54%, rgba(247, 248, 250, .7) 100%);
  min-height: 240px;
  padding-top: 18px;
  padding-bottom: 18px;
  overflow: hidden;
}

.brand-page-hero::before {
  opacity: 1;
  background:
    linear-gradient(rgba(89, 87, 87, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 87, 87, .055) 1px, transparent 1px),
    radial-gradient(circle at 82% 24%, rgba(243, 151, 0, .12), transparent 20%),
    radial-gradient(circle at 15% 88%, rgba(89, 87, 87, .07), transparent 22%);
  background-size: 44px 44px, 44px 44px, auto, auto;
}

.brand-page-hero::after {
  content: "PARTS IDENTIFICATION";
  position: absolute;
  right: -60px;
  bottom: 8px;
  z-index: -1;
  color: rgba(89, 87, 87, .055);
  font-size: clamp(48px, 7vw, 110px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.brand-page-hero .page-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  align-items: center;
  gap: 30px;
}

.brand-page-hero h1 {
  max-width: 760px;
  font-size: 29px;
  line-height: 1.08;
}

.brand-hero-content {
  position: relative;
  z-index: 2;
}

.brand-hero-content .eyebrow {
  color: var(--orange-dark);
}

.brand-hero-subtitle {
  max-width: 680px;
  color: var(--steel);
  font-size: 15px;
  line-height: 1.45;
  margin-top: 10px !important;
}

.brand-hero-search {
  width: min(100%, 650px);
  min-height: 42px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 6px 6px 6px 14px;
  background: var(--white);
  border: 1px solid rgba(89, 87, 87, .14);
  border-radius: 6px;
  box-shadow: 0 20px 44px rgba(89, 87, 87, .12);
}

.brand-search-placeholder {
  color: #8a8a8a;
  font-size: 13px;
  font-weight: 700;
}

.brand-hero-search button {
  min-height: 32px;
  padding: 0 16px;
  color: var(--white);
  background: var(--orange);
  border: 0;
  border-radius: 4px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.brand-hero-badges {
  display: none;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.brand-hero-badges span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 11px;
  color: var(--steel);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(89, 87, 87, .12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
}

.brand-hero-badges strong {
  color: var(--orange-dark);
  font-weight: 900;
}

.brand-index-card {
  position: relative;
  z-index: 2;
  padding: 14px 16px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(89, 87, 87, .14);
  border-left: 6px solid var(--orange);
  border-radius: 8px;
  box-shadow: 0 24px 56px rgba(89, 87, 87, .16);
}

.brand-index-card h2 {
  margin: 0 0 9px;
  color: var(--steel);
  font-size: 17px;
  line-height: 1.2;
}

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

.brand-popular-grid a {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  color: var(--ink);
  background: #f7f8fa;
  border: 1px solid rgba(89, 87, 87, .13);
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 900;
  text-align: center;
}

.brand-popular-grid a:hover {
  color: var(--orange-dark);
  border-color: rgba(243, 151, 0, .5);
  background: #fff7ec;
}

.brand-hero-path {
  margin: 9px 0 0;
  padding-top: 9px;
  color: var(--muted);
  border-top: 1px solid rgba(89, 87, 87, .14);
  font-size: 11px;
  font-weight: 900;
}

.brand-logo-mosaic {
  position: relative;
  z-index: 2;
  min-height: 0;
  padding: 12px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 22%, rgba(243, 151, 0, .14), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(247, 248, 250, .94));
  border: 1px solid rgba(89, 87, 87, .13);
  border-left: 5px solid var(--orange);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(17, 17, 17, .11);
}

.brand-logo-mosaic::before {
  content: "";
  position: absolute;
  inset: 12px;
  opacity: .36;
  background:
    linear-gradient(rgba(89, 87, 87, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 87, 87, .055) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.brand-logo-strip {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.brand-logo-strip span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 9px;
  color: #111111;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(17, 17, 17, .13);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .01em;
  box-shadow: 0 10px 20px rgba(17, 17, 17, .06);
}

.brand-logo-strip span:nth-child(2n) {
  color: var(--orange-dark);
}

.strip-top {
  justify-content: flex-start;
}

.strip-bottom {
  justify-content: flex-end;
  margin-top: 10px;
}

.brand-logo-core {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2px;
  margin: 10px 0 0 24px;
  padding: 10px 13px;
  background: #111111;
  border-radius: 6px;
  box-shadow: 0 16px 34px rgba(17, 17, 17, .16);
}

.brand-core-number {
  color: var(--orange);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.brand-logo-core strong {
  color: var(--white);
  font-size: 14px;
  line-height: 1.25;
}

.brand-logo-core small {
  color: rgba(255, 255, 255, .68);
  font-size: 11px;
  font-weight: 800;
}

.brand-logo-route {
  position: absolute;
  right: 12px;
  bottom: 9px;
  z-index: 2;
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 900;
}

.brand-tech-shapes {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.brand-tech-shapes span {
  position: absolute;
  opacity: .18;
}

.shape-plc {
  right: 8%;
  top: 16%;
  width: 110px;
  height: 150px;
  border: 2px solid rgba(89, 87, 87, .18);
  border-radius: 10px;
}

.shape-plc::before,
.shape-plc::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  height: 2px;
  background: rgba(89, 87, 87, .16);
}

.shape-plc::before {
  top: 36px;
}

.shape-plc::after {
  top: 72px;
  box-shadow: 0 36px 0 rgba(89, 87, 87, .16);
}

.shape-gear {
  right: 30%;
  bottom: 12%;
  width: 124px;
  height: 124px;
  border: 15px dashed rgba(89, 87, 87, .12);
  border-radius: 50%;
}

.shape-cylinder {
  left: 43%;
  top: 18%;
  width: 210px;
  height: 46px;
  border: 2px solid rgba(89, 87, 87, .14);
  border-radius: 999px;
  transform: rotate(-12deg);
}

.shape-cylinder::before {
  content: "";
  position: absolute;
  right: -48px;
  top: 20px;
  width: 48px;
  height: 2px;
  background: rgba(89, 87, 87, .14);
}

.brand-hero-panel {
  position: relative;
  z-index: 2;
  padding: 24px;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(89, 87, 87, .16);
  border-left: 5px solid var(--orange);
  border-radius: 6px;
  box-shadow: 0 18px 45px rgba(89, 87, 87, .12);
}

.brand-hero-kicker,
.brand-hero-panel small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-hero-panel strong {
  display: block;
  margin-top: 8px;
  color: var(--steel);
  font-size: 24px;
  line-height: 1.2;
}

.brand-hero-workflow {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(17, 17, 17, .97), rgba(47, 48, 48, .94)),
    linear-gradient(90deg, rgba(243, 151, 0, .18), transparent 58%);
  border-color: rgba(17, 17, 17, .9);
  border-left-color: var(--orange);
}

.brand-hero-workflow .brand-hero-kicker,
.brand-hero-workflow em {
  color: rgba(255, 255, 255, .68);
}

.brand-hero-workflow strong {
  color: var(--white);
}

.brand-hero-workflow em {
  display: block;
  margin-top: 14px;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.45;
}

.brand-hero-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin-top: 18px;
}

.brand-hero-steps span {
  min-height: 58px;
  padding: 10px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 5px;
}

.brand-hero-steps b,
.brand-hero-steps small {
  display: block;
}

.brand-hero-steps b {
  color: var(--orange);
  font-size: 18px;
  line-height: 1;
}

.brand-hero-steps small {
  margin-top: 7px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.brand-hero-logos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 18px 0;
}

.brand-hero-logos span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: #fafafa;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
}

.brand-hero-logos span:nth-child(3n + 1) {
  border-left: 3px solid var(--orange);
}

.catalog-page-hero {
  --page-hero-image: url("assets/ai-categories-sheet.jpg");
  --page-hero-position: center 44%;
}

.news-page-hero {
  --page-hero-image: url("assets/industrial-banner-soft.jpg");
  --page-hero-position: center 50%;
}

.about-page-hero {
  --page-hero-image: url("https://images.pexels.com/photos/18341389/pexels-photo-18341389.jpeg?auto=compress&cs=tinysrgb&w=1800");
  --page-hero-position: center 48%;
  --page-hero-wash: linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .86) 45%, rgba(255, 255, 255, .38) 72%, rgba(255, 255, 255, .18) 100%);
  min-height: 220px;
  overflow: hidden;
}

.about-page-hero::before {
  opacity: .2;
  background:
    linear-gradient(rgba(89, 87, 87, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(89, 87, 87, .055) 1px, transparent 1px),
    radial-gradient(circle at 86% 28%, rgba(243, 151, 0, .18), transparent 18%);
  background-size: 44px 44px, 44px 44px, auto;
}

.about-page-hero .page-hero-grid {
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
}

.about-page-hero h1 {
  max-width: 680px;
}

.about-hero-panel {
  position: relative;
  min-width: 0;
  padding: 14px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(89, 87, 87, .16);
  border-left: 5px solid var(--orange);
  border-radius: 6px;
  box-shadow: 0 18px 46px rgba(89, 87, 87, .12);
}

.about-hero-panel::before,
.about-hero-panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.about-hero-panel::before {
  right: 18px;
  top: 18px;
  width: 88px;
  height: 88px;
  border-top: 2px solid rgba(243, 151, 0, .46);
  border-right: 2px solid rgba(243, 151, 0, .46);
}

.about-hero-panel::after {
  right: -28px;
  bottom: -26px;
  width: 150px;
  height: 58px;
  border: 1px solid rgba(89, 87, 87, .12);
  transform: skewX(-18deg);
  background: rgba(243, 151, 0, .08);
}

.about-panel-kicker {
  display: inline-flex;
  margin-bottom: 6px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.about-hero-panel > strong {
  display: block;
  max-width: 330px;
  color: var(--steel);
  font-size: 16px;
  line-height: 1.22;
}

.about-hero-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.about-hero-flow span {
  min-height: 30px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: var(--ink);
  background: #fafafa;
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
}

.about-company-stack {
  display: none;
  gap: 3px;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.42;
}

.contact-page-hero {
  --page-hero-image: url("assets/factory-building.jpg");
  --page-hero-position: center 52%;
  --page-hero-wash: linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .82) 50%, rgba(255, 255, 255, .28) 82%, rgba(255, 255, 255, .12) 100%);
  min-height: 220px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.contact-page-hero .page-hero-grid {
  grid-template-columns: minmax(0, 760px);
  align-items: center;
}

.contact-hero-copy h1 {
  font-size: 28px;
}

.contact-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.contact-hero-tags span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  color: var(--ink);
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(89, 87, 87, .12);
  border-left: 3px solid var(--orange);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
}

.page-section {
  background: var(--white);
}

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

.brand-directory {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.brand-directory a {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: var(--steel);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid transparent;
  border-radius: 6px;
  font-weight: 900;
  text-align: center;
}

.brand-directory a:hover {
  color: var(--orange-dark);
  border-left-color: var(--orange);
  box-shadow: var(--shadow);
}

.brand-library-tools {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: 16px;
  align-items: end;
  margin-bottom: 20px;
}

.brand-search {
  display: grid;
  gap: 7px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 900;
}

.brand-search input {
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
  outline: 0;
}

.brand-search input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(243, 151, 0, .12);
}

.az-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.az-nav a {
  min-width: 32px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--steel);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
}

.az-nav a:hover {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.brand-logo-showcase {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 24px;
}

.brand-logo-intro {
  min-width: 0;
  padding: 22px;
  background: var(--ink);
  border-radius: 6px;
  color: var(--white);
}

.brand-logo-intro h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.22;
}

.brand-logo-intro p:not(.eyebrow) {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.brand-logo-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.brand-logo-card {
  min-width: 0;
  min-height: 118px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 14px 10px;
  color: var(--steel);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  text-align: center;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.brand-logo-card:hover {
  transform: translateY(-2px);
  border-color: rgba(243, 151, 0, .42);
  box-shadow: 0 14px 30px rgba(89, 87, 87, .1);
}

.brand-logo-card img {
  width: 100%;
  height: 38px;
  object-fit: contain;
  filter: saturate(.96) contrast(1.02);
}

.brand-logo-card span {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

.brand-logo-card small {
  min-height: 16px;
  color: var(--muted);
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.brand-logo-source {
  grid-column: 2;
  margin: -10px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.brand-logo-source a {
  color: var(--orange-dark);
  font-weight: 900;
}

.brand-library-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  align-items: start;
}

.brand-featured,
.brand-letter-group {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.brand-featured {
  position: sticky;
  top: 128px;
  padding: 18px;
}

.brand-featured h3 {
  margin: 0 0 12px;
}

.brand-featured a {
  display: flex;
  min-height: 52px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 8px 12px;
  color: var(--steel);
  background: #fafafa;
  border-left: 3px solid transparent;
  font-weight: 900;
  line-height: 1.25;
}

.brand-featured a + a {
  margin-top: 7px;
}

.brand-featured a:hover {
  color: var(--orange-dark);
  background: #fff6ea;
  border-color: var(--orange);
}

.brand-featured a span,
.brand-featured a small {
  display: block;
}

.brand-featured a small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.brand-featured p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

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

.brand-letter-group {
  padding: 16px;
  scroll-margin-top: 150px;
}

.brand-letter-group h3 {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 12px;
  color: var(--orange-dark);
  background: #fff6ea;
  border-radius: 50%;
}

.brand-letter-group div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.brand-letter-group a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: #4c5865;
  background: #fafafa;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
}

.brand-letter-group a:hover {
  color: var(--orange-dark);
  background: #fff6ea;
  border-color: rgba(243, 151, 0, .28);
}

.seo-flow,
.split-content {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: center;
}

.seo-flow p,
.split-content p {
  color: var(--muted);
}

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

.flow-cards div {
  min-height: 118px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.flow-cards strong {
  display: block;
  color: var(--orange);
  font-size: 24px;
}

.flow-cards span {
  display: block;
  margin-top: 10px;
  color: var(--steel);
  font-weight: 900;
}

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

.catalog-grid article,
.contact-card,
.news-list article {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
}

.catalog-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.catalog-grid div {
  padding: 18px;
}

.catalog-grid span {
  color: var(--orange);
  font-weight: 900;
}

.catalog-grid h3,
.contact-card h2,
.news-list h2 {
  margin: 6px 0 0;
}

.catalog-grid p,
.contact-card p,
.news-list p {
  color: var(--muted);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  margin: 10px 0;
  padding: 14px 16px;
  color: var(--steel);
  background: var(--white);
  border-left: 4px solid var(--orange);
  font-weight: 800;
}

.about-draft-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .88fr);
  gap: 34px;
  align-items: start;
}

.about-draft-grid figure {
  margin: 0;
}

.about-draft-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.about-draft-grid figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.about-profile-card {
  padding: 4px 0;
}

.about-profile-card h2 {
  max-width: 650px;
  margin-bottom: 14px;
  font-size: 34px;
  line-height: 1.16;
}

.profile-lead {
  margin: 0;
  color: var(--steel);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.48;
}

.company-name-card {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  padding: 16px 18px;
  background: var(--panel);
  border-left: 4px solid var(--orange);
}

.company-name-card small {
  color: var(--orange-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.company-name-card strong {
  color: var(--steel);
}

.profile-copy p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.68;
}

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

.profile-highlight-grid div {
  min-height: 96px;
  padding: 15px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--orange);
  border-radius: 6px;
}

.profile-highlight-grid strong {
  display: block;
  color: var(--steel);
  font-size: 20px;
  line-height: 1.15;
}

.profile-highlight-grid span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.35;
}

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

.profile-panels article {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.profile-panels h2 {
  margin-bottom: 10px;
  font-size: 27px;
  line-height: 1.2;
}

.profile-panels p {
  margin-top: 0;
  color: var(--muted);
  line-height: 1.68;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.profile-tags span {
  padding: 7px 10px;
  color: var(--orange-dark);
  background: #fff6ea;
  border: 1px solid rgba(243, 151, 0, .22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.profile-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.profile-list li {
  margin-top: 9px;
  padding: 11px 12px;
  color: var(--steel);
  background: #fafafa;
  border-left: 3px solid var(--orange);
  font-weight: 800;
}

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

.trust-gallery article {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink);
}

.trust-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  opacity: .86;
}

.trust-gallery h3 {
  position: absolute;
  left: 14px;
  bottom: 12px;
  margin: 0;
  padding: 5px 8px;
  color: var(--white);
  background: rgba(47, 48, 48, .78);
  border-left: 3px solid var(--orange);
  font-size: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .7fr) minmax(0, .9fr);
  gap: 16px;
}

.contact-card {
  padding: 24px;
}

.contact-card .button {
  margin-top: 12px;
}

.contact-qr {
  width: 210px;
  margin: 14px auto;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.contact-company {
  display: grid;
  gap: 8px;
  align-content: start;
}

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

.contact-page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 20px;
  align-items: start;
}

.rfq-form,
.contact-mini-card,
.map-card,
.office-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.rfq-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.rfq-form h2 {
  margin-bottom: 6px;
}

.rfq-form p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}

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

.rfq-form label {
  display: grid;
  gap: 7px;
  color: var(--steel);
  font-size: 13px;
  font-weight: 900;
}

.rfq-form input,
.rfq-form select,
.rfq-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.rfq-form input,
.rfq-form select {
  height: 46px;
  padding: 0 12px;
}

.rfq-form textarea {
  resize: vertical;
  min-height: 132px;
  padding: 12px;
}

.rfq-form input:focus,
.rfq-form select:focus,
.rfq-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(243, 151, 0, .12);
  outline: 0;
}

.rfq-form button {
  width: fit-content;
  border: 0;
}

.contact-side-panel {
  display: grid;
  gap: 14px;
}

.contact-mini-card {
  padding: 18px;
}

.contact-mini-card h3 {
  margin: 0 0 10px;
}

.contact-mini-card a,
.contact-mini-card span,
.contact-mini-card small,
.contact-mini-card strong {
  display: block;
}

.contact-mini-card a {
  color: var(--orange-dark);
  font-weight: 900;
}

.contact-chat-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 12px;
}

.contact-chat-actions a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.contact-chat-actions .whatsapp-button {
  background: #18a957;
}

.contact-chat-actions .wechat-button {
  background: #07b34a;
}

.contact-mini-card span,
.contact-mini-card small {
  color: var(--muted);
}

.office-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 20px;
  align-items: start;
}

.office-list {
  display: grid;
  gap: 10px;
}

.office-card {
  padding: 16px 18px;
  border-left: 4px solid transparent;
}

.office-card.is-main,
.office-card:hover {
  border-left-color: var(--orange);
}

.office-card span {
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.office-card h3 {
  margin: 4px 0;
  font-size: 18px;
}

.office-card p,
.office-card small {
  color: var(--muted);
}

.office-card p {
  margin: 0;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.map-card {
  overflow: hidden;
  min-height: 520px;
}

.map-visual {
  position: relative;
  min-height: 440px;
  display: block;
  overflow: hidden;
  color: var(--ink);
  background: #f7f8fa;
}

.map-visual::before {
  content: none;
}

.map-visual::after {
  content: none;
  position: absolute;
  inset: 18px;
  z-index: 4;
  border: 1px solid rgba(89, 87, 87, .12);
  border-radius: 8px;
  pointer-events: none;
}

.map-visual iframe {
  width: 100%;
  height: 440px;
  display: block;
  border: 0;
  filter: grayscale(.12) contrast(1.03);
}

.map-title {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
}

.map-subtitle {
  position: absolute;
  top: 62px;
  left: 28px;
  z-index: 2;
  max-width: 260px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.map-plot {
  position: absolute;
  left: 6%;
  top: 96px;
  z-index: 1;
  width: 88%;
  aspect-ratio: 2 / 1;
}

.map-plot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: .42;
  filter: grayscale(1) contrast(1.18);
}

.map-point {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 3;
  width: 14px;
  height: 14px;
  background: var(--orange);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(243, 151, 0, .18), 0 10px 18px rgba(89, 87, 87, .18);
}

.map-point::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(243, 151, 0, .32);
  border-radius: 50%;
}

.map-point > span {
  position: absolute;
  min-width: 128px;
  padding: 9px 11px;
  color: var(--ink);
  background: rgba(255, 255, 255, .95);
  border-left: 4px solid var(--orange);
  border-radius: 5px;
  box-shadow: 0 14px 30px rgba(89, 87, 87, .15);
}

.map-point > span::before {
  content: "";
  position: absolute;
  background: var(--orange);
}

.map-point b,
.map-point small {
  display: block;
}

.map-point b {
  font-size: 13.5px;
}

.map-point small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.point-canada > span,
.point-usa > span {
  left: 18px;
  top: -12px;
}

.point-italy > span {
  left: 18px;
  top: -52px;
}

.point-china > span {
  right: 18px;
  top: -58px;
}

.point-hk > span {
  right: 18px;
  top: 18px;
}

.map-mobile-legend {
  display: none;
}

.map-action {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 3;
  padding: 11px 14px;
  color: var(--white);
  background: var(--orange);
  border-radius: 4px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(243, 151, 0, .22);
}

.map-card > div {
  padding: 16px 18px;
  border-top: 1px solid var(--line);
}

.map-card strong,
.map-card span {
  display: block;
}

.map-card span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.news-list {
  display: grid;
  gap: 16px;
}

.news-list article {
  display: grid;
  grid-template-columns: 280px 1fr;
}

.news-list img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
}

.news-list div {
  padding: 24px;
}

.news-list span {
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.news-list a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--orange-dark);
  font-weight: 900;
}

@media (max-width: 1020px) {
  .main-nav,
  .nav-cta,
  .language-select {
    display: none;
  }

  .wechat-float {
    display: none;
  }

  .nav {
    min-height: 68px;
    justify-content: space-between;
  }

  .brand {
    width: auto;
    max-width: calc(100% - 58px);
  }

  .brand img {
    width: 190px;
  }

  .brand-lines {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: 520px;
  }

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

  .product-layout,
  .products-catalog-layout,
  .product-detail-wrap,
  .spec-layout,
  .stock-layout,
  .brand-layout,
  .advantage-grid,
  .factory-grid,
  .about-grid,
  .seo-flow,
  .split-content,
  .about-draft-grid,
  .contact-grid,
  .contact-page-layout,
  .office-layout,
  .brand-library-layout,
  .brand-library-tools,
  .brand-logo-showcase,
  .profile-panels {
    grid-template-columns: 1fr;
  }

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

  .brand-logo-source {
    grid-column: auto;
  }

  .map-card {
    min-height: auto;
  }

  .map-visual {
    min-height: 430px;
  }

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

  .brand-page-hero .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .brand-hero-panel,
  .brand-index-card {
    width: 100%;
  }

  .about-hero-panel {
    width: 100%;
  }

  .category-panel {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    box-shadow: none;
  }

  .category-panel h3 {
    grid-column: 1 / -1;
  }

  .factory-images {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .filter-panel {
    position: static;
  }

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

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

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

  .az-nav {
    justify-content: flex-start;
  }

  .brand-featured {
    position: static;
  }

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

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

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .topbar-inner {
    min-height: 48px;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
    padding: 5px 0;
    text-align: center;
  }

  .topbar-contact {
    max-width: 100%;
    overflow-wrap: anywhere;
    font-size: 12px;
    line-height: 1.25;
  }

  .brand {
    width: auto;
  }

  .hero {
    min-height: 560px;
  }

  .hero-slide {
    background-position: 58% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, rgba(47, 47, 47, .9), rgba(89, 87, 87, .58));
  }

  .hero-content {
    padding: 54px 0;
  }

  .hero .eyebrow {
    display: none;
  }

  .hero h1 {
    font-size: 32px;
    overflow-wrap: normal;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions,
  .inquiry-box {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .stats-grid div {
    min-height: 92px;
    padding: 18px;
  }

  .section {
    padding: 34px 0;
  }

  h2 {
    font-size: 28px;
  }

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

  .category-panel {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .category-grid-main {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .category-card-main {
    padding: 16px;
  }

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

  .advantage-card img {
    aspect-ratio: 4 / 3;
  }

  .factory-band {
    padding: 34px 0;
  }

  .factory-images {
    grid-template-columns: 1fr;
  }

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

  .inquiry-box {
    padding: 24px 20px;
  }

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

  .page-hero-grid,
  .products-toolbar,
  .product-result-head,
  .product-actions {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

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

  .brand-page-hero {
    min-height: 0;
    padding: 34px 0;
  }

  .brand-page-hero::after {
    display: none;
  }

  .brand-hero-panel {
    padding: 18px;
  }

  .brand-hero-panel strong {
    font-size: 19px;
  }

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

  .brand-hero-subtitle {
    font-size: 15px;
  }

  .brand-hero-search {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
    margin-top: 20px;
    padding: 12px;
  }

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

  .brand-hero-badges {
    gap: 8px;
  }

  .brand-hero-badges span {
    min-height: 38px;
    font-size: 12px;
  }

  .brand-index-card {
    padding: 18px;
  }

  .brand-index-card h2 {
    font-size: 20px;
  }

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

  .brand-hero-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 14px;
  }

  .map-visual {
    min-height: 380px;
  }

  .map-visual iframe {
    height: 380px;
  }

  .map-visual::before,
  .map-visual::after {
    inset: 14px;
  }

  .map-title,
  .map-subtitle {
    left: 22px;
  }

  .map-title {
    top: 22px;
    font-size: 22px;
  }

  .map-subtitle {
    top: 55px;
    max-width: calc(100% - 44px);
  }

  .map-plot {
    left: 4%;
    top: 100px;
    width: 92%;
  }

  .map-point {
    width: 12px;
    height: 12px;
  }

  .map-point > span {
    display: none;
  }

  .map-mobile-legend {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 82px;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .map-mobile-legend span {
    min-height: 34px;
    display: flex;
    align-items: center;
    padding: 0 9px;
    color: var(--steel);
    background: rgba(255, 255, 255, .9);
    border-left: 3px solid var(--orange);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 900;
  }

  .map-action {
    left: 22px;
    right: 22px;
    bottom: 22px;
    text-align: center;
  }

  .about-page-hero {
    min-height: 0;
    padding: 30px 0;
  }

  .about-page-hero .page-hero-grid {
    gap: 18px;
  }

  .about-hero-panel {
    padding: 18px;
  }

  .about-hero-panel > strong {
    max-width: none;
    font-size: 18px;
  }

  .about-hero-flow {
    gap: 7px;
    margin-top: 14px;
  }

  .about-hero-flow span {
    min-height: 34px;
    font-size: 11px;
  }

  .about-company-stack {
    margin-top: 12px;
    padding-top: 12px;
    font-size: 11px;
  }

  .toolbar-note {
    min-height: 44px;
  }

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

  .detail-main-image {
    min-height: 320px;
  }

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

  .detail-meta-grid,
  .quote-flow,
  .related-strip {
    grid-template-columns: 1fr;
  }

  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
  }

  .spec-table td {
    padding-top: 0;
  }

  .stock-filter {
    position: static;
  }

  .stock-grid,
  .stock-card {
    grid-template-columns: 1fr;
  }

  .stock-thumb {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .search-box {
    flex-direction: column;
  }

  .search-box button {
    min-height: 44px;
  }

  .brand-directory,
  .flow-cards,
  .trust-gallery,
  .news-list article,
  .brand-index-grid,
  .brand-letter-group div,
  .profile-highlight-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .brand-logo-card {
    min-height: 108px;
  }

  .rfq-form {
    padding: 20px;
  }

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

  .news-list img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 460px) {
  .brand {
    width: auto;
  }

  .brand img {
    width: 176px;
  }

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

  .stats-grid,
  .product-grid,
  .category-panel {
    grid-template-columns: 1fr;
  }
}
