:root {
  --ink: #10131b;
  --ink-2: #171c28;
  --ink-3: #202737;
  --paper: #f4f3ef;
  --white: #ffffff;
  --warm: #ece9e1;
  --line: #dcdcd5;
  --muted: #666b73;
  --yellow: #f9c61a;
  --yellow-deep: #dda900;
  --green: #1ca867;
  --purple: #56315d;
  --shadow-sm: 0 10px 30px rgba(15, 19, 27, 0.07);
  --shadow-lg: 0 30px 70px rgba(15, 19, 27, 0.16);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shell: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
a,
input,
textarea,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}

button,
summary {
  cursor: pointer;
}

button {
  border: 0;
}

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

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

main {
  min-height: 50vh;
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid rgba(249, 198, 26, 0.62);
  outline-offset: 3px;
}

.site-root {
  min-height: 100vh;
  overflow-x: clip;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section {
  padding: 104px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 17px;
  color: #806500;
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  background: var(--yellow);
  content: "";
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.73);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 56px;
  margin-bottom: 45px;
}

.section-heading > div:first-child {
  max-width: 780px;
}

.section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 590;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-heading p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.section-heading-dark h2 {
  color: var(--white);
}

.section-heading-dark p {
  color: rgba(255, 255, 255, 0.62);
}

.section-action {
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 21px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 12px 24px rgba(249, 198, 26, 0.14);
}

.button-primary:hover {
  background: #ffd23b;
  box-shadow: 0 15px 35px rgba(249, 198, 26, 0.22);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--ink-3);
}

.button-ghost-light {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-ghost-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.button-whatsapp {
  background: #22aa68;
  color: var(--white);
}

.button-whatsapp:hover {
  background: #168b54;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 710;
}

.text-link svg {
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(4px);
}

.text-link-light {
  color: var(--white);
}

.center-action {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

/* Header */

.utility-bar {
  background: #080a0f;
  color: rgba(255, 255, 255, 0.67);
  font-size: 11px;
}

.utility-inner {
  display: flex;
  min-height: 31px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-inner p,
.utility-inner > div,
.utility-inner a {
  display: flex;
  align-items: center;
}

.utility-inner p {
  gap: 8px;
  margin: 0;
}

.utility-inner > div {
  gap: 16px;
}

.utility-inner a {
  gap: 7px;
  transition: color 160ms ease;
}

.utility-inner a:hover {
  color: var(--white);
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(249, 198, 26, 0.1);
}

.utility-divider {
  width: 1px;
  height: 12px;
  background: rgba(255, 255, 255, 0.18);
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  box-shadow: 0 12px 30px rgba(9, 12, 18, 0.07);
}

.header-main {
  display: grid;
  min-height: 78px;
  grid-template-columns: 238px minmax(280px, 1fr) 155px;
  align-items: center;
  gap: 28px;
}

.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0 0 48px;
  background: var(--ink);
  content: "";
}

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

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
}

.brand-mark img {
  width: 43px;
  height: 43px;
  object-fit: contain;
}

.brand-words {
  display: flex;
  flex-direction: column;
  color: var(--white);
  line-height: 0.9;
}

.brand-words strong {
  font-size: 20px;
  font-weight: 780;
  letter-spacing: 0.09em;
}

.brand-words small {
  margin-top: 7px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.28em;
}

.header-search {
  position: relative;
  display: grid;
  height: 44px;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 7px;
  background: var(--white);
  padding-left: 14px;
}

.header-search > svg {
  color: #777c84;
}

.header-search input {
  width: 100%;
  height: 40px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
}

.header-search input::placeholder {
  color: #93979d;
}

.header-search > button {
  align-self: stretch;
  border-radius: 0 6px 6px 0;
  background: var(--yellow);
  padding: 0 21px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 760;
}

.search-suggestions {
  position: absolute;
  z-index: 120;
  top: calc(100% + 10px);
  right: 0;
  left: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
  overflow: hidden;
}

.suggestion-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ecece7;
  padding: 14px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.suggestion-title button {
  background: transparent;
  color: #816600;
  font-size: 11px;
  font-weight: 730;
}

.suggestion-item {
  display: grid;
  grid-template-columns: 50px 1fr 18px;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid #f0efeb;
  padding: 10px 15px;
  transition: background 150ms ease;
}

.suggestion-item:hover {
  background: #faf9f5;
}

.suggestion-image {
  display: grid;
  width: 50px;
  height: 44px;
  place-items: center;
  border-radius: 7px;
  background: var(--paper);
}

.suggestion-image img {
  width: 44px;
  height: 38px;
  object-fit: contain;
}

.suggestion-item > span:nth-child(2) {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.suggestion-item strong {
  overflow: hidden;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.suggestion-item small {
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.suggestion-empty {
  padding: 24px 18px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
}

.inquiry-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  text-align: left;
}

.header-action-icon {
  position: relative;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.header-action-icon b {
  position: absolute;
  top: -4px;
  right: -3px;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 9px;
}

.inquiry-action > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.inquiry-action small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  text-transform: uppercase;
}

.inquiry-action strong {
  font-size: 13px;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 6px;
  background: var(--yellow);
  color: var(--ink);
}

.nav-row {
  min-height: 48px;
  border-bottom: 1px solid #e9e9e4;
  background: var(--white);
}

.nav-inner {
  display: flex;
  min-height: 48px;
  align-items: stretch;
  justify-content: space-between;
}

.nav-inner nav {
  display: flex;
  align-items: stretch;
  gap: 27px;
}

.nav-inner nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #4d5158;
  font-size: 12px;
  font-weight: 630;
}

.nav-inner nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--yellow);
  content: "";
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

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

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

.nav-quick-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-quick-actions a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #595d64;
  font-size: 11px;
  font-weight: 650;
}

.nav-quick-actions button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  background: var(--yellow);
  padding: 0 19px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 750;
}

/* Home hero */

.hero {
  position: relative;
  min-height: 675px;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: -220px;
  left: -150px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  content: "";
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, black, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 675px;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: stretch;
}

.hero-copy {
  position: relative;
  z-index: 5;
  display: flex;
  max-width: 670px;
  flex-direction: column;
  justify-content: center;
  padding: 76px 60px 70px 0;
}

.hero-copy h1 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(48px, 5.6vw, 79px);
  font-weight: 585;
  letter-spacing: -0.068em;
  line-height: 0.94;
}

.hero-copy h1 span {
  color: var(--yellow);
}

.hero-copy > p {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 17px;
  line-height: 1.65;
}

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

.hero-search {
  display: grid;
  min-height: 59px;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 4px;
  border-radius: 7px;
  background: var(--white);
  margin-top: 34px;
  padding: 6px 7px 6px 17px;
  color: var(--ink);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.26);
}

.hero-search > svg {
  color: #858990;
}

.hero-search input {
  height: 44px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
}

.hero-search input::placeholder {
  color: #8f9399;
}

.hero-search button {
  align-self: stretch;
  border-radius: 5px;
  background: var(--yellow);
  padding: 0 19px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 760;
}

.hero-microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
}

.hero-microcopy span {
  color: rgba(255, 255, 255, 0.32);
}

.hero-microcopy a {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 160ms ease;
}

.hero-microcopy a:hover {
  color: var(--yellow);
}

.hero-visual {
  position: relative;
  min-height: 675px;
  background: #2b3039;
  overflow: hidden;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  min-height: 675px;
  object-fit: cover;
  animation: heroBreathe 14s ease-in-out infinite alternate;
}

.hero-visual-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--ink) 0%, rgba(16, 19, 27, 0.2) 25%, transparent 58%),
    linear-gradient(0deg, rgba(10, 12, 18, 0.8), transparent 55%);
}

.hero-visual::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--yellow);
  content: "";
}

.hero-visual-label {
  position: absolute;
  right: 35px;
  bottom: 28px;
  left: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 16px;
}

.hero-visual-label span {
  color: var(--yellow);
  font-size: 10px;
  font-weight: 730;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-visual-label strong {
  max-width: 270px;
  font-size: 12px;
  text-align: right;
}

.hero-category-card {
  position: absolute;
  display: flex;
  min-width: 225px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  background: rgba(13, 16, 23, 0.76);
  padding: 13px;
  backdrop-filter: blur(11px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.18);
}

.hero-category-card-one {
  top: 45px;
  right: 32px;
}

.hero-category-card-two {
  right: 32px;
  bottom: 92px;
}

.card-index {
  display: grid;
  width: 39px;
  height: 39px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 5px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 10px;
  font-weight: 760;
}

.hero-category-card div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-category-card small {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  text-transform: uppercase;
}

.hero-category-card strong {
  font-size: 12px;
}

@keyframes heroBreathe {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.055);
  }
}

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

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid > div {
  display: flex;
  min-height: 94px;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--line);
  padding: 18px 30px;
}

.trust-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.trust-grid svg {
  flex: 0 0 auto;
  color: #a77f00;
}

.trust-grid span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-grid strong {
  font-size: 13px;
}

.trust-grid small {
  color: var(--muted);
  font-size: 10px;
}

/* Category cards */

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

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

.category-card {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #dfe0db;
  border-radius: var(--radius);
  background: #e9e8e2;
  padding: 22px;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.category-card:hover {
  z-index: 3;
  border-color: #c8c7c0;
  box-shadow: var(--shadow-lg);
  transform: translateY(-7px);
}

.category-card-large {
  grid-column: span 2;
  background: var(--ink);
  color: var(--white);
}

.category-number {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  border: 1px solid rgba(17, 19, 27, 0.18);
  border-radius: 99px;
  padding: 6px 10px;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.category-card-large .category-number {
  border-color: rgba(255, 255, 255, 0.2);
}

.category-content {
  position: relative;
  z-index: 2;
  max-width: 74%;
}

.category-content h3 {
  margin: 0;
  font-size: 23px;
  font-weight: 630;
  letter-spacing: -0.035em;
}

.category-content p {
  margin: 11px 0 20px;
  color: #62676e;
  font-size: 12px;
  line-height: 1.6;
}

.category-card-large .category-content p {
  color: rgba(255, 255, 255, 0.58);
}

.category-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 720;
}

.category-card > img {
  position: absolute;
  z-index: 1;
  right: -8%;
  bottom: 6%;
  width: 58%;
  height: 52%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 16px 14px rgba(0, 0, 0, 0.12));
  transition: transform 260ms ease;
}

.category-card-large > img {
  right: 1%;
  bottom: -2%;
  width: 51%;
  height: 72%;
}

.category-card:hover > img {
  transform: scale(1.055) translateY(-3px);
}

/* Product marketplace */

.marketplace-section {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -15px 0 27px;
}

.filter-pills a {
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--white);
  padding: 9px 15px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 660;
}

.filter-pills a:hover,
.filter-pills a.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

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

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid #e2e2dc;
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.product-card:hover {
  border-color: #d0d0c8;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.product-card-topline {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 6px 16px;
}

.product-card-topline > span {
  max-width: calc(100% - 40px);
  overflow: hidden;
  color: #787c82;
  font-size: 9px;
  font-weight: 710;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.icon-button {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: #656a72;
  transition:
    background 150ms ease,
    color 150ms ease,
    border-color 150ms ease;
}

.icon-button:hover,
.icon-button-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.product-image-wrap {
  position: relative;
  display: grid;
  min-height: 230px;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.98), transparent 65%),
    #f1f0eb;
  overflow: hidden;
}

.product-image {
  width: 86%;
  height: 195px;
  object-fit: contain;
  filter: drop-shadow(0 17px 14px rgba(17, 19, 27, 0.14));
  transition: transform 250ms ease;
}

.product-card:hover .product-image {
  transform: scale(1.055);
}

.image-arrow {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  transform: translateY(5px);
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.product-card:hover .image-arrow {
  background: var(--yellow);
  color: var(--ink);
  transform: translateY(0);
}

.product-card-body {
  display: flex;
  min-height: 187px;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 18px 16px;
}

.product-brand {
  margin-bottom: 10px;
  color: #8b6f0a;
  font-size: 9px;
  font-weight: 730;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-title-link h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 635;
  letter-spacing: -0.032em;
  line-height: 1.16;
}

.product-title-link:hover h3 {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
}

.product-card-body > p {
  display: -webkit-box;
  margin: 11px 0 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.58;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-card-footer {
  display: flex;
  min-height: 67px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid #ecece6;
  padding: 12px 14px 12px 18px;
}

.product-card-footer > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.product-card-footer small {
  color: #92969b;
  font-size: 8px;
  text-transform: uppercase;
}

.product-card-footer strong {
  font-size: 12px;
}

.add-inquiry-button {
  display: inline-flex;
  min-height: 35px;
  align-items: center;
  gap: 6px;
  border-radius: 5px;
  background: var(--yellow);
  padding: 0 10px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 730;
  transition:
    transform 160ms ease,
    background 160ms ease;
}

.add-inquiry-button:hover {
  background: #ffd139;
  transform: translateY(-1px);
}

/* Partner feature */

.partner-feature {
  position: relative;
  padding: 105px 0;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.partner-feature::before {
  position: absolute;
  top: -20%;
  right: -5%;
  width: 620px;
  height: 620px;
  border: 100px solid rgba(249, 198, 26, 0.06);
  border-radius: 50%;
  content: "";
}

.partner-feature-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: center;
  gap: 80px;
}

.partner-feature-copy h2 {
  margin: 0;
  font-size: clamp(39px, 4vw, 58px);
  font-weight: 590;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.partner-feature-copy > p {
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  line-height: 1.72;
}

.partner-cert-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 30px;
}

.partner-cert-row span {
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 99px;
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.partner-feature-visual {
  position: relative;
  display: grid;
  min-height: 475px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 65%),
    #1a202c;
  overflow: hidden;
}

.partner-feature-visual::before {
  position: absolute;
  inset: 17px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  content: "";
}

.partner-feature-visual > img {
  position: relative;
  z-index: 2;
  width: 88%;
  height: 390px;
  object-fit: contain;
  filter: drop-shadow(0 28px 24px rgba(0, 0, 0, 0.32));
}

.partner-wordmark {
  position: absolute;
  top: 28px;
  left: 30px;
  color: rgba(255, 255, 255, 0.1);
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 800;
  letter-spacing: -0.06em;
}

.partner-spec-card {
  position: absolute;
  z-index: 3;
  right: 27px;
  bottom: 25px;
  display: flex;
  max-width: 270px;
  flex-direction: column;
  gap: 5px;
  border-radius: 8px;
  background: var(--yellow);
  padding: 14px 17px;
  color: var(--ink);
}

.partner-spec-card small {
  font-size: 8px;
  font-weight: 720;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.partner-spec-card strong {
  font-size: 11px;
}

/* Industries */

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

.industry-list {
  border-top: 1px solid #d6d5cf;
}

.industry-row {
  display: grid;
  min-height: 112px;
  grid-template-columns: 60px minmax(220px, 0.7fr) 1fr 38px;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid #d6d5cf;
  transition:
    background 180ms ease,
    padding 180ms ease;
}

.industry-row:hover {
  background: var(--white);
  padding-inline: 18px;
}

.industry-row > span {
  color: #a47c00;
  font-size: 11px;
  font-weight: 740;
}

.industry-row h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 620;
  letter-spacing: -0.035em;
}

.industry-row p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.industry-row > svg {
  justify-self: end;
  transition: transform 180ms ease;
}

.industry-row:hover > svg {
  transform: translateX(5px);
}

/* Service preview */

.service-preview {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.service-preview-grid {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 88px;
}

.service-photo-stack {
  position: relative;
  display: grid;
  min-height: 570px;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
}

.service-photo-stack > img {
  width: 100%;
  height: 100%;
  border-radius: 13px;
  object-fit: cover;
}

.service-photo-stack > img:first-child {
  grid-row: 1 / 3;
}

.service-photo-stack > img:nth-child(2) {
  grid-row: 1 / 3;
  transform: translateY(38px);
}

.service-photo-badge {
  position: absolute;
  right: 30px;
  bottom: 5px;
  display: flex;
  min-width: 230px;
  flex-direction: column;
  gap: 5px;
  border-radius: 8px;
  background: var(--yellow);
  padding: 18px;
  box-shadow: var(--shadow-lg);
}

.service-photo-badge strong {
  font-size: 14px;
}

.service-photo-badge small {
  color: #5e4c08;
  font-size: 10px;
}

.service-preview-copy h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 57px);
  font-weight: 590;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.service-preview-copy > p {
  margin: 25px 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #444951;
  font-size: 13px;
}

.check-list li svg {
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(249, 198, 26, 0.18);
  color: #957100;
  padding: 1px;
}

.service-preview-copy .button {
  margin-top: 31px;
}

/* Brands */

.brands-section {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.brand-rail {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid #d7d7d0;
  border-left: 1px solid #d7d7d0;
}

.brand-tile {
  position: relative;
  display: flex;
  min-height: 245px;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #d7d7d0;
  border-bottom: 1px solid #d7d7d0;
  background: var(--white);
  padding: 22px;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.brand-tile:hover {
  background: var(--ink);
  color: var(--white);
}

.brand-logo {
  display: grid;
  min-height: 95px;
  place-items: center;
  border-radius: 9px;
  background: #f2f1ed;
  padding: 18px;
}

.brand-logo img {
  width: 100%;
  height: 60px;
  object-fit: contain;
}

.brand-logo > span {
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.brand-tile > div:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-right: 24px;
}

.brand-tile strong {
  font-size: 13px;
}

.brand-tile small {
  color: #898d93;
  font-size: 9px;
  text-transform: uppercase;
}

.brand-tile > svg {
  position: absolute;
  right: 20px;
  bottom: 25px;
}

/* Founder */

.founder-band {
  position: relative;
  background: var(--purple);
  color: var(--white);
  overflow: hidden;
}

.founder-band::after {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 430px;
  height: 430px;
  border: 70px solid rgba(249, 198, 26, 0.11);
  border-radius: 50%;
  content: "";
}

.founder-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 590px;
  grid-template-columns: 0.43fr 0.57fr;
  align-items: stretch;
}

.founder-portrait {
  position: relative;
  overflow: hidden;
}

.founder-portrait::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--purple));
  content: "";
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
}

.founder-quote {
  position: relative;
  display: flex;
  max-width: 690px;
  flex-direction: column;
  justify-content: center;
  padding: 70px 30px 70px 80px;
}

.quote-mark {
  position: absolute;
  top: 45px;
  left: 34px;
  color: var(--yellow);
  font-family: Georgia, serif;
  font-size: 130px;
  line-height: 1;
  opacity: 0.75;
}

.founder-quote blockquote {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(30px, 3.5vw, 49px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.founder-quote > p {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 31px 0 26px;
}

.founder-quote > p strong {
  font-size: 14px;
}

.founder-quote > p span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}

/* FAQ and CTA */

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

.faq-grid {
  display: grid;
  grid-template-columns: 0.38fr 0.62fr;
  gap: 100px;
}

.faq-grid > div:first-child h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 590;
  letter-spacing: -0.055em;
  line-height: 1;
}

.faq-grid > div:first-child > p {
  margin: 22px 0 23px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  font-size: 15px;
  font-weight: 650;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 680px;
  margin: -6px 48px 25px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.quote-cta {
  position: relative;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.quote-cta::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
}

.quote-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 310px;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.quote-cta-inner > div:first-child {
  max-width: 770px;
}

.quote-cta h2 {
  margin: 0;
  font-size: clamp(35px, 4vw, 56px);
  font-weight: 580;
  letter-spacing: -0.055em;
  line-height: 1;
}

.quote-cta-actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;
}

/* Page hero */

.page-hero {
  position: relative;
  min-height: 410px;
  background:
    radial-gradient(circle at 83% 20%, rgba(249, 198, 26, 0.18), transparent 24%),
    var(--ink);
  color: var(--white);
  overflow: hidden;
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 410px;
  align-items: center;
  justify-content: space-between;
  gap: 90px;
}

.page-hero-inner > div:first-child {
  max-width: 850px;
  padding: 65px 0;
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(49px, 6vw, 78px);
  font-weight: 580;
  letter-spacing: -0.067em;
  line-height: 0.94;
}

.page-hero p {
  max-width: 690px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.68;
}

.page-hero-side {
  display: flex;
  min-width: 295px;
  flex-direction: column;
  gap: 1px;
}

.page-hero-stat {
  display: grid;
  min-height: 98px;
  grid-template-columns: 75px 1fr;
  align-items: center;
  gap: 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  padding: 15px 18px;
}

.page-hero-stat strong {
  color: var(--yellow);
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.page-hero-stat span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  line-height: 1.45;
}

.page-hero-machine {
  width: 310px;
  height: 270px;
  object-fit: contain;
  filter: drop-shadow(0 25px 20px rgba(0, 0, 0, 0.35));
}

/* Catalogue */

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

.catalogue-layout {
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  align-items: start;
  gap: 34px;
}

.catalogue-sidebar {
  position: sticky;
  top: 145px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  overflow: hidden;
}

.filter-header {
  display: flex;
  min-height: 57px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 0 17px;
}

.filter-header strong {
  font-size: 13px;
}

.filter-header button {
  background: transparent;
  color: #846800;
  font-size: 10px;
  font-weight: 700;
}

.catalogue-search {
  display: grid;
  height: 42px;
  grid-template-columns: 25px 1fr;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  margin: 15px 15px 6px;
  padding: 0 10px;
  color: #777b82;
}

.catalogue-search input {
  min-width: 0;
  height: 38px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 11px;
}

.filter-group {
  border-bottom: 1px solid var(--line);
  padding: 16px 15px 14px;
}

.filter-group > p {
  margin: 0 0 9px;
  color: #8c9095;
  font-size: 9px;
  font-weight: 740;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-group button {
  display: flex;
  width: 100%;
  min-height: 36px;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-radius: 5px;
  background: transparent;
  padding: 0 8px;
  color: #5e6269;
  font-size: 10px;
  text-align: left;
}

.filter-group button:hover,
.filter-group button.selected {
  background: #f2f0e8;
  color: var(--ink);
  font-weight: 670;
}

.filter-group button span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-group button b {
  display: grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 99px;
  background: #eceae4;
  font-size: 8px;
}

.sidebar-help {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--ink);
  padding: 22px 20px;
  color: var(--white);
}

.sidebar-help > svg {
  margin-bottom: 21px;
  color: var(--yellow);
}

.sidebar-help strong {
  font-size: 15px;
  line-height: 1.3;
}

.sidebar-help p {
  margin: 9px 0 16px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  line-height: 1.6;
}

.sidebar-help a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--yellow);
  font-size: 10px;
  font-weight: 700;
}

.catalogue-toolbar {
  display: flex;
  min-height: 57px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  margin-bottom: 18px;
  padding: 10px 14px 10px 18px;
}

.catalogue-toolbar > div {
  display: flex;
  align-items: center;
  gap: 7px;
}

.catalogue-toolbar strong {
  font-size: 16px;
}

.catalogue-toolbar span {
  color: var(--muted);
  font-size: 10px;
}

.clear-chip {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  gap: 5px;
  border-radius: 99px;
  background: #f0eee7;
  margin-left: 8px;
  padding: 0 10px;
  color: #5e6269;
  font-size: 9px;
}

.catalogue-toolbar label {
  display: flex;
  align-items: center;
  gap: 9px;
}

.catalogue-toolbar select {
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  padding: 0 25px 0 9px;
  color: var(--ink);
  font-size: 10px;
}

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

.empty-results {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 50px;
  text-align: center;
}

.empty-results-icon {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  background: #f1efe8;
  color: #8c6d00;
}

.empty-results h3 {
  margin: 22px 0 10px;
  font-size: 25px;
  letter-spacing: -0.04em;
}

.empty-results p {
  max-width: 500px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

/* Breadcrumbs and product detail */

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  min-height: 70px;
  color: #777b82;
  font-size: 10px;
}

.breadcrumbs > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.breadcrumbs a:hover {
  color: var(--ink);
}

.breadcrumbs strong {
  color: var(--ink);
  font-weight: 650;
}

.product-detail-section {
  background: var(--white);
  padding-bottom: 74px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 62px;
}

.product-main-image {
  position: relative;
  display: grid;
  min-height: 565px;
  place-items: center;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at center, var(--white), transparent 70%),
    #f0efe9;
  overflow: hidden;
}

.product-main-image::before,
.product-main-image::after {
  position: absolute;
  border: 1px solid rgba(17, 19, 27, 0.05);
  border-radius: 50%;
  content: "";
}

.product-main-image::before {
  width: 370px;
  height: 370px;
}

.product-main-image::after {
  width: 510px;
  height: 510px;
}

.product-main-image img {
  position: relative;
  z-index: 3;
  width: 88%;
  height: 465px;
  object-fit: contain;
  filter: drop-shadow(0 30px 25px rgba(17, 19, 27, 0.18));
  animation: productFloat 5s ease-in-out infinite;
}

@keyframes productFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

.image-corner-label {
  position: absolute;
  z-index: 4;
  top: 21px;
  left: 21px;
  border-radius: 99px;
  background: var(--white);
  padding: 8px 11px;
  color: #6b7077;
  font-size: 9px;
  font-weight: 680;
  box-shadow: var(--shadow-sm);
}

.gallery-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 4px 0;
  color: #74787f;
  font-size: 9px;
}

.gallery-info-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.product-detail-copy {
  padding-top: 17px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.detail-meta a,
.detail-meta span {
  border-radius: 99px;
  padding: 7px 10px;
  font-size: 9px;
  font-weight: 700;
}

.detail-meta a {
  background: var(--yellow);
}

.detail-meta span {
  background: #efeee8;
  color: #5e6268;
}

.product-detail-copy h1 {
  margin: 22px 0 0;
  font-size: clamp(39px, 4.2vw, 60px);
  font-weight: 590;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.detail-summary {
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.detail-key-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 29px 0;
}

.detail-key-points > div {
  display: flex;
  min-height: 90px;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  border-right: 1px solid var(--line);
  padding: 10px 15px;
}

.detail-key-points > div:first-child {
  padding-left: 0;
}

.detail-key-points > div:last-child {
  border: 0;
}

.detail-key-points small {
  color: #92969b;
  font-size: 8px;
  font-weight: 680;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.detail-key-points strong {
  font-size: 11px;
  line-height: 1.35;
}

.detail-price-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
  border-left: 4px solid var(--yellow);
  border-radius: 0 10px 10px 0;
  background: #f5f3ec;
  padding: 19px 21px;
}

.detail-price-box > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.detail-price-box small {
  color: #8d9196;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.detail-price-box strong {
  margin-top: 4px;
  font-size: 15px;
}

.detail-price-box p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.detail-price-box > svg {
  color: #9a7600;
}

.detail-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.detail-secondary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 18px;
}

.detail-secondary-actions button,
.detail-secondary-actions a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: #62666d;
  font-size: 10px;
  font-weight: 650;
}

.detail-secondary-actions button:hover,
.detail-secondary-actions a:hover {
  color: var(--ink);
}

.detail-tabs-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.detail-tabs {
  display: flex;
  min-height: 68px;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  gap: 40px;
}

.detail-tabs button {
  position: relative;
  background: transparent;
  color: #777b81;
  font-size: 12px;
  font-weight: 650;
}

.detail-tabs button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--yellow);
  content: "";
  opacity: 0;
}

.detail-tabs button.active {
  color: var(--ink);
}

.detail-tabs button.active::after {
  opacity: 1;
}

.tab-panel {
  min-height: 335px;
  padding: 52px 0 65px;
}

.tab-copy-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 95px;
}

.tab-copy-grid h2 {
  margin: 0;
  font-size: clamp(34px, 3vw, 49px);
  font-weight: 590;
  letter-spacing: -0.055em;
  line-height: 1;
}

.tab-copy-grid > div:first-child > p {
  max-width: 730px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.tab-fact-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  border-radius: 12px;
  background: var(--white);
  padding: 27px;
}

.tab-fact-card > span {
  color: #8b9096;
  font-size: 9px;
  text-transform: uppercase;
}

.tab-fact-card > strong {
  margin: 7px 0 22px;
  font-size: 20px;
}

.spec-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.spec-table > div {
  display: grid;
  min-height: 74px;
  grid-template-columns: 0.72fr 1fr;
  align-items: center;
  gap: 15px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
  padding: 14px 20px;
}

.spec-table span {
  color: #888c92;
  font-size: 10px;
}

.spec-table strong {
  font-size: 12px;
}

.application-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.application-grid > div {
  border-radius: 12px;
  background: var(--white);
  padding: 29px;
}

.application-grid h3 {
  margin: 0 0 22px;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.document-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.document-list > a {
  display: grid;
  min-height: 110px;
  grid-template-columns: 50px 1fr auto;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: 17px;
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.document-list > a:hover {
  border-color: #b9b8b0;
  transform: translateY(-3px);
}

.document-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  background: #f2f0e8;
  color: #856700;
}

.document-list > a > span:nth-child(2) {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.document-list strong {
  font-size: 13px;
}

.document-list small {
  color: var(--muted);
  font-size: 9px;
}

.document-list b {
  color: #806300;
  font-size: 10px;
}

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

/* Category directory */

.all-categories-section {
  background: var(--paper);
}

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

.all-category-card {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 20px;
  transition:
    transform 200ms ease,
    box-shadow 200ms ease;
}

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

.all-category-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.all-category-top > span {
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 9px;
  font-weight: 750;
}

.all-category-top b {
  color: #898d92;
  font-size: 9px;
  font-weight: 650;
}

.all-category-image {
  display: grid;
  min-height: 190px;
  place-items: center;
  margin: 12px 0;
}

.all-category-image img {
  width: 90%;
  height: 175px;
  object-fit: contain;
  filter: drop-shadow(0 17px 14px rgba(0, 0, 0, 0.13));
}

.all-category-card h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 620;
  letter-spacing: -0.04em;
}

.all-category-card p {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.all-category-card .text-link {
  margin-top: auto;
}

/* Brand directory and detail */

.brand-directory {
  background: var(--paper);
}

.brand-directory-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.brand-directory-card {
  display: grid;
  min-height: 205px;
  grid-template-columns: 55px 190px 1fr 52px;
  align-items: center;
  gap: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px 30px 22px 22px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.brand-directory-card:hover {
  border-color: #c8c7c0;
  box-shadow: var(--shadow-lg);
  transform: translateX(7px);
}

.brand-directory-index {
  align-self: start;
  color: #987300;
  font-size: 10px;
  font-weight: 740;
}

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

.brand-directory-copy > span {
  color: #8c9096;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-directory-copy h2 {
  margin: 7px 0 10px;
  font-size: 28px;
  font-weight: 610;
  letter-spacing: -0.045em;
}

.brand-directory-copy p {
  max-width: 750px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.62;
}

.brand-directory-copy small {
  display: block;
  max-width: 750px;
  border-top: 1px solid #ecece7;
  margin-top: 13px;
  padding-top: 11px;
  color: #4e535a;
  font-size: 10px;
}

.brand-directory-arrow {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
}

.brand-directory-card:hover .brand-directory-arrow {
  background: var(--yellow);
  color: var(--ink);
}

.brand-detail-hero {
  background: var(--ink);
  color: var(--white);
  padding-bottom: 80px;
}

.brand-detail-hero .breadcrumbs {
  color: rgba(255, 255, 255, 0.45);
}

.brand-detail-hero .breadcrumbs strong,
.brand-detail-hero .breadcrumbs a:hover {
  color: var(--white);
}

.brand-detail-hero-grid {
  display: grid;
  min-height: 430px;
  grid-template-columns: 1fr 440px;
  align-items: center;
  gap: 90px;
}

.brand-detail-hero-grid h1 {
  margin: 0;
  font-size: clamp(52px, 6vw, 81px);
  font-weight: 580;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.brand-detail-hero-grid > div:first-child > p {
  max-width: 710px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  line-height: 1.7;
}

.brand-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 29px;
}

.brand-detail-logo-panel {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 65%),
    #1a202c;
  padding: 28px;
}

.brand-detail-logo-panel .brand-logo {
  width: 100%;
  min-height: 145px;
  margin-bottom: 28px;
}

.brand-detail-logo-panel > span {
  color: var(--yellow);
  font-size: 9px;
  font-weight: 730;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-detail-logo-panel > strong {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.5;
}

.brand-credential-bar {
  background: var(--yellow);
}

.brand-credential-bar .shell {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 17px;
}

.brand-credential-bar span {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.brand-credential-bar small {
  color: #65500a;
  font-size: 8px;
  font-weight: 720;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.brand-credential-bar strong {
  font-size: 13px;
}

.sourcing-callout {
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 45px;
}

.sourcing-callout > div {
  max-width: 730px;
}

.sourcing-callout h3 {
  margin: 0;
  font-size: 35px;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.sourcing-callout p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* About */

.about-intro {
  background: var(--white);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 95px;
}

.about-intro h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 65px);
  font-weight: 585;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.about-long-copy {
  columns: 2;
  column-gap: 38px;
}

.about-long-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.78;
}

.about-long-copy p + p {
  margin-top: 20px;
}

.about-founder {
  background: var(--purple);
  color: var(--white);
}

.about-founder-grid {
  display: grid;
  min-height: 610px;
  grid-template-columns: 0.47fr 0.53fr;
}

.about-founder-photo {
  position: relative;
}

.about-founder-photo > img {
  width: 100%;
  height: 610px;
  object-fit: cover;
}

.about-founder-photo > div {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 7px;
  background: rgba(15, 18, 25, 0.82);
  padding: 16px 19px;
  backdrop-filter: blur(8px);
}

.about-founder-photo strong {
  font-size: 13px;
}

.about-founder-photo span {
  color: var(--yellow);
  font-size: 9px;
  text-transform: uppercase;
}

.about-founder-message {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 75px 35px 75px 85px;
}

.about-founder-message blockquote {
  margin: 0;
  font-size: clamp(36px, 4vw, 55px);
  font-weight: 510;
  letter-spacing: -0.055em;
  line-height: 1.06;
}

.about-founder-message > p {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 14px;
  line-height: 1.72;
}

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

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.mission-grid article {
  position: relative;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 40px;
  overflow: hidden;
}

.mission-grid article > span {
  position: absolute;
  top: 18px;
  right: 25px;
  color: rgba(17, 19, 27, 0.06);
  font-size: 120px;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.mission-grid h2 {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 0;
  font-size: clamp(35px, 4vw, 52px);
  font-weight: 580;
  letter-spacing: -0.058em;
  line-height: 1;
}

.mission-grid p {
  position: relative;
  z-index: 2;
  max-width: 580px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.values-section {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.value-grid article {
  min-height: 260px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px;
}

.value-grid span {
  color: #987400;
  font-size: 10px;
  font-weight: 730;
}

.value-grid h3 {
  margin: 65px 0 12px;
  font-size: 25px;
  font-weight: 620;
  letter-spacing: -0.04em;
}

.value-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.62;
}

/* Services */

.service-detail {
  background: var(--white);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 85px;
}

.service-detail-copy h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 65px);
  font-weight: 580;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.service-detail-copy > p {
  margin: 25px 0 31px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.service-process {
  border-top: 1px solid var(--line);
}

.service-process > div {
  display: grid;
  min-height: 83px;
  grid-template-columns: 36px 95px 1fr;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--line);
}

.service-process span {
  color: #957100;
  font-size: 9px;
  font-weight: 730;
}

.service-process strong {
  font-size: 12px;
}

.service-process p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.service-mosaic {
  display: grid;
  min-height: 610px;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 10px;
}

.service-mosaic img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.service-mosaic img:first-child {
  grid-row: 1 / 3;
}

.service-mosaic img:nth-child(4) {
  grid-row: 2 / 4;
}

.service-equipment-section {
  background: var(--ink);
  color: var(--white);
  padding: 100px 0;
}

.service-equipment-grid {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 90px;
}

.service-equipment-grid > div:first-child h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 55px);
  font-weight: 580;
  letter-spacing: -0.055em;
  line-height: 1;
}

.service-equipment-grid > div:first-child p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 13px;
  line-height: 1.7;
}

.equipment-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.equipment-list > div {
  display: grid;
  min-height: 60px;
  grid-template-columns: 35px 1fr 20px;
  align-items: center;
  gap: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  padding: 10px 14px;
}

.equipment-list span {
  color: var(--yellow);
  font-size: 8px;
}

.equipment-list strong {
  font-size: 10px;
  line-height: 1.35;
}

.equipment-list svg {
  color: var(--yellow);
}

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

.aftersale-grid {
  display: grid;
  grid-template-columns: 0.35fr 0.65fr;
  align-items: start;
  gap: 80px;
}

.aftersale-grid > div:first-child h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 53px);
  font-weight: 580;
  letter-spacing: -0.055em;
  line-height: 1;
}

.aftersale-grid > div:first-child p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.aftersale-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.aftersale-cards article {
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 25px;
}

.aftersale-cards svg {
  color: #906e00;
}

.aftersale-cards h3 {
  margin: 115px 0 12px;
  font-size: 19px;
  font-weight: 620;
  letter-spacing: -0.035em;
}

.aftersale-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

/* Industries page */

.industry-directory {
  background: var(--paper);
}

.industry-detail-card {
  display: grid;
  min-height: 190px;
  grid-template-columns: 80px 1fr 0.65fr 35px;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid #d4d3cc;
  padding: 25px 10px;
  transition:
    padding 180ms ease,
    background 180ms ease;
}

.industry-detail-card:first-child {
  border-top: 1px solid #d4d3cc;
}

.industry-detail-card:hover {
  background: var(--white);
  padding-inline: 25px;
}

.industry-detail-number {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  font-size: 14px;
  font-weight: 720;
}

.industry-detail-card > div:nth-child(2) > span {
  color: #9d7700;
  font-size: 8px;
  font-weight: 730;
}

.industry-detail-card h2 {
  margin: 4px 0 10px;
  font-size: 29px;
  font-weight: 610;
  letter-spacing: -0.045em;
}

.industry-detail-card p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.62;
}

.industry-detail-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.industry-detail-links a {
  border-bottom: 1px solid #c9c8c1;
  color: #575c63;
  font-size: 10px;
  font-weight: 650;
}

.industry-detail-card > svg {
  justify-self: end;
}

.industry-method {
  background: var(--ink);
  color: var(--white);
  padding: 105px 0;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.method-steps article {
  min-height: 285px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding: 25px;
}

.method-steps span {
  color: var(--yellow);
  font-size: 9px;
  font-weight: 730;
}

.method-steps h3 {
  margin: 90px 0 12px;
  font-size: 24px;
  font-weight: 600;
}

.method-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  line-height: 1.65;
}

/* Downloads and projects */

.download-section,
.project-section {
  background: var(--paper);
}

.download-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 16px;
}

.download-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 29px;
}

.download-card-featured {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 38px;
  background: var(--ink);
  color: var(--white);
}

.download-preview {
  position: relative;
  height: 330px;
  border-radius: 10px;
  background: #303744;
  overflow: hidden;
}

.download-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.download-preview::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 19, 27, 0.8), transparent);
  content: "";
}

.download-preview span {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  border-radius: 4px;
  background: var(--yellow);
  padding: 6px 8px;
  color: var(--ink);
  font-size: 9px;
  font-weight: 760;
}

.download-card h2 {
  margin: 0;
  font-size: 30px;
  font-weight: 610;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.download-card p {
  margin: 18px 0 25px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.68;
}

.download-card-featured p {
  color: rgba(255, 255, 255, 0.59);
}

.download-line-icon {
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 50%;
  background: #f0eee6;
  margin-bottom: auto;
  color: #896a00;
}

.download-card > .text-link {
  margin-top: auto;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.project-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 19px;
  overflow: hidden;
}

.project-card-image {
  position: relative;
  display: grid;
  min-height: 360px;
  place-items: center;
  border-radius: 17px;
  background: #efeee8;
}

.project-card-image img {
  width: 86%;
  height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 24px 18px rgba(0, 0, 0, 0.15));
  transition: transform 220ms ease;
}

.project-card:hover .project-card-image img {
  transform: scale(1.04);
}

.project-card-image span {
  position: absolute;
  top: 15px;
  right: 15px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--yellow);
  font-size: 9px;
}

.project-card > p {
  margin: 24px 3px 8px;
  color: #917000;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card h2 {
  margin: 0 3px;
  font-size: 31px;
  font-weight: 610;
  letter-spacing: -0.048em;
}

.project-card-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding: 17px 3px 3px;
}

.project-card-bottom > span {
  max-width: 470px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.project-card-bottom button {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
}

/* Contact */

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

.contact-grid {
  display: grid;
  grid-template-columns: 0.43fr 0.57fr;
  align-items: start;
  gap: 85px;
}

.contact-info h2 {
  margin: 0;
  font-size: clamp(39px, 4.5vw, 58px);
  font-weight: 580;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.contact-info > p {
  margin: 23px 0 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.contact-methods {
  border-top: 1px solid var(--line);
}

.contact-methods > a {
  display: grid;
  min-height: 78px;
  grid-template-columns: 42px 1fr 22px;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid var(--line);
}

.contact-methods > a > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: #896900;
}

.contact-methods > a > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-methods small {
  color: #8d9196;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-methods strong {
  font-size: 13px;
}

.office-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: var(--radius);
  background: var(--ink);
  margin-top: 24px;
  padding: 25px;
  color: var(--white);
}

.office-card small {
  color: var(--yellow);
  font-size: 9px;
  font-weight: 730;
  text-transform: uppercase;
}

.office-card strong {
  max-width: 340px;
  margin: 15px 0 10px;
  font-size: 14px;
  line-height: 1.55;
}

.office-card > span {
  color: rgba(255, 255, 255, 0.49);
  font-size: 10px;
}

.office-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  margin-top: 22px;
  padding-bottom: 3px;
  font-size: 10px;
  font-weight: 680;
}

.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  padding: 39px;
  box-shadow: var(--shadow-sm);
}

.form-heading h2 {
  margin: 0;
  font-size: 37px;
  font-weight: 600;
  letter-spacing: -0.055em;
}

.form-heading p {
  margin: 9px 0 26px;
  color: var(--muted);
  font-size: 10px;
}

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

.field-grid label {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field-grid label > span {
  color: #666a71;
  font-size: 9px;
  font-weight: 690;
}

.field-grid input,
.field-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  outline: 0;
  background: #fbfaf7;
  padding: 0 13px;
  color: var(--ink);
  font-size: 11px;
  transition:
    border-color 160ms ease,
    background 160ms ease;
}

.field-grid input {
  height: 46px;
}

.field-grid textarea {
  min-height: 130px;
  padding-top: 13px;
  resize: vertical;
}

.field-grid input:focus,
.field-grid textarea:focus {
  border-color: #a88300;
  background: var(--white);
}

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

.contact-form > .button {
  width: 100%;
  margin-top: 20px;
}

.form-note {
  border-radius: 5px;
  background: #e9f7ef;
  margin: 12px 0 0;
  padding: 10px 12px;
  color: #12623d;
  font-size: 10px;
}

.map-wrap {
  height: 410px;
  border-radius: var(--radius-lg);
  margin-top: 75px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.85) contrast(0.95);
}

/* Recently viewed */

.recently-viewed {
  border-top: 1px solid var(--line);
  background: var(--white);
}

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

.recent-card {
  display: grid;
  min-height: 100px;
  grid-template-columns: 83px 1fr 25px;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
}

.recent-card img {
  width: 83px;
  height: 75px;
  border-radius: 7px;
  background: var(--paper);
  object-fit: contain;
}

.recent-card > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.recent-card small {
  overflow: hidden;
  color: #8d7108;
  font-size: 8px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.recent-card strong {
  display: -webkit-box;
  overflow: hidden;
  font-size: 11px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* Footer */

.site-footer {
  background: #090b10;
  color: var(--white);
}

.footer-main {
  display: grid;
  min-height: 430px;
  grid-template-columns: 1.4fr 0.65fr 0.65fr 1fr;
  gap: 65px;
  padding-top: 75px;
  padding-bottom: 60px;
}

.footer-brand > p {
  max-width: 365px;
  margin: 28px 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  line-height: 1.72;
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 6px;
  background: #1d9f61;
  padding: 12px 15px;
  font-size: 10px;
  font-weight: 700;
}

.footer-column,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-column > p,
.footer-contact > p {
  margin: 8px 0 17px;
  color: var(--yellow);
  font-size: 9px;
  font-weight: 730;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column > a,
.footer-contact > a:not(.text-link) {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  transition: color 150ms ease;
}

.footer-column > a:hover,
.footer-contact > a:hover {
  color: var(--white);
}

.footer-contact > span {
  max-width: 250px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  line-height: 1.65;
}

.footer-contact .text-link {
  margin-top: 8px;
}

.footer-bottom {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
}

/* Floating elements */

.floating-whatsapp {
  position: fixed;
  z-index: 75;
  right: 23px;
  bottom: 24px;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  gap: 9px;
  border: 4px solid var(--paper);
  border-radius: 99px;
  background: #1ea865;
  padding: 0 19px 0 15px;
  color: var(--white);
  box-shadow: 0 13px 35px rgba(13, 61, 39, 0.3);
  font-size: 11px;
  font-weight: 720;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.floating-whatsapp:hover {
  background: #168c53;
  transform: translateY(-3px);
}

.toast {
  position: fixed;
  z-index: 150;
  top: 32px;
  left: 50%;
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  border-radius: 7px;
  background: var(--ink);
  padding: 0 15px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  font-size: 11px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -18px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.toast svg {
  color: var(--yellow);
}

.toast-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Inquiry drawer */

.drawer-layer {
  position: fixed;
  z-index: 200;
  inset: 0;
  pointer-events: none;
  visibility: hidden;
}

.drawer-layer-open {
  pointer-events: auto;
  visibility: visible;
}

.drawer-scrim {
  position: absolute;
  inset: 0;
  background: rgba(7, 9, 13, 0.58);
  opacity: 0;
  transition: opacity 250ms ease;
}

.drawer-layer-open .drawer-scrim {
  opacity: 1;
}

.inquiry-drawer {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  width: min(100%, 620px);
  height: 100%;
  flex-direction: column;
  background: var(--paper);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.22);
  transform: translateX(100%);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.drawer-layer-open .inquiry-drawer {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  min-height: 111px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 20px 27px;
}

.drawer-header .eyebrow {
  margin-bottom: 8px;
}

.drawer-header h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 610;
  letter-spacing: -0.04em;
}

.drawer-header > button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
}

.drawer-content {
  flex: 1;
  padding: 22px 27px 38px;
  overflow-y: auto;
}

.inquiry-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.inquiry-list-header strong {
  font-size: 11px;
  text-transform: uppercase;
}

.inquiry-list-header button {
  background: transparent;
  color: #7d6300;
  font-size: 9px;
  font-weight: 700;
}

.inquiry-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inquiry-item {
  display: grid;
  min-height: 89px;
  grid-template-columns: 88px 1fr 32px;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  padding: 8px;
}

.inquiry-item > span {
  display: grid;
  width: 88px;
  height: 70px;
  place-items: center;
  border-radius: 6px;
  background: var(--paper);
}

.inquiry-item img {
  width: 78px;
  height: 62px;
  object-fit: contain;
}

.inquiry-item > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.inquiry-item small {
  overflow: hidden;
  color: #957200;
  font-size: 8px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.inquiry-item strong {
  font-size: 12px;
  line-height: 1.3;
}

.inquiry-item p {
  margin: 0;
  color: var(--muted);
  font-size: 9px;
}

.inquiry-item > button {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: #efeee8;
  color: #666a71;
}

.inquiry-empty {
  display: flex;
  min-height: 155px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px dashed #c8c7c0;
  border-radius: 10px;
  padding: 25px;
  color: #74787e;
  text-align: center;
}

.inquiry-empty strong {
  margin: 12px 0 5px;
  color: var(--ink);
  font-size: 13px;
}

.inquiry-empty p {
  max-width: 370px;
  margin: 0;
  font-size: 10px;
  line-height: 1.5;
}

.drawer-form {
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 21px;
}

.drawer-submit {
  width: 100%;
  margin-top: 16px;
}

.drawer-privacy {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.5;
  text-align: center;
}

/* Compare tray */

.compare-tray {
  position: fixed;
  z-index: 130;
  right: 50%;
  bottom: 15px;
  width: min(calc(100% - 40px), 850px);
  border: 1px solid #323743;
  border-radius: 11px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  transform: translateX(50%);
}

.compare-tray-bar {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 12px 9px 17px;
}

.compare-summary {
  display: flex;
  align-items: center;
  gap: 11px;
  background: transparent;
  color: var(--white);
  text-align: left;
}

.compare-summary > svg {
  color: var(--yellow);
}

.compare-summary span {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.compare-summary strong {
  font-size: 12px;
}

.compare-summary small {
  color: rgba(255, 255, 255, 0.47);
  font-size: 8px;
}

.compare-thumbs {
  display: flex;
  gap: 7px;
}

.compare-thumbs span {
  display: grid;
  width: 49px;
  height: 47px;
  place-items: center;
  border-radius: 6px;
  background: var(--white);
}

.compare-thumbs img {
  width: 44px;
  height: 40px;
  object-fit: contain;
}

.compare-tray-bar > button:last-child {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  gap: 7px;
  border-radius: 6px;
  background: var(--yellow);
  padding: 0 14px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 710;
}

.compare-tray-expanded .compare-tray-bar > button:last-child svg {
  transform: rotate(90deg);
}

.compare-panel {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px;
}

.compare-table {
  display: grid;
  grid-template-columns: 120px repeat(3, minmax(0, 1fr));
  overflow-x: auto;
}

.compare-labels,
.compare-column {
  display: grid;
  grid-template-rows: 105px repeat(4, minmax(50px, auto));
}

.compare-labels > span,
.compare-column > span {
  display: flex;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 9px;
  line-height: 1.4;
}

.compare-labels > span {
  color: rgba(255, 255, 255, 0.35);
  font-size: 8px;
  font-weight: 690;
  text-transform: uppercase;
}

.compare-product {
  position: relative;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start !important;
  justify-content: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.04);
}

.compare-product img {
  width: 58px;
  height: 50px;
  object-fit: contain;
}

.compare-product a {
  color: var(--white);
  font-size: 9px;
  font-weight: 660;
}

.compare-product button {
  position: absolute;
  top: 7px;
  right: 7px;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.compare-clear {
  display: block;
  background: transparent;
  margin: 13px 0 0 auto;
  color: var(--yellow);
  font-size: 9px;
  font-weight: 690;
}

/* Not found */

.not-found {
  display: grid;
  min-height: 620px;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  text-align: center;
}

.not-found .shell {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.not-found span {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.2em;
}

.not-found h1 {
  max-width: 760px;
  margin: 16px 0;
  font-size: clamp(42px, 6vw, 70px);
  font-weight: 580;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.not-found p {
  max-width: 560px;
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 14px;
}

/* Responsive */

@media (max-width: 1180px) {
  .header-main {
    grid-template-columns: 210px 1fr 135px;
    gap: 18px;
  }

  .nav-inner nav {
    gap: 19px;
  }

  .hero-copy {
    padding-right: 38px;
  }

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

  .category-card-large {
    grid-column: span 2;
  }

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

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

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

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

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

  .download-card-featured {
    grid-column: 1 / -1;
  }

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

@media (max-width: 960px) {
  .shell {
    width: min(calc(100% - 34px), var(--shell));
  }

  .section {
    padding: 82px 0;
  }

  .utility-inner > div {
    display: none;
  }

  .utility-inner {
    justify-content: center;
  }

  .header-main {
    min-height: 72px;
    grid-template-columns: 1fr auto;
  }

  .header-search {
    display: none;
  }

  .header-actions {
    align-items: center;
    gap: 8px;
  }

  .inquiry-action > span:last-child {
    display: none;
  }

  .mobile-menu-button {
    display: grid;
  }

  .site-header::before {
    inset: 0;
  }

  .nav-row {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    max-height: 0;
    border: 0;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: max-height 260ms ease;
  }

  .nav-row-open {
    max-height: 620px;
    border-top: 1px solid #e5e5df;
  }

  .nav-inner,
  .nav-inner nav,
  .nav-quick-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-inner {
    gap: 0;
    padding: 13px 0 18px;
  }

  .nav-inner nav {
    gap: 0;
  }

  .nav-inner nav a {
    min-height: 46px;
    border-bottom: 1px solid #efefe9;
  }

  .nav-inner nav a::after {
    top: 10px;
    right: auto;
    bottom: 10px;
    left: -17px;
    width: 4px;
    height: auto;
  }

  .nav-quick-actions {
    gap: 9px;
    padding-top: 12px;
  }

  .nav-quick-actions a {
    min-height: 40px;
  }

  .nav-quick-actions button {
    justify-content: center;
  }

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

  .hero-copy {
    max-width: none;
    padding: 78px 0 60px;
  }

  .hero-visual {
    min-height: 510px;
  }

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

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

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

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

  .category-card-large {
    grid-column: 1 / -1;
  }

  .partner-feature-inner,
  .service-preview-grid,
  .faq-grid,
  .about-intro-grid,
  .service-detail-grid,
  .service-equipment-grid,
  .aftersale-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .industry-row {
    grid-template-columns: 45px 0.8fr 1fr 30px;
  }

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

  .founder-grid,
  .about-founder-grid {
    grid-template-columns: 0.48fr 0.52fr;
  }

  .founder-quote {
    padding-left: 48px;
  }

  .quote-mark {
    left: 10px;
  }

  .page-hero-inner {
    gap: 45px;
  }

  .page-hero-side {
    min-width: 235px;
  }

  .catalogue-layout {
    grid-template-columns: 230px 1fr;
    gap: 20px;
  }

  .product-detail-grid,
  .tab-copy-grid,
  .brand-detail-hero-grid {
    grid-template-columns: 1fr;
  }

  .brand-detail-logo-panel {
    min-height: 280px;
  }

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

  .brand-directory-card {
    grid-template-columns: 45px 150px 1fr 45px;
    gap: 21px;
  }

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

  .value-grid,
  .method-steps {
    grid-template-columns: 1fr 1fr;
  }

  .about-long-copy {
    columns: 1;
  }

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

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

  .industry-detail-card {
    grid-template-columns: 65px 1fr 0.55fr 30px;
  }

  .footer-main {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .section {
    padding: 67px 0;
  }

  .utility-inner {
    min-height: 29px;
    font-size: 9px;
  }

  .site-header {
    top: 0;
  }

  .header-main {
    min-height: 66px;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .brand-mark img {
    width: 38px;
    height: 38px;
  }

  .brand-words strong {
    font-size: 17px;
  }

  .brand-words small {
    font-size: 8px;
  }

  .nav-row {
    top: 66px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
  }

  .hero-copy {
    padding: 61px 0 46px;
  }

  .hero-copy h1 {
    font-size: clamp(47px, 14.3vw, 64px);
    line-height: 0.92;
  }

  .hero-copy > p {
    font-size: 14px;
  }

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

  .hero-actions .button {
    padding-inline: 12px;
  }

  .hero-search {
    grid-template-columns: 28px 1fr;
    padding-right: 10px;
  }

  .hero-search button {
    grid-column: 1 / -1;
    min-height: 43px;
    margin: 0 -3px 1px;
  }

  .hero-microcopy {
    display: none;
  }

  .hero-visual {
    min-height: 430px;
    margin-inline: -14px;
  }

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

  .hero-category-card {
    min-width: 195px;
  }

  .hero-category-card-one {
    top: 19px;
    right: 15px;
  }

  .hero-category-card-two {
    right: 15px;
    bottom: 83px;
  }

  .hero-visual-label {
    right: 18px;
    left: 18px;
  }

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

  .trust-grid > div {
    min-height: 75px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-left: 0 !important;
    padding: 13px 8px;
  }

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

  .section-heading h2 {
    font-size: clamp(35px, 10.5vw, 48px);
  }

  .section-heading p {
    margin-top: 17px;
    font-size: 14px;
  }

  .category-grid,
  .product-grid,
  .brand-rail,
  .all-category-grid,
  .value-grid,
  .method-steps,
  .project-grid,
  .download-grid,
  .recent-grid {
    grid-template-columns: 1fr;
  }

  .category-card,
  .category-card-large {
    min-height: 290px;
    grid-column: auto;
  }

  .category-content {
    max-width: 72%;
  }

  .product-image-wrap {
    min-height: 250px;
  }

  .product-image {
    height: 215px;
  }

  .partner-feature {
    padding: 72px 0;
  }

  .partner-feature-inner {
    gap: 43px;
  }

  .partner-feature-copy h2,
  .service-preview-copy h2 {
    font-size: 43px;
  }

  .partner-feature-visual {
    min-height: 385px;
  }

  .partner-feature-visual > img {
    height: 320px;
  }

  .industry-row {
    grid-template-columns: 35px 1fr 28px;
    gap: 13px;
    padding: 19px 0;
  }

  .industry-row h3 {
    font-size: 19px;
  }

  .industry-row p {
    display: none;
  }

  .service-photo-stack {
    min-height: 430px;
  }

  .service-photo-badge {
    right: 14px;
    min-width: 200px;
  }

  .founder-grid,
  .about-founder-grid {
    grid-template-columns: 1fr;
  }

  .founder-portrait {
    min-height: 460px;
  }

  .founder-quote {
    padding: 72px 5px;
  }

  .quote-mark {
    top: 28px;
    left: -10px;
  }

  .faq-grid {
    gap: 38px;
  }

  .quote-cta-inner {
    min-height: 380px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
  }

  .quote-cta-actions {
    width: 100%;
  }

  .page-hero {
    min-height: 430px;
  }

  .page-hero-inner {
    min-height: 430px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
    padding: 56px 0;
  }

  .page-hero-inner > div:first-child {
    padding: 0;
  }

  .page-hero h1 {
    font-size: clamp(47px, 13vw, 64px);
  }

  .page-hero p {
    font-size: 13px;
  }

  .page-hero-side {
    width: 100%;
    min-width: 0;
    flex-direction: row;
  }

  .page-hero-stat {
    min-height: 76px;
    flex: 1;
    grid-template-columns: 45px 1fr;
    padding: 10px;
  }

  .page-hero-stat strong {
    font-size: 25px;
  }

  .page-hero-machine {
    width: 100%;
    height: 180px;
  }

  .catalogue-layout {
    grid-template-columns: 1fr;
  }

  .catalogue-sidebar {
    position: static;
    max-height: 420px;
    overflow-y: auto;
  }

  .catalogue-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalogue-toolbar label {
    width: 100%;
    justify-content: space-between;
  }

  .catalogue-toolbar select {
    flex: 1;
  }

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

  .product-detail-section {
    padding-bottom: 56px;
  }

  .product-detail-grid {
    gap: 34px;
  }

  .product-main-image {
    min-height: 410px;
  }

  .product-main-image img {
    height: 340px;
  }

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

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

  .detail-key-points > div,
  .detail-key-points > div:first-child {
    min-height: 67px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 10px 0;
  }

  .detail-key-points > div:last-child {
    border-bottom: 0;
  }

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

  .detail-tabs {
    gap: 0;
    overflow-x: auto;
  }

  .detail-tabs button {
    min-width: max-content;
    padding: 0 14px;
  }

  .tab-copy-grid {
    gap: 28px;
  }

  .spec-table,
  .application-grid,
  .document-list {
    grid-template-columns: 1fr;
  }

  .spec-table > div {
    grid-template-columns: 0.75fr 1fr;
  }

  .brand-directory-card {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px;
  }

  .brand-directory-index {
    position: absolute;
    opacity: 0;
  }

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

  .brand-directory-arrow {
    position: absolute;
    right: 30px;
    bottom: 25px;
  }

  .brand-directory-copy {
    padding-right: 45px;
  }

  .brand-detail-hero-grid {
    gap: 45px;
  }

  .brand-detail-hero-grid h1 {
    font-size: 54px;
  }

  .sourcing-callout {
    align-items: flex-start;
    flex-direction: column;
    gap: 28px;
    padding: 28px;
  }

  .about-intro h2,
  .service-detail-copy h2 {
    font-size: 45px;
  }

  .about-founder-message {
    padding: 65px 0;
  }

  .mission-grid article {
    min-height: 370px;
    padding: 27px;
  }

  .service-mosaic {
    min-height: 470px;
  }

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

  .aftersale-cards {
    grid-template-columns: 1fr;
  }

  .aftersale-cards article {
    min-height: 230px;
  }

  .aftersale-cards h3 {
    margin-top: 72px;
  }

  .industry-detail-card {
    position: relative;
    grid-template-columns: 48px 1fr 26px;
    gap: 16px;
    padding: 24px 0;
  }

  .industry-detail-number {
    width: 42px;
    height: 42px;
  }

  .industry-detail-links {
    display: none;
  }

  .industry-detail-card h2 {
    font-size: 23px;
  }

  .download-card-featured {
    display: flex;
  }

  .download-card-featured .download-preview {
    width: 100%;
  }

  .download-card {
    min-height: 390px;
  }

  .project-card-image {
    min-height: 275px;
  }

  .project-card-image img {
    height: 245px;
  }

  .contact-form {
    padding: 25px 19px;
  }

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

  .field-full {
    grid-column: auto;
  }

  .map-wrap {
    height: 330px;
    margin-top: 55px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 42px 25px;
    padding-top: 62px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

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

  .floating-whatsapp {
    right: 15px;
    bottom: 15px;
    min-height: 50px;
    padding: 0 14px;
  }

  .floating-whatsapp span {
    display: none;
  }

  .compare-tray {
    bottom: 10px;
    width: calc(100% - 20px);
  }

  .compare-thumbs {
    display: none;
  }

  .compare-tray-bar {
    gap: 8px;
    padding-left: 12px;
  }

  .compare-table {
    min-width: 690px;
  }

  .drawer-header {
    padding-inline: 18px;
  }

  .drawer-content {
    padding-inline: 17px;
  }
}

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

/* ==========================================================================
   WordPress-native marketplace layer
   ========================================================================== */

[hidden] {
  display: none !important;
}

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

.screen-reader-text:focus,
.skip-link:focus {
  z-index: 9999;
  top: 8px;
  left: 8px;
  display: block;
  width: auto;
  height: auto;
  clip: auto;
  border-radius: 6px;
  background: var(--yellow);
  padding: 12px 16px;
  color: var(--ink);
  font-weight: 750;
  white-space: normal;
}

.header-dark {
  position: relative;
  z-index: 1;
  background: var(--ink);
}

.site-header::before {
  display: none;
}

.brand-custom-logo {
  display: grid;
  max-width: 220px;
  place-items: center start;
}

.brand-custom-logo img {
  width: auto;
  max-width: 220px;
  height: 52px;
  object-fit: contain;
}

.primary-menu,
.mobile-menu,
.footer-menu {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu {
  align-items: stretch;
  gap: 27px;
}

.primary-menu > li {
  position: relative;
  display: flex;
  align-items: stretch;
}

.primary-menu > li > a {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
}

.primary-menu .sub-menu {
  position: absolute;
  z-index: 120;
  top: 100%;
  left: -16px;
  display: none;
  width: 220px;
  border: 1px solid var(--line);
  border-radius: 0 0 10px 10px;
  background: var(--white);
  margin: 0;
  padding: 9px;
  box-shadow: var(--shadow-lg);
  list-style: none;
}

.primary-menu li:hover > .sub-menu,
.primary-menu li:focus-within > .sub-menu {
  display: block;
}

.primary-menu .sub-menu a {
  display: block;
  border-radius: 6px;
  padding: 11px 12px;
  font-size: 11px;
}

.primary-menu .sub-menu a:hover {
  background: var(--paper);
}

.primary-menu .current-menu-item > a,
.primary-menu .current-menu-ancestor > a {
  color: var(--ink);
}

.primary-menu .current-menu-item > a::after,
.primary-menu .current-menu-ancestor > a::after {
  opacity: 1;
  transform: scaleX(1);
}

.mobile-navigation {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--ink);
  color: var(--white);
}

.mobile-navigation > .shell {
  padding: 18px 0 23px;
}

.mobile-menu {
  flex-direction: column;
}

.mobile-menu a {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  padding: 14px 2px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 650;
}

.mobile-menu .sub-menu {
  margin: 0;
  padding: 0 0 0 18px;
  list-style: none;
}

.mobile-navigation .button {
  width: 100%;
  margin-top: 17px;
}

.site-notice {
  position: relative;
  z-index: 15;
  padding: 15px max(24px, calc((100vw - var(--shell)) / 2));
  font-size: 13px;
  font-weight: 650;
  text-align: center;
}

.site-notice-success {
  background: #dff6ea;
  color: #0b6a3e;
}

.site-notice-error {
  background: #fbe5e5;
  color: #9a2424;
}

.page-hero-mark {
  display: grid;
  width: clamp(180px, 20vw, 270px);
  height: clamp(180px, 20vw, 270px);
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.04);
  font-size: clamp(80px, 10vw, 150px);
  font-weight: 850;
  letter-spacing: -0.08em;
}

.breadcrumbs > span[aria-current="page"] {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero .breadcrumbs a {
  color: rgba(255, 255, 255, 0.56);
}

.page-hero .breadcrumbs span {
  color: rgba(255, 255, 255, 0.3);
}

.product-card-body h2 {
  margin: 0;
  font-size: 19px;
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.14;
}

.product-card-quick {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid #ecebe6;
  padding: 11px 17px;
}

.product-card-quick a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #686c72;
  font-size: 9px;
  font-weight: 690;
}

.product-card-quick a:first-child {
  color: #168b54;
}

.marketplace-mobile-tools {
  display: none;
}

.filter-drawer-heading {
  display: none;
}

.catalogue-filter-form label {
  display: block;
  margin-bottom: 9px;
  color: #777b81;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-search {
  margin-bottom: 25px;
}

.filter-search > span {
  display: grid;
  min-height: 45px;
  grid-template-columns: 28px 1fr;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  padding: 0 10px;
}

.filter-search svg {
  color: #858990;
}

.filter-search input,
.catalogue-filter-form select {
  width: 100%;
  min-height: 43px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 11px;
}

.catalogue-filter-form .filter-group {
  margin-bottom: 20px;
}

.catalogue-filter-form .filter-group select {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  padding: 0 10px;
}

.filter-submit {
  width: 100%;
  margin-top: 3px;
}

.clear-filter-link {
  display: block;
  margin-top: 14px;
  color: #7c6304;
  font-size: 10px;
  font-weight: 700;
  text-align: center;
}

.catalogue-toolbar form,
.catalogue-toolbar label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.catalogue-toolbar form label {
  color: #8b8f95;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.catalogue-toolbar select {
  min-height: 39px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  padding: 0 11px;
  color: var(--ink);
  font-size: 10px;
}

.navigation.pagination {
  margin-top: 44px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.page-numbers {
  display: grid;
  min-width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  padding: 0 10px;
  font-size: 11px;
  font-weight: 700;
}

.page-numbers.current,
.page-numbers:hover {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--ink);
}

/* Product detail */

.product-detail-main {
  background: var(--white);
  padding-bottom: 76px;
}

.product-detail-main > .shell > .breadcrumbs {
  color: #777b82;
}

.product-detail-main .breadcrumbs > span[aria-current="page"],
.product-detail-main .breadcrumbs a {
  color: #777b82;
}

.product-detail-grid {
  grid-template-columns: 1.08fr 0.92fr;
}

.product-gallery-main {
  position: relative;
  display: grid;
  min-height: 570px;
  place-items: center;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at center, var(--white), transparent 68%),
    #f0efe9;
  overflow: hidden;
}

.product-gallery-main::before,
.product-gallery-main::after {
  position: absolute;
  border: 1px solid rgba(17, 19, 27, 0.05);
  border-radius: 50%;
  content: "";
}

.product-gallery-main::before {
  width: 370px;
  height: 370px;
}

.product-gallery-main::after {
  width: 510px;
  height: 510px;
}

.product-gallery-main > img {
  position: relative;
  z-index: 2;
  width: 88%;
  height: 470px;
  object-fit: contain;
  filter: drop-shadow(0 30px 25px rgba(17, 19, 27, 0.18));
}

.gallery-label {
  position: absolute;
  z-index: 3;
  top: 21px;
  left: 21px;
  border-radius: 99px;
  background: var(--white);
  padding: 8px 11px;
  color: #6b7077;
  font-size: 9px;
  font-weight: 680;
  box-shadow: var(--shadow-sm);
}

.product-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
}

.product-thumbnails button {
  display: grid;
  width: 78px;
  height: 68px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
}

.product-thumbnails button.active {
  border-color: var(--yellow-deep);
  box-shadow: 0 0 0 2px rgba(249, 198, 26, 0.18);
}

.product-thumbnails img {
  width: 68px;
  height: 56px;
  object-fit: contain;
}

.product-summary {
  padding-top: 17px;
}

.product-summary > .product-brand {
  display: inline-flex;
  border-radius: 99px;
  background: var(--yellow);
  padding: 7px 11px;
  color: var(--ink);
  font-size: 9px;
  font-weight: 750;
}

.product-summary h1 {
  margin: 22px 0 0;
  font-size: clamp(39px, 4.2vw, 60px);
  font-weight: 590;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.product-lead {
  margin: 23px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.product-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin: 29px 0;
}

.product-meta-grid > div {
  display: flex;
  min-height: 83px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 13px 15px;
}

.product-meta-grid small {
  color: #92969b;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-meta-grid strong {
  font-size: 11px;
  line-height: 1.4;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.product-actions .button-outline {
  grid-column: 1 / -1;
}

.button-outline {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--ink);
}

.commercial-note {
  border-left: 4px solid var(--yellow);
  border-radius: 0 8px 8px 0;
  background: #f5f3ec;
  margin: 19px 0 0;
  padding: 15px 17px;
  color: #676b72;
  font-size: 10px;
  line-height: 1.6;
}

.product-secondary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 18px;
}

.product-secondary-actions a,
.product-secondary-actions button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: #62666d;
  font-size: 10px;
  font-weight: 650;
}

.product-secondary-actions a:hover,
.product-secondary-actions button:hover {
  color: var(--ink);
}

.product-information {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.product-tabs {
  display: flex;
  min-height: 68px;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  gap: 40px;
  overflow-x: auto;
}

.product-tabs button {
  position: relative;
  min-width: max-content;
  background: transparent;
  color: #777b81;
  font-size: 12px;
  font-weight: 650;
}

.product-tabs button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--yellow);
  content: "";
  opacity: 0;
}

.product-tabs button.active {
  color: var(--ink);
}

.product-tabs button.active::after {
  opacity: 1;
}

.tab-panel {
  min-height: 320px;
  padding: 52px 0 10px;
}

.tab-panel#product-overview {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 90px;
}

.product-prose,
.prose-content {
  color: #555a62;
  font-size: 15px;
  line-height: 1.8;
}

.product-prose > :first-child,
.prose-content > :first-child {
  margin-top: 0;
}

.product-prose h2,
.product-prose h3,
.prose-content h2,
.prose-content h3 {
  color: var(--ink);
  letter-spacing: -0.04em;
}

.product-overview-aside {
  border-radius: 12px;
  background: var(--white);
  padding: 27px;
}

.product-overview-aside dl {
  margin: 0;
}

.product-overview-aside dt {
  margin-top: 16px;
  color: #8b8f95;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-overview-aside dd {
  margin: 5px 0 0;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.5;
}

.application-grid {
  gap: 14px;
}

.application-grid > div {
  display: flex;
  min-height: 105px;
  align-items: center;
  gap: 18px;
}

.application-grid > div > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 9px;
  font-weight: 800;
}

.application-grid > div > strong {
  font-size: 15px;
}

.document-list > .document-unavailable {
  display: grid;
  min-height: 110px;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 15px;
  border: 1px dashed #c8c7bf;
  border-radius: 10px;
  padding: 17px;
  color: #74787f;
}

.document-list > .document-unavailable > span,
.document-list > a > span {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.document-list > .document-unavailable strong {
  color: var(--ink);
  font-size: 13px;
}

.related-products {
  background: var(--white);
}

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

.recent-product-card {
  display: grid;
  min-height: 105px;
  grid-template-columns: 100px 1fr;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  padding: 10px;
}

.recent-product-card img {
  width: 94px;
  height: 82px;
  object-fit: contain;
}

.recent-product-card small {
  color: #8a6b00;
  font-size: 8px;
  text-transform: uppercase;
}

.recent-product-card strong {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  line-height: 1.4;
}

/* Directory, informational, and contact pages */

.category-directory,
.brand-directory,
.service-directory {
  display: grid;
  gap: 18px;
}

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

.directory-card {
  display: grid;
  min-height: 330px;
  grid-template-columns: 42% 1fr;
  gap: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 20px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

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

.directory-card-image {
  position: relative;
  display: grid;
  min-height: 285px;
  place-items: center;
  border-radius: 12px;
  background: var(--paper);
  overflow: hidden;
}

.directory-card-image img {
  width: 92%;
  height: 250px;
  object-fit: contain;
}

.directory-card-image > span {
  position: absolute;
  top: 13px;
  left: 13px;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 9px;
  font-weight: 750;
}

.directory-card > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.directory-card small,
.industry-directory-card small {
  color: #8b6d00;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.directory-card h2 {
  margin: 12px 0;
  font-size: 29px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.directory-card p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.brand-directory-card {
  grid-template-columns: 290px 1fr;
  gap: 42px;
}

.brand-directory-logo {
  display: grid;
  min-height: 290px;
  place-items: center;
  border-radius: 12px;
  background: #faf9f5;
  padding: 30px;
}

.brand-directory-logo img {
  max-width: 220px;
  max-height: 120px;
  object-fit: contain;
}

.brand-directory-logo span {
  font-size: 24px;
  font-weight: 850;
  text-align: center;
}

.brand-directory-card > div:last-child {
  padding: 14px 10px 14px 0;
}

.brand-directory-card h2 {
  margin: 0;
  font-size: 38px;
  letter-spacing: -0.05em;
}

.brand-directory-card > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.brand-directory-card dl {
  display: grid;
  grid-template-columns: 150px 1fr;
  border-top: 1px solid var(--line);
  margin: 24px 0;
}

.brand-directory-card dt,
.brand-directory-card dd {
  border-bottom: 1px solid var(--line);
  margin: 0;
  padding: 13px 0;
  font-size: 10px;
  line-height: 1.55;
}

.brand-directory-card dt {
  color: #8c9096;
  font-weight: 700;
  text-transform: uppercase;
}

.partner-clarity,
.industry-process,
.calibration-section,
.about-founder,
.why-section {
  background: var(--ink);
  color: var(--white);
}

.partner-clarity-grid {
  display: grid;
  min-height: 350px;
  grid-template-columns: 1fr 0.75fr;
  align-items: center;
  gap: 90px;
}

.partner-clarity h2,
.industry-process h2,
.calibration-section h2,
.why-section h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 590;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.partner-clarity-grid > p,
.calibration-grid > div > p,
.industry-process .section-heading p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.75;
}

.industry-directory {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.industry-directory-card {
  display: grid;
  min-height: 250px;
  grid-template-columns: 62px 1fr 30px;
  align-items: center;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  padding: 27px;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.industry-directory-card:hover {
  border-color: #bbb9b1;
  transform: translateY(-4px);
}

.industry-letter {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 15px;
  font-weight: 800;
}

.industry-directory-card h2 {
  margin: 7px 0 10px;
  font-size: 26px;
  letter-spacing: -0.045em;
}

.industry-directory-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.industry-process {
  padding: 95px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.process-grid > div {
  min-height: 265px;
  background: var(--ink);
  padding: 30px;
}

.process-grid span,
.values-grid > div > span {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 9px;
  font-weight: 800;
}

.process-grid h3 {
  margin: 70px 0 13px;
  font-size: 22px;
}

.process-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  line-height: 1.7;
}

.service-directory-card {
  display: grid;
  grid-template-columns: 46% 1fr;
  gap: 65px;
  border-bottom: 1px solid var(--line);
  padding: 0 0 54px;
  margin-bottom: 36px;
}

.service-directory-image {
  position: relative;
  min-height: 430px;
  border-radius: var(--radius);
  background: #e9e7e0;
  overflow: hidden;
}

.service-directory-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.service-directory-image span {
  position: absolute;
  top: 18px;
  left: 18px;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
}

.service-directory-card > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-directory-card h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 54px);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.service-excerpt {
  margin: 23px 0 10px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.calibration-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
}

.calibration-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0;
  padding: 0;
  list-style: none;
}

.calibration-list li {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  padding: 15px;
  font-size: 11px;
}

.calibration-list svg {
  flex: 0 0 auto;
  color: var(--yellow);
}

.contact-split,
.contact-page-grid,
.about-intro-grid,
.why-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 85px;
  align-items: start;
}

.contact-split h2,
.contact-details h2,
.about-intro h2 {
  margin: 0;
  font-size: clamp(38px, 4vw, 57px);
  font-weight: 590;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.contact-split > div:first-child > p:not(.eyebrow),
.contact-details > div:first-child > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.project-disclaimer {
  border-bottom: 1px solid #e1dfd8;
  background: #fff8db;
}

.project-disclaimer > .shell {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 15px;
}

.project-disclaimer svg {
  flex: 0 0 auto;
  color: #7a5e00;
}

.project-disclaimer p {
  margin: 0;
  color: #5e4a04;
  font-size: 11px;
  line-height: 1.6;
}

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

.project-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 25px;
}

.project-number {
  display: grid;
  width: 49px;
  height: 49px;
  place-items: center;
  border-radius: 50%;
  background: var(--yellow);
  font-size: 10px;
  font-weight: 800;
}

.project-card > div:last-child {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.project-card .eyebrow {
  margin-top: 64px;
}

.project-card h2 {
  margin: 0;
  font-size: 27px;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.project-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.project-card small {
  margin-top: auto;
  color: #8b6e00;
  font-size: 9px;
  font-weight: 700;
}

.project-card .text-link {
  margin-top: 19px;
}

.downloads-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 44px;
  align-items: start;
}

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

.download-card {
  display: grid;
  min-height: 170px;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  padding: 22px;
}

.download-icon {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  border-radius: 10px;
  background: #f1efe7;
  color: #806300;
}

.download-card h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.download-card > div > p:not(.eyebrow) {
  margin: 8px 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.6;
}

.download-meta {
  display: flex;
  gap: 8px;
}

.download-meta span {
  border-radius: 99px;
  background: #efeee8;
  padding: 5px 8px;
  color: #686c72;
  font-size: 8px;
  font-weight: 700;
}

.downloads-help {
  position: sticky;
  top: 150px;
  border-radius: 14px;
  background: var(--ink);
  padding: 28px;
  color: var(--white);
}

.downloads-help h2 {
  margin: 0;
  font-size: 31px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.downloads-help > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.7;
}

.about-intro-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.about-founder {
  padding: 92px 0;
}

.about-founder-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 90px;
}

.about-founder-image {
  border-radius: var(--radius-lg);
  background: #272d37;
  overflow: hidden;
}

.about-founder-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  object-position: center top;
}

.about-founder h2 {
  margin: 0;
  font-size: clamp(45px, 5vw, 70px);
  font-weight: 590;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.founder-role {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
}

.about-founder blockquote {
  border-left: 3px solid var(--yellow);
  margin: 34px 0;
  padding-left: 25px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 1.65;
}

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

.values-grid > div {
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  padding: 25px;
}

.values-grid h3 {
  margin: 80px 0 11px;
  font-size: 23px;
}

.values-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.why-grid {
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
}

.why-grid ul {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin: 0;
  padding: 0;
  list-style: none;
}

.why-grid li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 13px;
  background: var(--ink);
  padding: 22px 0;
}

.why-grid li > svg {
  color: var(--yellow);
}

.why-grid li span {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  line-height: 1.6;
}

.why-grid li strong {
  color: var(--white);
  font-size: 13px;
}

.contact-page-grid {
  grid-template-columns: 0.8fr 1.2fr;
}

.contact-methods {
  display: grid;
  gap: 8px;
  margin-top: 35px;
}

.contact-methods > a,
.contact-methods > div {
  display: grid;
  min-height: 82px;
  grid-template-columns: 48px 1fr;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  padding: 12px;
}

.contact-methods > a > span,
.contact-methods > div > span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: #eeece5;
  color: #806300;
}

.contact-methods div > div,
.contact-methods a > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.contact-methods small {
  color: #8b8f94;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-methods strong {
  max-width: 420px;
  font-size: 11px;
  line-height: 1.5;
}

.map-section {
  position: relative;
  background: var(--ink);
  padding: 30px 0 90px;
}

.map-section > .shell {
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 520px;
  border: 0;
  border-radius: var(--radius);
  filter: grayscale(1) contrast(0.9);
}

.map-address {
  position: absolute;
  right: 45px;
  bottom: 28px;
  width: min(420px, calc(100% - 60px));
  border-radius: 12px;
  background: var(--white);
  padding: 26px;
  box-shadow: var(--shadow-lg);
}

.map-address h2 {
  margin: 0 0 20px;
  font-size: 22px;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

/* Forms */

.quote-form {
  color: var(--ink);
}

.form-intro {
  margin-bottom: 28px;
}

.form-intro h2 {
  margin: 0;
  font-size: 36px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.form-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

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

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #686c72;
  font-size: 9px;
  font-weight: 700;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #faf9f6;
  padding: 12px;
  color: var(--ink);
  font-size: 12px;
  outline: 0;
}

.form-grid input,
.form-grid select {
  min-height: 44px;
}

.form-grid textarea {
  min-height: 118px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: #ac8300;
  box-shadow: 0 0 0 3px rgba(249, 198, 26, 0.18);
}

.form-full {
  grid-column: 1 / -1;
}

.file-field small {
  color: #96999e;
  font-size: 8px;
}

.form-submit {
  width: 100%;
  margin-top: 17px;
}

.form-whatsapp {
  width: 100%;
  margin-top: 9px;
}

.form-privacy {
  margin: 10px 0 0;
  color: #8a8e94;
  font-size: 8px;
  text-align: center;
}

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

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

.quote-form-compact .form-full {
  grid-column: auto;
}

/* Footer */

.footer-grid {
  display: grid;
  min-height: 430px;
  grid-template-columns: 1.4fr 0.65fr 0.65fr 1fr;
  gap: 65px;
  padding-top: 75px;
  padding-bottom: 60px;
}

.footer-grid h2 {
  margin: 0 0 22px;
  color: var(--yellow);
  font-size: 9px;
  font-weight: 730;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li a,
.footer-grid > div:nth-child(2) > ul a,
.footer-contact > a {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
}

.footer-grid li a:hover,
.footer-grid > div:nth-child(2) > ul a:hover,
.footer-contact > a:hover {
  color: var(--white);
}

.footer-contact > p {
  max-width: 260px;
  margin: 2px 0;
  color: rgba(255, 255, 255, 0.43);
  font-size: 10px;
  line-height: 1.65;
  text-transform: none;
}

.footer-contact > small {
  color: rgba(255, 255, 255, 0.35);
  font-size: 9px;
  line-height: 1.55;
}

.footer-bottom p {
  margin: 0;
}

/* Drawer and comparison */

.drawer-backdrop {
  position: fixed;
  z-index: 190;
  inset: 0;
  background: rgba(7, 9, 13, 0.62);
  opacity: 0;
  transition: opacity 240ms ease;
}

.drawer-backdrop.visible {
  opacity: 1;
}

.inquiry-drawer {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  width: min(100%, 620px);
  height: 100dvh;
  transform: translateX(100%);
}

.inquiry-drawer.open {
  transform: translateX(0);
}

.drawer-scroll {
  flex: 1;
  padding: 22px 27px 38px;
  overflow-y: auto;
}

.drawer-scroll .quote-form {
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 22px;
}

body.drawer-open {
  overflow: hidden;
}

.compare-tray {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px 10px 17px;
}

.compare-tray > div:first-child,
.compare-tray-actions {
  display: flex;
  align-items: center;
  gap: 11px;
}

.compare-icon {
  color: var(--yellow);
}

.compare-tray p {
  margin: 0;
  font-size: 10px;
}

.compare-tray p strong {
  font-size: 13px;
}

.compare-tray-items {
  display: flex;
  gap: 7px;
}

.compare-tray-items span {
  display: grid;
  width: 49px;
  height: 47px;
  place-items: center;
  border-radius: 6px;
  background: var(--white);
}

.compare-tray-items img {
  width: 44px;
  height: 40px;
  object-fit: contain;
}

.text-button {
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 700;
}

.modal {
  position: fixed;
  z-index: 230;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(7, 9, 13, 0.72);
  padding: 22px;
}

.modal-panel {
  width: min(100%, 1050px);
  max-height: calc(100dvh - 44px);
  border-radius: 15px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.compare-table-wrap {
  max-height: calc(100dvh - 155px);
  padding: 18px;
  overflow: auto;
}

.compare-table {
  min-width: 760px;
  grid-template-columns: 130px repeat(var(--compare-columns, 2), minmax(210px, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.compare-table .compare-cell {
  min-height: 62px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: 13px;
  color: #61666d;
  font-size: 11px;
  line-height: 1.5;
}

.compare-table .compare-label {
  background: #eceae3;
  color: #777b81;
  font-size: 8px;
  font-weight: 750;
  text-transform: uppercase;
}

.compare-table .compare-product-head {
  display: flex;
  min-height: 150px;
  flex-direction: column;
  align-items: flex-start;
}

.compare-product-head img {
  width: 90px;
  height: 80px;
  object-fit: contain;
}

.compare-product-head strong {
  margin-top: 8px;
  color: var(--ink);
  font-size: 12px;
}

.compare-product-head a {
  margin-top: 7px;
  color: #806300;
  font-size: 9px;
  font-weight: 700;
}

/* Search, content, and utility pages */

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

.journal-card,
.search-result-card {
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  overflow: hidden;
}

.journal-card-image {
  display: block;
  height: 270px;
  background: #e9e7e0;
}

.journal-card-image img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.journal-card > div {
  padding: 25px;
}

.journal-card h2,
.search-result-card h2 {
  margin: 0;
  font-size: 27px;
  letter-spacing: -0.045em;
}

.journal-card p:not(.eyebrow),
.search-result-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 45px;
}

.content-sidebar {
  position: sticky;
  top: 150px;
  align-self: start;
}

.site-search-form {
  display: grid;
  min-height: 48px;
  grid-template-columns: 1fr 48px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
  overflow: hidden;
}

.site-search-form input {
  width: 100%;
  height: 48px;
  border: 0;
  outline: 0;
  padding: 0 14px;
  color: var(--ink);
  font-size: 12px;
}

.site-search-form button {
  display: grid;
  place-items: center;
  background: var(--yellow);
}

.search-page-form {
  max-width: 720px;
  margin: 0 auto 45px;
}

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

.search-result-card {
  display: grid;
  grid-template-columns: 1fr 48px;
  align-items: center;
  gap: 25px;
  padding: 25px;
}

.round-link {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
}

.single-featured {
  margin-bottom: 40px;
}

.single-featured img {
  width: 100%;
  border-radius: var(--radius);
}

.comments-area {
  padding: 70px 0;
}

.not-found-page {
  display: grid;
  min-height: 660px;
  place-items: center;
  background:
    linear-gradient(rgba(16, 19, 27, 0.92), rgba(16, 19, 27, 0.92)),
    url("../images/company/industrial-hero.webp") center/cover;
  color: var(--white);
}

.not-found-inner {
  max-width: 780px;
}

.not-found-inner h1 {
  margin: 0;
  font-size: clamp(54px, 8vw, 100px);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.not-found-inner > p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.7;
}

/* Predictive search */

.spm-product-search {
  position: relative;
}

.hero-search .search-suggestions {
  top: calc(100% + 10px);
  color: var(--ink);
  text-align: left;
}

.suggestion-item {
  display: grid;
  grid-template-columns: 54px 1fr 20px;
  align-items: center;
  gap: 12px;
}

.suggestion-item img {
  width: 50px;
  height: 45px;
  object-fit: contain;
}

.suggestion-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 4px;
}

.suggestion-copy strong,
.suggestion-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.suggestion-copy strong {
  font-size: 12px;
}

.suggestion-copy small {
  color: var(--muted);
  font-size: 9px;
}

.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Responsive WordPress layer */

@media (max-width: 1100px) {
  .primary-menu {
    gap: 18px;
  }

  .nav-quick-actions > a {
    display: none;
  }

  .product-detail-grid,
  .service-directory-card {
    gap: 38px;
  }

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

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

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    gap: 45px;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .desktop-navigation,
  .nav-quick-actions {
    display: none;
  }

  .mobile-menu-button {
    display: grid;
  }

  .header-main {
    grid-template-columns: 210px minmax(220px, 1fr) 120px;
  }

  .header-actions {
    align-items: center;
    gap: 10px;
  }

  .inquiry-action > span:last-child {
    display: none;
  }

  .nav-row {
    display: none;
  }

  .category-directory,
  .industry-directory,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .brand-directory-card,
  .service-directory-card,
  .about-founder-grid,
  .contact-page-grid,
  .contact-split,
  .about-intro-grid,
  .why-grid,
  .calibration-grid,
  .partner-clarity-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .brand-directory-logo {
    min-height: 180px;
  }

  .brand-directory-card > div:last-child {
    padding: 15px 0;
  }

  .about-founder-image img {
    height: 500px;
  }

  .downloads-layout {
    grid-template-columns: 1fr;
  }

  .downloads-help {
    position: static;
  }

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

  .product-summary {
    padding-top: 0;
  }

  .tab-panel#product-overview {
    grid-template-columns: 1fr;
    gap: 35px;
  }

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

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

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

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

  .content-sidebar {
    position: static;
    order: -1;
  }

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

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 30px), var(--shell));
  }

  .utility-inner > div {
    display: none;
  }

  .utility-inner {
    justify-content: center;
  }

  .header-main {
    min-height: 70px;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .header-search {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-bottom: 13px;
  }

  .brand-lockup {
    min-width: 0;
  }

  .header-actions {
    grid-column: 2;
    grid-row: 1;
  }

  .site-header {
    position: relative;
  }

  .page-hero-mark {
    display: none;
  }

  .product-gallery-main {
    min-height: 410px;
  }

  .product-gallery-main > img {
    height: 330px;
  }

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

  .form-full {
    grid-column: auto;
  }

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

  .product-actions .button-outline {
    grid-column: auto;
  }

  .product-tabs {
    gap: 0;
  }

  .product-tabs button {
    padding: 0 14px;
  }

  .spec-table,
  .application-grid,
  .document-list {
    grid-template-columns: 1fr;
  }

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

  .directory-card-image {
    min-height: 235px;
  }

  .directory-card-image img {
    height: 210px;
  }

  .brand-directory-card {
    padding: 20px;
  }

  .brand-directory-card dl {
    grid-template-columns: 1fr;
  }

  .brand-directory-card dt {
    border-bottom: 0;
    padding-bottom: 2px;
  }

  .brand-directory-card dd {
    padding-top: 4px;
  }

  .industry-directory-card {
    grid-template-columns: 50px 1fr;
  }

  .industry-directory-card > svg {
    display: none;
  }

  .service-directory-image {
    min-height: 320px;
  }

  .service-directory-image img {
    height: 320px;
  }

  .project-card {
    min-height: 340px;
  }

  .download-card {
    grid-template-columns: 48px 1fr;
  }

  .download-card > .button {
    grid-column: 1 / -1;
  }

  .about-founder-image img {
    height: 430px;
  }

  .values-grid,
  .recent-product-grid,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .map-section iframe {
    height: 430px;
  }

  .map-address {
    position: static;
    width: 100%;
    margin-top: 15px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 25px;
    padding-top: 62px;
  }

  .footer-brand,
  .footer-contact {
    grid-column: 1 / -1;
  }

  .marketplace-mobile-tools {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 25px;
  }

  .marketplace-mobile-tools span {
    color: var(--muted);
    font-size: 10px;
  }

  .catalogue-sidebar {
    position: fixed;
    z-index: 185;
    top: 0;
    right: 0;
    width: min(92%, 390px);
    height: 100dvh;
    max-height: none;
    background: var(--paper);
    padding: 20px;
    overflow-y: auto;
    transform: translateX(105%);
    transition: transform 240ms ease;
  }

  .catalogue-sidebar.open {
    transform: translateX(0);
  }

  .filter-drawer-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--line);
    margin-bottom: 22px;
    padding-bottom: 17px;
  }

  .filter-drawer-heading button {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
  }

  .compare-tray {
    width: calc(100% - 20px);
    flex-wrap: wrap;
    gap: 8px;
  }

  .compare-tray-items {
    display: none;
  }

  .compare-tray-actions .button {
    min-height: 40px;
    padding: 0 12px;
    font-size: 9px;
  }

  .inquiry-drawer {
    width: 100%;
  }

  .drawer-scroll {
    padding: 18px;
  }
}

.primary-menu .sub-menu a::after {
  display: none;
}

.empty-results h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.035em;
}

.add-inquiry-button.saved {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

/* Elementor compatibility */
.spm-elementor-content,
.spm-elementor-page #primary {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.spm-elementor-page .elementor {
  width: 100%;
}

/* Editable Elementor layout wrappers introduced in v1.2.0 */
.spm-elementor-seed-section,
.spm-elementor-seed-section > .elementor-container,
.spm-elementor-seed-column,
.spm-elementor-seed-column > .elementor-widget-wrap,
.elementor-widget[class*="elementor-widget-spm-"] > .elementor-widget-container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.spm-elementor-seed-section.elementor-section.elementor-section-boxed > .elementor-container {
  max-width: none;
}

.elementor-widget[class*="elementor-widget-spm-"]:not(:last-child) {
  margin-bottom: 0;
}

/* Product pricing and availability — v1.3.0 */
.product-image-wrap{position:relative}.product-stock-badge{position:absolute;left:14px;bottom:14px;z-index:2;display:inline-flex;align-items:center;min-height:28px;padding:5px 9px;border-radius:999px;background:rgba(255,255,255,.94);color:#26313a;font-size:11px;font-weight:700;box-shadow:0 4px 18px rgba(0,0,0,.08)}.product-stock-in_stock{color:#146c43}.product-stock-limited{color:#8a5a00}.product-stock-out_of_stock{color:#a12622}.product-card-price{display:flex;flex-direction:column;gap:3px;min-width:0}.product-card-price .spm-price-display{display:flex;flex-direction:column;gap:1px}.product-card-price .spm-price-row{display:flex;align-items:baseline;gap:6px;flex-wrap:wrap}.product-card-price .spm-price-current,.product-card-price .spm-price-request{font-size:16px;line-height:1.1}.spm-price-prefix,.spm-price-unit,.spm-price-suffix{display:block;font-size:11px;font-weight:500;color:#68727b}.spm-price-regular{font-size:12px;color:#8b949c}.product-purchase-summary{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin:22px 0;padding:18px 0;border-top:1px solid rgba(31,43,51,.12);border-bottom:1px solid rgba(31,43,51,.12)}.product-detail-price{display:flex;flex-direction:column;gap:5px}.product-detail-price>small{font-size:11px;text-transform:uppercase;letter-spacing:.11em;color:#6d777f}.product-detail-price .spm-price-row{display:flex;align-items:baseline;gap:10px;flex-wrap:wrap}.product-detail-price .spm-price-current,.product-detail-price .spm-price-request{font-size:30px;line-height:1;font-weight:760;color:#17242c}.product-detail-price .spm-price-prefix{font-size:12px;text-transform:uppercase;letter-spacing:.08em}.product-detail-price .spm-price-suffix{margin-top:4px}.product-detail-stock{display:inline-flex;align-items:center;padding:8px 11px;border-radius:999px;background:#f1f4f3;font-size:12px;font-weight:700;white-space:nowrap}@media(max-width:640px){.product-purchase-summary{align-items:flex-start;flex-direction:column}.product-detail-price .spm-price-current,.product-detail-price .spm-price-request{font-size:25px}.product-card-footer{align-items:flex-end}}

/* ================================================================
   Marketplace usability, reliable quotation feedback, and mobile UI
   Version 1.4.0
   ================================================================ */

html,
body,
.site-root {
  max-width: 100%;
  overflow-x: clip;
}

.catalogue-layout,
.catalogue-main,
.catalogue-product-grid,
.product-detail-grid,
.product-summary,
.product-gallery {
  min-width: 0;
}

/* Desktop filter panel: scrolls inside the viewport instead of being cut off. */
.catalogue-layout {
  grid-template-columns: minmax(260px, 292px) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 42px);
}

.catalogue-sidebar {
  top: 118px;
  max-height: calc(100dvh - 140px);
  border-color: #e4e7e7;
  border-radius: 16px;
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  box-shadow: 0 14px 44px rgba(20, 34, 43, 0.06);
}

.catalogue-sidebar::-webkit-scrollbar,
.filter-scroll-list::-webkit-scrollbar {
  width: 7px;
}

.catalogue-sidebar::-webkit-scrollbar-thumb,
.filter-scroll-list::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: #c9ced1;
  background-clip: padding-box;
}

.catalogue-filter-form {
  padding: 0 18px 18px;
}

.catalogue-filter-top {
  position: sticky;
  z-index: 3;
  top: 0;
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid #eceeed;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
}

.catalogue-filter-top > div {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.catalogue-filter-top strong {
  color: var(--ink);
  font-size: 16px;
  letter-spacing: -0.025em;
}

.catalogue-filter-top span {
  color: #788188;
  font-size: 10px;
  font-weight: 650;
}

.catalogue-filter-top a {
  color: #765e00;
  font-size: 11px;
  font-weight: 750;
}

.catalogue-filter-form .filter-search {
  margin: 18px 0 4px;
}

.catalogue-filter-form .filter-search > span {
  border-color: #dfe3e4;
  background: #f8f9f8;
}

.filter-check-section {
  border-bottom: 1px solid #e9eceb;
  margin: 0;
  padding: 0;
}

.filter-check-section > summary {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  cursor: pointer;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  list-style: none;
  user-select: none;
}

.filter-check-section > summary::-webkit-details-marker {
  display: none;
}

.filter-check-section > summary svg {
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.filter-check-section[open] > summary svg {
  transform: rotate(90deg);
}

.filter-check-list {
  display: grid;
  gap: 3px;
  padding: 0 0 17px;
}

.filter-scroll-list {
  max-height: 235px;
  padding-right: 4px;
  overflow-y: auto;
}

.filter-checkbox {
  position: relative;
  display: grid !important;
  min-height: 35px;
  grid-template-columns: 20px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  margin: 0 !important;
  border-radius: 7px;
  padding: 4px 7px 4px 2px;
  color: #4d5961 !important;
  cursor: pointer;
  font-size: 12px !important;
  font-weight: 560 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  transition: background 150ms ease;
}

.filter-checkbox:hover {
  background: #f5f7f6;
}

.filter-checkbox input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.filter-checkbox > span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border: 1.5px solid #cbd1d3;
  border-radius: 4px;
  background: #fff;
  color: #fff;
  transition: 150ms ease;
}

.filter-checkbox > span svg {
  width: 12px;
  height: 12px;
  opacity: 0;
  stroke-width: 3;
}

.filter-checkbox input:checked + span {
  border-color: #1573df;
  background: #1573df;
  box-shadow: 0 0 0 3px rgba(21, 115, 223, 0.12);
}

.filter-checkbox input:checked + span svg {
  opacity: 1;
}

.filter-checkbox input:focus-visible + span {
  outline: 3px solid rgba(21, 115, 223, 0.25);
  outline-offset: 2px;
}

.filter-checkbox em {
  min-width: 0;
  overflow: hidden;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.filter-checkbox small {
  color: #90989d;
  font-size: 10px;
  font-weight: 650;
}

.filter-price-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: end;
  gap: 8px;
  padding: 0 0 7px;
}

.filter-price-fields label {
  margin: 0 !important;
  color: #707a80 !important;
  font-size: 9px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.filter-price-fields label span {
  display: block;
  margin-bottom: 6px;
}

.filter-price-fields input {
  width: 100%;
  min-height: 42px;
  border: 1px solid #dfe3e4;
  border-radius: 7px;
  background: #f8f9f8;
  padding: 0 10px;
  color: var(--ink);
  font-size: 12px;
  outline: none;
}

.filter-price-fields input:focus {
  border-color: #1573df;
  box-shadow: 0 0 0 3px rgba(21, 115, 223, 0.12);
}

.filter-price-fields i {
  padding-bottom: 12px;
  color: #a0a7ab;
  font-style: normal;
}

.filter-help-text {
  margin: 0 0 16px;
  color: #858d92;
  font-size: 9px;
  line-height: 1.55;
}

.filter-actions {
  position: sticky;
  z-index: 3;
  bottom: -18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  border-top: 1px solid #e8ebea;
  margin: 0 -18px -18px;
  background: rgba(255, 255, 255, 0.98);
  padding: 14px 18px calc(14px + env(safe-area-inset-bottom));
  backdrop-filter: blur(10px);
}

.filter-actions .filter-submit {
  min-height: 46px;
  margin: 0;
  white-space: nowrap;
}

.filter-actions .clear-filter-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 14px;
  text-align: center;
}

.catalogue-toolbar {
  gap: 18px;
}

.catalogue-toolbar form,
.catalogue-toolbar label {
  min-width: 0;
}

.catalogue-toolbar label span {
  white-space: nowrap;
}

.active-filter-summary {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #e3e7e6;
  border-radius: 9px;
  margin: 0 0 20px;
  background: #f7f9f8;
  padding: 8px 12px;
  color: #68737a;
  font-size: 10px;
  font-weight: 650;
}

.active-filter-summary a {
  color: #735b00;
  font-weight: 750;
}

.marketplace-filter-trigger {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  border-radius: 9px;
  background: var(--ink);
  padding: 0 14px;
  color: #fff;
  font-size: 12px;
  font-weight: 750;
}

.marketplace-filter-trigger b {
  display: grid;
  min-width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 999px;
  background: var(--yellow);
  padding: 0 5px;
  color: var(--ink);
  font-size: 10px;
}

/* Clear quotation status and loading feedback. */
.form-response {
  border: 1px solid transparent;
  border-radius: 9px;
  margin-top: 16px;
  padding: 13px 15px;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.55;
}

.form-response-success {
  border-color: #9bd1b2;
  background: #eef9f2;
  color: #11683b;
}

.form-response-warning {
  border-color: #ead18b;
  background: #fff9e7;
  color: #735600;
}

.form-response-error {
  border-color: #e7aaa6;
  background: #fff2f1;
  color: #982b26;
}

.form-submit.is-loading,
.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-submit.is-loading svg {
  animation: spm-submit-pulse 850ms ease-in-out infinite alternate;
}

@keyframes spm-submit-pulse {
  to { transform: translateX(5px); opacity: 0.45; }
}

/* Product pages remain readable on narrow and touch screens. */
.product-gallery-main img,
.product-card img,
.directory-card img,
.service-directory-image img,
.project-card img {
  max-width: 100%;
}

.product-information .shell,
.product-detail-main .shell {
  min-width: 0;
}

.spec-table,
.document-list,
.application-grid {
  max-width: 100%;
}

@media (max-width: 1100px) {
  .catalogue-layout {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 25px;
  }

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

@media (max-width: 900px) {
  body.drawer-open {
    height: 100dvh;
    overflow: hidden;
    touch-action: none;
  }

  .catalogue-layout {
    display: block;
  }

  .marketplace-mobile-tools {
    position: sticky;
    z-index: 60;
    top: 0;
    display: flex;
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid #e5e8e7;
    background: rgba(255, 255, 255, 0.96);
    padding-top: 10px;
    padding-bottom: 10px;
    backdrop-filter: blur(12px);
  }

  .mobile-result-count {
    color: #737d83;
    font-size: 11px !important;
    white-space: nowrap;
  }

  .catalogue-sidebar {
    position: fixed;
    z-index: 210;
    top: 0;
    right: 0;
    width: min(100%, 430px);
    height: 100dvh;
    max-height: 100dvh;
    border: 0;
    border-radius: 0;
    background: #fff;
    padding: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    box-shadow: -22px 0 55px rgba(10, 20, 28, 0.2);
    transform: translate3d(105%, 0, 0);
    visibility: hidden;
    transition: transform 240ms ease, visibility 240ms step-end;
  }

  .catalogue-sidebar.open {
    transform: translate3d(0, 0, 0);
    visibility: visible;
    transition: transform 240ms ease, visibility 0s;
  }

  .filter-drawer-heading {
    position: sticky;
    z-index: 5;
    top: 0;
    display: flex;
    min-height: 72px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e8e7;
    margin: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 12px 18px;
    backdrop-filter: blur(12px);
  }

  .filter-drawer-heading > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
  }

  .filter-drawer-heading small {
    color: #818a90;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .filter-drawer-heading strong {
    font-size: 18px;
    letter-spacing: -0.03em;
  }

  .catalogue-filter-form {
    padding: 0 18px 18px;
  }

  .catalogue-filter-top {
    position: static;
  }

  .filter-actions {
    bottom: -18px;
  }

  .catalogue-main {
    padding-top: 23px;
  }

  .catalogue-toolbar {
    align-items: stretch;
  }

  .catalogue-toolbar > div {
    display: none;
  }

  .catalogue-toolbar form,
  .catalogue-toolbar label,
  .catalogue-toolbar select {
    width: 100%;
  }

  .catalogue-toolbar label {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
  }

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

  .product-detail-main {
    padding-bottom: 48px;
  }

  .product-detail-grid {
    gap: 34px;
  }

  .product-summary h1 {
    font-size: clamp(34px, 7vw, 48px);
  }

  .product-gallery-main {
    min-height: min(540px, 68vw);
  }

  .product-gallery-main > img {
    height: min(430px, 56vw);
  }

  .product-tabs {
    padding-inline: 15px;
    scroll-snap-type: x proximity;
  }

  .product-tabs button {
    min-height: 58px;
    scroll-snap-align: start;
  }

  .tab-panel {
    min-height: 0;
    padding-top: 34px;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .utility-bar {
    display: none;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .header-main {
    min-height: auto;
    padding-top: 10px;
    padding-bottom: 11px;
  }

  .brand-mark,
  .brand-custom-logo img {
    max-width: 40px;
    max-height: 40px;
  }

  .brand-words strong {
    font-size: 17px;
  }

  .brand-words small {
    font-size: 8px;
  }

  .header-search {
    height: 43px;
    margin-bottom: 0;
  }

  .header-search > button {
    padding: 0 13px;
    font-size: 10px;
  }

  .inquiry-action {
    gap: 5px;
  }

  .header-action-icon,
  .mobile-menu-button {
    width: 40px;
    height: 40px;
  }

  .mobile-navigation {
    max-height: calc(100dvh - 112px);
    overflow-y: auto;
  }

  .marketplace-page.section {
    padding-top: 0;
  }

  .marketplace-mobile-tools {
    margin-inline: 0;
  }

  .marketplace-filter-trigger {
    min-height: 44px;
    padding-inline: 12px;
  }

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

  .product-card {
    border-radius: 13px;
  }

  .product-card-image,
  .product-image-wrap {
    min-height: 250px;
  }

  .product-card-image img,
  .product-image-wrap img {
    max-height: 225px;
  }

  .product-card-body h2 {
    font-size: 20px;
  }

  .product-card-footer,
  .product-card-actions {
    gap: 8px;
  }

  .product-card-footer .button,
  .product-card-actions .button {
    min-height: 43px;
  }

  .product-detail-main > .shell > .breadcrumbs {
    padding-top: 17px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .product-detail-grid {
    gap: 27px;
  }

  .product-gallery-main {
    min-height: 330px;
    border-radius: 13px;
  }

  .product-gallery-main::after {
    width: 330px;
    height: 330px;
  }

  .product-gallery-main::before {
    width: 230px;
    height: 230px;
  }

  .product-gallery-main > img {
    width: 92%;
    height: 280px;
  }

  .gallery-label {
    top: 12px;
    left: 12px;
  }

  .product-thumbnails {
    margin-inline: -14px;
    padding: 0 14px 5px;
    scrollbar-width: none;
  }

  .product-thumbnails::-webkit-scrollbar {
    display: none;
  }

  .product-thumbnails button {
    width: 68px;
    height: 60px;
  }

  .product-thumbnails img {
    width: 58px;
    height: 50px;
  }

  .product-summary > .product-brand {
    margin-top: 2px;
  }

  .product-summary h1 {
    margin-top: 15px;
    font-size: clamp(31px, 10vw, 40px);
    line-height: 1.03;
  }

  .product-lead {
    margin-top: 16px;
    font-size: 14px;
  }

  .product-purchase-summary {
    margin: 19px 0;
    padding: 16px 0;
  }

  .product-detail-stock {
    white-space: normal;
  }

  .product-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 20px 0;
  }

  .product-meta-grid > div {
    min-height: 74px;
    padding: 10px;
  }

  .product-actions {
    position: relative;
    z-index: 2;
    gap: 9px;
  }

  .product-actions .button {
    min-height: 49px;
    width: 100%;
  }

  .product-secondary-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  .product-secondary-actions a,
  .product-secondary-actions button {
    min-height: 42px;
    justify-content: center;
    border: 1px solid #e0e4e3;
    border-radius: 7px;
    padding: 7px;
    text-align: center;
  }

  .commercial-note {
    font-size: 11px;
  }

  .product-tabs {
    margin-inline: -14px;
    padding-inline: 14px;
    scrollbar-width: none;
  }

  .product-tabs::-webkit-scrollbar {
    display: none;
  }

  .product-tabs button {
    padding-inline: 14px;
    font-size: 11px;
  }

  .tab-panel,
  .tab-panel#product-overview {
    gap: 25px;
    padding-top: 28px;
  }

  .product-prose,
  .prose-content {
    font-size: 14px;
  }

  .spec-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .quote-cta-inner,
  .quote-cta-actions {
    align-items: stretch;
  }

  .quote-cta-actions .button {
    width: 100%;
  }

  .form-grid {
    gap: 12px;
  }

  .form-grid input,
  .form-grid select,
  .form-grid textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .form-grid textarea {
    min-height: 130px;
  }

  .form-card {
    padding: 20px 16px;
  }

  .form-intro h2 {
    font-size: 30px;
  }

  .inquiry-drawer,
  .compare-modal-panel {
    max-width: 100%;
  }
}

@media (max-width: 390px) {
  .shell {
    width: min(calc(100% - 22px), var(--shell));
  }

  .brand-words {
    display: none;
  }

  .header-search > button {
    padding-inline: 10px;
  }

  .marketplace-filter-trigger span {
    font-size: 11px;
  }

  .filter-price-fields {
    grid-template-columns: 1fr;
  }

  .filter-price-fields i {
    display: none;
  }

  .filter-actions {
    grid-template-columns: 1fr;
  }

  .product-meta-grid,
  .product-secondary-actions {
    grid-template-columns: 1fr;
  }
}

.site-notice-warning {
  background: #fff4d4;
  color: #765700;
}

/* Sticky offsets for the fixed marketplace header. */
.catalogue-sidebar {
  top: 145px;
  max-height: calc(100dvh - 165px);
}

@media (max-width: 900px) {
  .marketplace-mobile-tools {
    top: 78px;
  }

  .catalogue-sidebar {
    top: 0;
    max-height: 100dvh;
  }
}

@media (max-width: 720px) {
  .marketplace-mobile-tools {
    top: 113px;
  }
}

@media (max-width: 900px) {
  .filter-drawer-heading button {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
  }
}

/* ======================================================================
   Mobile marketplace, WhatsApp ordering, and category imagery — v1.5.4
   ====================================================================== */

.product-whatsapp-order,
.product-actions-whatsapp-only .button-whatsapp-primary {
  border: 1px solid #139a58;
  background: #16a762;
  color: #fff;
  text-decoration: none;
}

.product-whatsapp-order:hover,
.product-actions-whatsapp-only .button-whatsapp-primary:hover {
  border-color: #0e8849;
  background: #0e8849;
  color: #fff;
}

.product-actions-whatsapp-only {
  grid-template-columns: minmax(0, 1.5fr) minmax(130px, 0.7fr);
}

.whatsapp-quote-form .form-submit {
  width: 100%;
  justify-content: center;
}

.whatsapp-quote-form .form-privacy {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  /* A compact fixed marketplace control replaces the awkward static filter row. */
  .spm-marketplace-view {
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }

  .marketplace-mobile-tools.shell {
    position: fixed;
    z-index: 145;
    top: auto !important;
    right: 14px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 14px;
    width: auto;
    min-height: 58px;
    margin: 0;
    border: 1px solid rgba(28, 39, 47, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.97);
    padding: 7px;
    box-shadow: 0 16px 42px rgba(15, 27, 35, 0.2);
    backdrop-filter: blur(18px);
  }

  .marketplace-filter-trigger {
    min-height: 44px;
    flex: 1;
    justify-content: center;
    border-radius: 11px;
    box-shadow: none;
  }

  .mobile-result-count {
    display: inline-flex;
    min-width: 82px;
    min-height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #e5e8e7;
    padding: 0 10px;
    line-height: 1.15;
  }

  .mobile-result-count strong {
    color: var(--ink);
    font-size: 15px;
  }

  /* The filter is a genuine left-side burger drawer on phones/tablets. */
  .catalogue-sidebar {
    top: 0 !important;
    right: auto;
    bottom: 0;
    left: 0;
    width: min(92vw, 400px);
    height: 100dvh;
    max-height: 100dvh !important;
    border-radius: 0 18px 18px 0;
    box-shadow: 22px 0 55px rgba(10, 20, 28, 0.22);
    transform: translate3d(-105%, 0, 0);
  }

  .catalogue-sidebar.open {
    transform: translate3d(0, 0, 0);
  }

  .filter-drawer-heading {
    padding-top: calc(12px + env(safe-area-inset-top));
  }

  .filter-actions {
    bottom: -18px;
  }

  .spm-marketplace-view .floating-whatsapp {
    bottom: calc(84px + env(safe-area-inset-bottom));
  }

  .spm-marketplace-view .compare-tray {
    bottom: calc(82px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 720px) {
  /* Professional two-column product catalogue, matching modern mobile stores. */
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .product-grid .product-card {
    min-width: 0;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(24, 34, 42, 0.05);
  }

  .product-grid .product-card:hover {
    transform: none;
  }

  .product-grid .product-card-topline {
    min-height: 34px;
    padding: 7px 7px 4px 10px;
  }

  .product-grid .product-card-topline > span {
    max-width: calc(100% - 30px);
    font-size: 7px;
  }

  .product-grid .product-card-topline .icon-button {
    width: 27px;
    height: 27px;
  }

  .product-grid .product-image-wrap {
    width: 100%;
    min-height: 0 !important;
    aspect-ratio: 1 / 1;
    padding: 8px;
  }

  .product-grid .product-image-wrap .product-image {
    width: 100%;
    height: 100%;
    max-height: none !important;
    object-fit: contain;
    filter: drop-shadow(0 8px 8px rgba(17, 19, 27, 0.12));
  }

  .product-grid .image-arrow {
    display: none;
  }

  .product-grid .product-stock-badge {
    right: 7px;
    bottom: 7px;
    left: 7px;
    width: max-content;
    max-width: calc(100% - 14px);
    min-height: 22px;
    padding: 3px 7px;
    overflow: hidden;
    font-size: 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .product-grid .product-card-body {
    min-height: 102px;
    padding: 12px 11px 9px;
  }

  .product-grid .product-brand {
    max-width: 100%;
    margin-bottom: 6px;
    overflow: hidden;
    font-size: 7px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .product-grid .product-card-body h2 {
    display: -webkit-box;
    min-height: 34px;
    margin: 0;
    overflow: hidden;
    font-size: 14px !important;
    letter-spacing: -0.025em;
    line-height: 1.2;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .product-grid .product-card-body > p,
  .product-grid .product-card-quick {
    display: none;
  }

  .product-grid .product-card-footer {
    display: grid;
    min-height: 0;
    grid-template-columns: 1fr;
    align-items: stretch !important;
    gap: 9px;
    padding: 10px;
  }

  .product-grid .product-card-price {
    min-height: 28px;
    justify-content: center;
  }

  .product-grid .product-card-footer small {
    display: none;
  }

  .product-grid .product-card-price .spm-price-current,
  .product-grid .product-card-price .spm-price-request {
    font-size: 14px;
    font-weight: 780;
  }

  .product-grid .product-card-price .spm-price-prefix,
  .product-grid .product-card-price .spm-price-unit,
  .product-grid .product-card-price .spm-price-suffix,
  .product-grid .product-card-price .spm-price-regular {
    font-size: 8px;
  }

  .product-grid .product-whatsapp-order {
    width: 100%;
    min-height: 38px;
    justify-content: center;
    gap: 5px;
    border-radius: 8px;
    padding: 0 6px;
    font-size: 9px;
    white-space: nowrap;
  }

  .product-grid .product-whatsapp-order svg {
    width: 14px;
    height: 14px;
    flex: 0 0 auto;
  }

  .catalogue-toolbar {
    min-height: 52px;
    margin-bottom: 14px;
    padding: 8px 10px;
  }

  .catalogue-toolbar label {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .catalogue-toolbar select {
    min-width: 0;
    height: 38px;
  }

  .product-actions-whatsapp-only {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-actions-whatsapp-only .button {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .product-grid {
    gap: 9px !important;
  }

  .product-grid .product-card-body {
    padding-inline: 9px;
  }

  .product-grid .product-card-body h2 {
    font-size: 13px !important;
  }

  .product-grid .product-whatsapp-order {
    font-size: 8px;
  }
}
