:root {
  --green-950: #071510;
  --green-900: #0b2218;
  --green-800: #103421;
  --green-700: #17462d;
  --gold-500: #d9aa54;
  --gold-400: #f0c879;
  --gold-100: #fbf0d9;
  --ink: #17211b;
  --muted: #68736b;
  --line: #e4ded2;
  --paper: #fffdf8;
  --soft: #f5f0e7;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(10, 25, 18, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
}

body.loaded .intro {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
}

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

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

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

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

.intro {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  color: var(--gold-400);
  background: radial-gradient(circle at center, #123b29 0, var(--green-950) 48%, #020604 100%);
  transition: opacity 700ms ease, transform 700ms ease;
}

.intro-mark {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  border: 1px solid rgba(240, 200, 121, 0.42);
  border-radius: 50%;
  animation: introPulse 1300ms ease-in-out infinite alternate;
}

.intro svg {
  width: 46px;
  height: 46px;
}

.intro p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.intro span {
  width: 180px;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.intro span::before {
  display: block;
  width: 65%;
  height: 100%;
  content: "";
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, var(--gold-400), transparent);
  animation: introLoad 1200ms ease-in-out infinite;
}

@keyframes introPulse {
  from {
    transform: scale(0.96);
  }
  to {
    transform: scale(1.04);
  }
}

@keyframes introLoad {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(180%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  color: var(--white);
  background: rgba(7, 21, 16, 0.96);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.topbar {
  display: grid;
  grid-template-columns: auto minmax(260px, 520px) auto;
  gap: 24px;
  align-items: center;
  width: min(1240px, calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--gold-400);
  border: 1px solid rgba(240, 200, 121, 0.48);
  border-radius: 50%;
}

.brand-mark svg {
  width: 26px;
  height: 26px;
}

.brand strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 0.9;
  color: var(--gold-400);
}

.brand small {
  display: block;
  max-width: 210px;
  margin-top: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
}

.search {
  display: flex;
  gap: 10px;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}

.search input {
  width: 100%;
  min-width: 0;
  color: var(--white);
  background: transparent;
  border: 0;
  outline: 0;
}

.search input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.locale-control {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  min-height: 44px;
  padding: 0 12px;
  color: var(--gold-400);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(240, 200, 121, 0.28);
  border-radius: var(--radius);
}

.locale-control select {
  max-width: 138px;
  color: var(--white);
  background: transparent;
  border: 0;
  outline: 0;
}

.locale-control option {
  color: var(--ink);
}

.button {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.9rem;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
}

.button-gold {
  color: #1d1609;
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  box-shadow: 0 10px 22px rgba(217, 170, 84, 0.24);
}

.button-dark {
  color: var(--white);
  background: var(--green-800);
  border-color: rgba(240, 200, 121, 0.18);
}

.button-ghost {
  color: var(--gold-100);
  background: rgba(7, 21, 16, 0.52);
  border-color: rgba(240, 200, 121, 0.34);
}

.button-ghost-light {
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(7, 21, 16, 0.16);
}

.icon-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-size: 0.88rem;
  font-weight: 700;
  background: rgba(18, 57, 39, 0.94);
}

.nav a {
  position: relative;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.82);
}

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

.nav a:hover,
.nav a:focus {
  color: var(--white);
}

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

.hero {
  position: relative;
  isolation: isolate;
  min-height: 720px;
  padding: 96px 0 74px;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 21, 16, 0.99) 0%, rgba(7, 21, 16, 0.92) 50%, rgba(7, 21, 16, 0.42) 100%),
    url("images/hero-home.png") 78% center / cover;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 180px;
  content: "";
  background: linear-gradient(0deg, var(--paper), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--gold-500);
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5.6vw, 5.35rem);
}

h2 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
}

h3 {
  font-size: 1.45rem;
}

.hero-lede {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 2vw, 1.24rem);
  line-height: 1.65;
}

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

.hero-checks {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.88);
  list-style: none;
}

.hero-checks li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-checks svg {
  flex: 0 0 auto;
  width: 19px;
  color: #76d38f;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border: 1px solid rgba(240, 200, 121, 0.26);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-badge {
  position: absolute;
  right: 24px;
  bottom: -28px;
  display: grid;
  gap: 3px;
  min-width: 176px;
  padding: 17px 18px;
  color: var(--green-950);
  background: var(--gold-400);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.floating-badge strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.floating-badge span {
  font-size: 0.78rem;
  font-weight: 800;
}

.notice-strip {
  color: var(--green-950);
  background: #fcf7ec;
  border-block: 1px solid var(--line);
}

.notice-strip .container {
  display: flex;
  gap: 12px;
  align-items: center;
  min-height: 68px;
}

.notice-strip p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.notice-strip svg {
  flex: 0 0 auto;
  color: var(--green-700);
}

.stats-band {
  color: var(--gold-100);
  background: var(--green-900);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-inline: 1px solid rgba(255, 255, 255, 0.09);
}

.stats-grid div {
  display: grid;
  gap: 4px;
  justify-items: center;
  padding: 28px 12px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stats-grid div:last-child {
  border-right: 0;
}

.stats-grid strong {
  color: var(--gold-400);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1;
}

.stats-grid span {
  font-size: 0.86rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.76);
}

.section {
  padding: 94px 0;
}

.section-muted {
  background: var(--soft);
  border-block: 1px solid var(--line);
}

.section-dark {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 21, 16, 0.98), rgba(16, 52, 33, 0.92)),
    url("images/filter-banner.png") center / cover;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading p:not(.eyebrow),
.oem-panel p,
.factory-band p,
.contact-card p,
.inquiry-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.section-dark .inquiry-copy p,
.section-dark .inquiry-copy li {
  color: rgba(255, 255, 255, 0.78);
}

.filter-tabs,
.catalog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-tabs button,
.catalog-tabs button {
  min-height: 40px;
  padding: 0 15px;
  color: var(--green-950);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.filter-tabs button.active,
.catalog-tabs button.active {
  color: var(--white);
  background: var(--green-800);
  border-color: var(--green-800);
}

.section-catalog {
  background: linear-gradient(180deg, #fffdf8 0%, #f7f0e4 100%);
}

.catalog-toolbar {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.catalog-tabs {
  margin-bottom: 0;
}

.catalog-search {
  display: flex;
  flex: 0 0 320px;
  gap: 10px;
  align-items: center;
  min-height: 42px;
  padding: 0 13px;
  color: var(--green-800);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.catalog-search input {
  min-height: 40px;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.source-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 15px 16px;
  margin-bottom: 24px;
  color: var(--green-950);
  background: rgba(217, 170, 84, 0.12);
  border: 1px solid rgba(217, 170, 84, 0.24);
  border-radius: var(--radius);
}

.source-note p {
  margin: 0;
  color: #526055;
  font-size: 0.9rem;
  line-height: 1.55;
}

.catalog-status {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 12px 14px;
  color: var(--green-800);
  background: #fbfaf7;
  border: 1px solid #eee4d5;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 800;
}

.catalog-status span {
  color: var(--gold-600);
}

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

.catalog-card {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(24, 29, 25, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.catalog-card:hover {
  border-color: rgba(217, 170, 84, 0.7);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.catalog-image {
  position: relative;
  min-height: 214px;
  overflow: hidden;
  background: #fbfaf7;
}

.catalog-image img {
  width: 100%;
  height: 214px;
  object-fit: contain;
  padding: 12px;
}

.catalog-image span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  padding: 7px 9px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  text-overflow: ellipsis;
  white-space: nowrap;
  background: rgba(7, 21, 16, 0.78);
  border-radius: 6px;
  font-size: 0.68rem;
  font-weight: 800;
}

.catalog-body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.catalog-kicker {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  color: var(--gold-500);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-card h3 {
  font-size: 1.22rem;
  line-height: 1.1;
}

.catalog-card p {
  min-height: 70px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.tier-table {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #eee4d5;
  border-radius: 6px;
}

.tier-table th,
.tier-table td {
  padding: 8px 6px;
  text-align: center;
  border-bottom: 0;
  border-right: 1px solid #eee4d5;
  font-size: 0.72rem;
}

.tier-table th:last-child,
.tier-table td:last-child {
  border-right: 0;
}

.tier-table th {
  color: var(--green-950);
  background: #faf4e8;
}

.tier-table td {
  color: var(--green-800);
  font-weight: 900;
}

.catalog-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.catalog-actions[hidden] {
  display: none;
}

.catalog-detail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 12px;
  color: var(--green-950);
  background: #fbfaf7;
  border: 1px solid #eee4d5;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 900;
}

.catalog-detail-link svg {
  width: 14px;
  height: 14px;
  color: var(--gold-500);
}

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

.catalog-nav {
  min-height: 0;
  background: transparent;
}

.catalog-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 4px;
}

.catalog-hero-page {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 21, 16, 0.98), rgba(7, 21, 16, 0.78)),
    url("images/category-banner.png") center / cover;
}

.catalog-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 42px;
  align-items: center;
  min-height: 560px;
  padding-block: 78px;
}

.catalog-hero-card {
  display: grid;
  gap: 8px;
  padding: 32px;
  color: var(--green-950);
  background: linear-gradient(180deg, rgba(251, 240, 217, 0.96), rgba(217, 170, 84, 0.9));
  border: 1px solid rgba(240, 200, 121, 0.42);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.catalog-hero-card strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.9;
}

.catalog-hero-card span {
  font-size: 1.12rem;
  font-weight: 900;
}

.catalog-hero-card p {
  margin: 8px 0 0;
  color: rgba(7, 21, 16, 0.78);
  line-height: 1.6;
}

.catalog-index-section {
  background: var(--paper);
}

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

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

.catalog-category-link-grid a {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  color: var(--green-950);
  background: rgba(251, 240, 217, 0.62);
  border: 1px solid rgba(217, 170, 84, 0.34);
  border-radius: var(--radius);
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.catalog-category-link-grid a:hover {
  transform: translateY(-2px);
  background: var(--gold-100);
  border-color: rgba(217, 170, 84, 0.58);
}

.catalog-category-link-grid span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.catalog-index-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(24, 29, 25, 0.06);
}

.catalog-index-card img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: contain;
  padding: 12px;
  background: #fbfaf7;
  border: 1px solid #eee4d5;
  border-radius: var(--radius);
}

.catalog-index-card div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.catalog-index-card span {
  width: fit-content;
  padding: 6px 9px;
  color: var(--green-950);
  background: var(--gold-100);
  border: 1px solid rgba(217, 170, 84, 0.34);
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-index-card h3 {
  color: var(--green-950);
}

.catalog-index-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.catalog-index-card dl {
  display: grid;
  gap: 8px;
  margin: 6px 0 0;
}

.catalog-index-card dl div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid #eee4d5;
}

.catalog-index-card dt {
  color: var(--gold-500);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-index-card dd {
  margin: 0;
  color: var(--green-800);
  font-size: 0.88rem;
  line-height: 1.45;
}

.catalog-card-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  margin-top: 4px;
  padding: 9px 12px;
  color: var(--green-950);
  background: var(--gold-100);
  border: 1px solid rgba(217, 170, 84, 0.42);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 900;
}

.catalog-card-link svg {
  width: 14px;
  height: 14px;
}

.catalog-tier-section .button {
  margin-top: 18px;
}

.catalog-tier-section table {
  min-width: 0;
  table-layout: fixed;
}

.catalog-tier-section th,
.catalog-tier-section td {
  text-align: center;
}

.product-detail-hero {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 21, 16, 0.98), rgba(7, 21, 16, 0.72), rgba(7, 21, 16, 0.48)),
    url("images/category-banner.png") center / cover;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 42px;
  align-items: center;
  min-height: 640px;
  padding-block: 68px;
}

.product-detail-copy {
  display: grid;
  gap: 18px;
  max-width: 720px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--gold-100);
}

.product-detail-copy h1 {
  max-width: 760px;
}

.product-detail-media {
  display: grid;
  place-items: center;
  min-height: 430px;
  margin: 0;
  padding: 24px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(240, 200, 121, 0.32);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-detail-media img {
  width: min(100%, 560px);
  max-height: 520px;
  object-fit: contain;
}

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

.product-detail-panel {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(24, 29, 25, 0.06);
}

.product-detail-panel h2,
.product-directory-heading h3 {
  margin-bottom: 14px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.product-detail-wide {
  grid-column: 1 / -1;
}

.product-spec-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.product-spec-list div {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
  padding-top: 10px;
  border-top: 1px solid #eee4d5;
}

.product-spec-list div:first-child {
  border-top: 0;
}

.product-spec-list dt {
  color: var(--gold-500);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-spec-list dd {
  margin: 0;
  color: var(--green-800);
  line-height: 1.48;
}

.product-tier-table {
  width: 100%;
  margin-bottom: 14px;
}

.product-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.58;
}

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

.product-benefit-grid div,
.product-benefit-grid article {
  padding: 18px;
  background: #fbfaf7;
  border: 1px solid #eee4d5;
  border-radius: var(--radius);
}

.product-benefit-grid svg,
.buyer-guide-checklist svg {
  width: 28px;
  height: 28px;
  margin-bottom: 12px;
  color: var(--gold-500);
}

.product-benefit-grid h3 {
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.product-benefit-grid p,
.product-directory-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.buyer-guide-hero {
  background:
    linear-gradient(90deg, rgba(7, 21, 16, 0.98), rgba(7, 21, 16, 0.8)),
    url("images/hero-products.png") center / cover;
}

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

.buyer-guide-faq {
  display: grid;
  gap: 10px;
}

.buyer-guide-faq details {
  padding: 14px 16px;
  background: #fbfaf7;
  border: 1px solid #eee4d5;
  border-radius: 6px;
}

.buyer-guide-faq summary {
  cursor: pointer;
  color: var(--green-950);
  font-weight: 900;
}

.buyer-guide-faq p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

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

.buyer-guide-checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  background: #fbfaf7;
  border: 1px solid #eee4d5;
  border-radius: 6px;
  color: var(--green-800);
  font-weight: 800;
  line-height: 1.45;
}

.buyer-guide-checklist svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
}

.product-directory-hero {
  background:
    linear-gradient(90deg, rgba(7, 21, 16, 0.98), rgba(7, 21, 16, 0.84)),
    url("images/hero-products.png") center / cover;
}

.product-directory {
  display: grid;
  gap: 28px;
}

.product-directory-group {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(24, 29, 25, 0.06);
}

.product-directory-heading {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
}

.product-directory-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-directory-list a {
  display: grid;
  gap: 5px;
  min-height: 68px;
  padding: 11px 12px;
  background: #fbfaf7;
  border: 1px solid #eee4d5;
  border-radius: 6px;
}

.product-directory-list span {
  color: var(--green-950);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.32;
}

.product-directory-list small {
  color: var(--gold-500);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.category-landing-hero {
  background:
    linear-gradient(90deg, rgba(7, 21, 16, 0.99), rgba(7, 21, 16, 0.78), rgba(7, 21, 16, 0.28)),
    var(--category-hero-image, url("images/category-banner.png")) center / cover;
}

.category-landing-hero .catalog-hero-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 460px);
}

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

.category-hero-stats div {
  display: grid;
  gap: 6px;
  min-height: 116px;
  padding: 18px;
  color: var(--green-950);
  background: linear-gradient(180deg, rgba(251, 240, 217, 0.96), rgba(255, 253, 248, 0.9));
  border: 1px solid rgba(217, 170, 84, 0.38);
  border-radius: var(--radius);
}

.category-hero-stats strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 0.95;
}

.category-hero-stats span {
  color: var(--green-800);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

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

.category-link-row a {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
}

.category-link-row a[aria-current="page"] {
  color: var(--green-950);
  background: var(--gold-400);
  border-color: rgba(240, 200, 121, 0.5);
}

.category-overview-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: 22px;
}

.category-sourcing-list,
.category-mini-nav,
.category-quote-panel {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(24, 29, 25, 0.06);
}

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

.category-sourcing-list div {
  padding: 16px;
  background: #fbfaf7;
  border: 1px solid #eee4d5;
  border-radius: var(--radius);
}

.category-sourcing-list h3,
.category-mini-nav h3,
.category-quote-panel h3 {
  margin: 0 0 10px;
  color: var(--green-950);
  font-size: 1rem;
}

.category-sourcing-list p,
.category-mini-nav p,
.category-quote-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.58;
}

.category-mini-nav {
  display: grid;
  gap: 8px;
  align-content: start;
}

.category-mini-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid #eee4d5;
  color: var(--green-800);
  font-weight: 900;
}

.category-mini-nav a:first-of-type {
  border-top: 0;
}

.category-mini-nav span {
  color: var(--gold-500);
  font-size: 0.8rem;
}

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

.category-product-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(24, 29, 25, 0.06);
}

.category-product-image {
  display: grid;
  place-items: center;
  padding: 14px;
  background: #fbfaf7;
  border-bottom: 1px solid #eee4d5;
}

.category-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 200ms ease;
}

.category-product-card:hover .category-product-image img {
  transform: scale(1.035);
}

.category-product-body {
  display: grid;
  gap: 10px;
  padding: 15px;
}

.category-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-product-meta span {
  padding: 5px 8px;
  color: var(--green-950);
  background: var(--gold-100);
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.category-product-card h3 {
  margin: 0;
  color: var(--green-950);
  font-size: 1rem;
  line-height: 1.3;
}

.category-product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.52;
}

.category-price-tiers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-top: 2px;
}

.category-price-tiers div {
  padding: 8px;
  background: #fbfaf7;
  border: 1px solid #eee4d5;
  border-radius: 6px;
}

.category-price-tiers dt {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
}

.category-price-tiers dd {
  margin: 2px 0 0;
  color: var(--green-950);
  font-size: 0.83rem;
  font-weight: 900;
}

.category-quote-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  border: 1px solid rgba(240, 200, 121, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.category-quote-band h2 {
  color: var(--gold-400);
}

.category-quote-band p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.65;
}

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

.product-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 26px rgba(24, 29, 25, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover {
  border-color: rgba(217, 170, 84, 0.68);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.product-card img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  background: #fbfaf7;
}

.product-card-body {
  display: grid;
  gap: 13px;
  padding: 20px;
}

.card-topline {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  color: var(--gold-500);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.mini-link {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  width: fit-content;
  margin-top: 2px;
  color: var(--green-800);
  font-size: 0.86rem;
  font-weight: 900;
}

.visual-band,
.factory-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: stretch;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  overflow: hidden;
  background: var(--green-950);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visual-band img,
.factory-band img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.visual-band div,
.factory-band div {
  display: grid;
  align-content: center;
  padding: 44px;
  color: var(--white);
}

.visual-band p:not(.eyebrow),
.factory-band p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: 34px;
  align-items: start;
}

.table-card {
  overflow: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(22, 31, 24, 0.08);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 17px 18px;
  text-align: left;
  border-bottom: 1px solid #ece5d9;
}

th {
  color: var(--green-950);
  font-size: 0.78rem;
  text-transform: uppercase;
  background: #faf4e8;
}

td {
  color: #39443d;
  font-size: 0.9rem;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.advantage-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.advantage-card svg {
  width: 32px;
  height: 32px;
  color: var(--gold-500);
}

.advantage-card h3 {
  color: var(--green-950);
  font-size: 1.18rem;
}

.advantage-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.oem-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  gap: 34px;
  align-items: center;
}

.oem-panel {
  display: grid;
  gap: 20px;
}

.process {
  display: grid;
  gap: 10px;
  counter-reset: process;
}

.process-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-step span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  background: var(--green-800);
  border-radius: 50%;
}

.process-step h3 {
  font-size: 1.12rem;
}

.process-step p {
  margin: 4px 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.oem-visual {
  display: grid;
  gap: 14px;
}

.oem-visual img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(22, 31, 24, 0.12);
}

.oem-visual img:last-child {
  height: 180px;
}

.factory-band {
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
  margin-bottom: 94px;
}

.geo-section {
  padding-top: 0;
}

.geo-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) repeat(2, minmax(220px, 0.85fr));
  gap: 18px;
}

.geo-grid .section-heading {
  grid-row: span 2;
  padding: 34px;
  margin-bottom: 0;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-950), var(--green-800));
  border-radius: var(--radius);
}

.geo-grid .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.geo-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(24, 29, 25, 0.06);
}

.geo-card h3 {
  color: var(--green-950);
  font-size: 1.22rem;
}

.geo-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.62;
}

.locale-seo-section {
  padding-top: 0;
  background: linear-gradient(180deg, var(--paper), #fbf4e7);
  border-top: 1px solid var(--line);
}

.locale-seo-panel {
  display: grid;
  gap: 24px;
  padding-block: 54px;
}

.locale-seo-panel h2 {
  max-width: 920px;
}

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

.locale-seo-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
}

.locale-seo-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 2px 0 0;
  list-style: none;
}

.locale-seo-list li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  min-height: 54px;
  padding: 14px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.locale-seo-list svg {
  flex: 0 0 auto;
  width: 18px;
  margin-top: 2px;
  color: var(--green-700);
}

.inquiry-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 46px;
  align-items: start;
}

.inquiry-copy ul {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.inquiry-copy li {
  display: flex;
  gap: 10px;
  align-items: center;
}

.inquiry-copy svg {
  width: 19px;
  color: var(--gold-400);
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid rgba(240, 200, 121, 0.28);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  font-size: 0.84rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #d9d2c7;
  border-radius: 6px;
  outline: 0;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(217, 170, 84, 0.18);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.form-note.success {
  color: #146330;
  font-weight: 800;
}

.contact-section {
  padding-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 30px;
  align-items: stretch;
}

.contact-card {
  display: grid;
  align-content: center;
  padding: 42px;
  background: var(--gold-100);
  border: 1px solid #e6c984;
  border-radius: var(--radius);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.footer {
  margin-top: 94px;
  color: rgba(255, 255, 255, 0.75);
  background: var(--green-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 36px;
  padding: 52px 0 34px;
}

.footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.footer a,
.footer p {
  display: block;
  margin: 0 0 10px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-bottom {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-size: 0.82rem;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease var(--delay, 0ms), transform 700ms ease var(--delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.floating-contact-widget {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 45;
  display: grid;
  gap: 8px;
  justify-items: end;
}

.floating-contact-toggle {
  position: relative;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  justify-content: center;
  width: 46px;
  min-height: 46px;
  padding: 0;
  color: var(--green-950);
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  box-shadow: 0 10px 26px rgba(7, 21, 16, 0.24);
}

.floating-contact-toggle svg {
  position: relative;
  width: 18px;
  height: 18px;
}

.floating-contact-toggle span:not(.floating-contact-pulse) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.floating-contact-pulse {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(240, 200, 121, 0.48);
  border-radius: inherit;
  animation: floatingContactPulse 1600ms ease-out infinite;
}

.floating-contact-chevron {
  display: none;
}

.floating-contact-panel {
  display: grid;
  gap: 6px;
  width: min(248px, calc(100vw - 32px));
  padding: 7px;
  pointer-events: none;
  background: rgba(7, 21, 16, 0.94);
  border: 1px solid rgba(240, 200, 121, 0.3);
  border-radius: var(--radius);
  box-shadow: 0 22px 64px rgba(7, 21, 16, 0.35);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease;
  backdrop-filter: blur(12px);
}

.floating-contact-widget.is-open .floating-contact-panel {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.floating-contact-link {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 2px 9px;
  align-items: center;
  padding: 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius);
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.floating-contact-link:hover {
  background: rgba(240, 200, 121, 0.14);
  border-color: rgba(240, 200, 121, 0.38);
  transform: translateY(-1px);
}

.floating-contact-link svg {
  grid-row: span 2;
  width: 30px;
  height: 30px;
  padding: 7px;
  color: var(--green-950);
  background: var(--gold-400);
  border-radius: 50%;
}

.floating-contact-link span {
  overflow: hidden;
  font-size: 0.82rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.floating-contact-link small {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.floating-contact-whatsapp svg {
  color: #ffffff;
  background: #25d366;
}

.floating-contact-email svg {
  background: var(--gold-100);
}

.floating-contact-phone svg {
  color: var(--gold-400);
  background: var(--green-800);
}

@keyframes floatingContactPulse {
  0% {
    opacity: 0.8;
    transform: scale(0.96);
  }
  100% {
    opacity: 0;
    transform: scale(1.16);
  }
}

@media (max-width: 1040px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .search {
    display: none;
  }

  .hero-grid,
  .split,
  .oem-layout,
  .inquiry-grid,
  .contact-grid,
  .geo-grid,
  .visual-band,
  .factory-band {
    grid-template-columns: 1fr;
  }

  .geo-grid .section-heading {
    grid-row: auto;
  }

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

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

  .catalog-topbar,
  .catalog-hero-grid,
  .catalog-index-grid,
  .catalog-category-link-grid,
  .category-overview-layout,
  .product-detail-grid,
  .product-detail-sections {
    grid-template-columns: 1fr;
  }

  .product-detail-grid {
    min-height: auto;
  }

  .product-benefit-grid,
  .product-directory-list {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .catalog-toolbar {
    flex-direction: column;
  }

  .catalog-search {
    flex: 1 1 auto;
    width: 100%;
  }

  .locale-seo-grid,
  .locale-seo-list {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 760px) {
  .container,
  .topbar,
  .visual-band,
  .factory-band {
    width: min(100% - 28px, 1180px);
  }

  .topbar {
    min-height: 68px;
    gap: 14px;
  }

  .brand strong {
    font-size: 1.6rem;
  }

  .brand small {
    max-width: 148px;
    font-size: 0.62rem;
  }

  .locale-control {
    max-width: 64px;
    padding: 0 10px;
  }

  .locale-control select {
    width: 22px;
  }

  .header-actions .button {
    display: none;
  }

  .icon-button {
    display: grid;
  }

  .nav {
    position: fixed;
    top: 68px;
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 8px;
    border: 1px solid rgba(240, 200, 121, 0.2);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px;
  }

  .catalog-topbar {
    grid-template-columns: 1fr;
    padding-block: 14px;
  }

  .catalog-nav {
    display: flex;
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    border: 0;
    box-shadow: none;
  }

  .catalog-nav a {
    padding: 8px 0;
  }

  .catalog-hero-grid {
    min-height: auto;
    padding-block: 62px;
  }

  .category-landing-hero .catalog-hero-grid,
  .category-sourcing-list,
  .category-quote-band {
    grid-template-columns: 1fr;
  }

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

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

  .catalog-index-card img {
    height: 220px;
  }

  .catalog-tier-section th,
  .catalog-tier-section td {
    padding: 12px 6px;
    font-size: 0.76rem;
    overflow-wrap: anywhere;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 54px;
  }

  h1 {
    font-size: clamp(2.6rem, 14vw, 4.6rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-visual img {
    min-height: 270px;
  }

  .floating-badge {
    right: 14px;
    bottom: -18px;
  }

  .stats-grid,
  .category-grid,
  .catalog-grid,
  .category-product-grid,
  .product-benefit-grid,
  .product-directory-list,
  .advantage-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-grid {
    gap: 24px;
    padding-block: 46px;
  }

  .product-detail-media {
    min-height: 280px;
    padding: 16px;
  }

  .product-detail-media img {
    max-height: 320px;
  }

  .product-spec-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .product-directory-group {
    padding: 18px;
  }

  .product-directory-heading {
    display: grid;
  }

  .stats-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .section {
    padding: 68px 0;
  }

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

  .product-card img {
    height: 170px;
  }

  .catalog-image {
    min-height: 200px;
  }

  .catalog-image img {
    height: 200px;
  }

  .visual-band div,
  .factory-band div,
  .contact-card {
    padding: 28px;
  }

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

  .floating-contact-widget {
    right: 10px;
    bottom: 10px;
    left: auto;
    justify-items: end;
  }

  .floating-contact-toggle {
    width: 44px;
    min-height: 44px;
  }

  .floating-contact-panel {
    width: min(238px, calc(100vw - 20px));
    grid-template-columns: 1fr;
    padding: 7px;
  }

  .floating-contact-link {
    grid-template-columns: 30px minmax(0, 1fr);
    justify-items: stretch;
    min-height: 46px;
    gap: 2px 9px;
    padding: 8px;
    text-align: left;
  }

  .floating-contact-link svg {
    grid-row: span 2;
    width: 30px;
    height: 30px;
    padding: 7px;
  }

  .floating-contact-link span {
    width: 100%;
    font-size: 0.82rem;
  }

  .floating-contact-link small {
    display: block;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .locale-seo-grid,
  .locale-seo-list {
    grid-template-columns: 1fr;
  }
}
