:root {
  --ink: #18232d;
  --ink-strong: #0e171f;
  --muted: #607080;
  --line: #d8e0e6;
  --line-strong: #becbd4;
  --surface: #ffffff;
  --soft: #f3f6f7;
  --soft-blue: #edf4f7;
  --brand: #075d75;
  --brand-dark: #063e50;
  --green: #24755b;
  --amber: #a96618;
  --red: #a53a3a;
  --sidebar: #17212b;
  --shadow: 0 12px 32px rgba(20, 37, 48, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink-strong);
  line-height: 1.18;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: 48px;
}

h2 {
  margin-bottom: 16px;
  font-size: 32px;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
}

p {
  margin-bottom: 18px;
}

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

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

.utility-bar {
  color: #d8e7eb;
  background: var(--brand-dark);
  font-size: 12px;
}

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

.topbar {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--brand);
  color: #fff;
  background: var(--brand);
  font-size: 14px;
  font-weight: 800;
}

.brand-copy {
  min-width: 0;
  display: grid;
  line-height: 1.2;
}

.brand-copy strong {
  overflow: hidden;
  color: var(--ink-strong);
  font-size: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-copy small {
  color: var(--muted);
  font-size: 11px;
}

.brand-inverse .brand-copy strong {
  color: #fff;
}

.brand-inverse .brand-copy small {
  color: #a9bac4;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #354450;
  font-size: 14px;
  font-weight: 650;
}

.nav-links > a:not(.button):hover,
.nav-dropdown summary:hover,
.text-link:hover {
  color: var(--brand);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 7px;
  list-style: none;
  cursor: pointer;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.dropdown-chevron {
  width: 9px;
  height: 6px;
  flex: 0 0 9px;
  align-self: center;
  display: block;
  color: var(--muted);
  background: currentColor;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  font-size: 0;
  transform: rotate(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.nav-dropdown[open] .dropdown-chevron {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 10px);
  left: -18px;
  width: 310px;
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(14, 23, 31, 0.16);
}

.nav-dropdown-menu::before {
  position: absolute;
  top: -11px;
  right: 0;
  left: 0;
  height: 11px;
  content: "";
}

.nav-dropdown-menu a {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  padding: 9px 12px;
  color: var(--ink);
  line-height: 1.35;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible {
  color: var(--brand);
  background: var(--soft-blue);
}

.nav-dropdown-menu .nav-dropdown-primary {
  margin-bottom: 5px;
  border-bottom: 1px solid var(--line);
  border-radius: 4px 4px 0 0;
  color: var(--brand);
  font-weight: 750;
}

.language-dropdown {
  margin-left: 2px;
}

.language-dropdown summary {
  min-width: 112px;
  justify-content: flex-end;
  line-height: 1;
}

.language-menu {
  right: 0;
  left: auto;
  width: 180px;
}

.language-menu a.active {
  color: var(--brand);
  background: var(--soft-blue);
  font-weight: 750;
}

.language-flag {
  width: 22px;
  height: 15px;
  flex: 0 0 22px;
  align-self: center;
  border: 1px solid rgba(14, 23, 31, 0.16);
  object-fit: cover;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
  font-size: 21px;
  cursor: pointer;
}

.button,
button[type="submit"] {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand);
  border-radius: 6px;
  padding: 10px 18px;
  color: #fff;
  background: var(--brand);
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
}

.button:hover,
button[type="submit"]:hover {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
}

.button-small {
  min-height: 38px;
  padding: 8px 14px;
  font-size: 13px;
}

.button-secondary {
  border-color: #a8c3cc;
  color: var(--brand-dark);
  background: #eaf2f4;
}

.button-secondary:hover {
  border-color: #8daeb9;
  color: var(--brand-dark);
  background: #dcebee;
}

.button-light {
  border-color: rgba(255, 255, 255, 0.75);
  color: #fff;
  background: rgba(12, 29, 38, 0.42);
}

.button-light:hover {
  border-color: #fff;
  background: rgba(12, 29, 38, 0.75);
}

.button-quiet {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.button-quiet:hover {
  border-color: var(--line-strong);
  color: var(--ink);
  background: var(--soft);
}

.button-full {
  width: 100%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.text-link {
  color: var(--brand);
  font-size: 14px;
  font-weight: 750;
}

.eyebrow,
.admin-kicker {
  margin-bottom: 12px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #abd6c8;
}

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  overflow: hidden;
  color: #fff;
  background: #18313b;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-color: #18313b;
  background-image: url("/images/site/laboratory-hero.webp");
  background-position: center;
  background-size: cover;
}

.hero-backdrop::after {
  position: absolute;
  inset: 0;
  background: rgba(7, 28, 38, 0.64);
  content: "";
}

.hero-inner {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding-block: 82px 100px;
}

.hero-copy {
  width: min(720px, 72%);
}

.hero h1 {
  color: #fff;
  font-size: 58px;
}

.hero-copy > p {
  max-width: 660px;
  color: #d8e3e7;
  font-size: 19px;
}

.hero-facts {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: #d8e3e7;
  font-size: 13px;
}

.hero-facts span::before {
  margin-right: 8px;
  color: #70c1a5;
  content: "✓";
}

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

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

.trust-grid > div {
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  padding: 24px;
}

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

.trust-grid strong {
  margin-bottom: 4px;
  color: var(--ink-strong);
  font-size: 14px;
}

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

.section {
  padding-block: 74px;
}

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

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

.section-heading > div {
  max-width: 760px;
}

.section-heading h2 {
  margin-bottom: 8px;
}

.section-heading p,
.section-intro {
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading.compact {
  margin-bottom: 24px;
}

.category-showcase {
  overflow: hidden;
  padding-block: 50px;
  background: var(--soft);
}

.category-section-heading {
  margin-bottom: 18px;
}

.category-heading-actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
}

.carousel-controls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.carousel-controls button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  padding: 0;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

.carousel-controls button:hover:not(:disabled),
.carousel-controls button:focus-visible {
  border-color: var(--brand);
  color: #fff;
  background: var(--brand);
}

.carousel-controls button:disabled {
  cursor: default;
  opacity: 0.35;
}

.carousel-controls span {
  display: block;
  font-size: 27px;
  line-height: 1;
  transform: translateY(-1px);
}

.category-carousel {
  min-width: 0;
}

.category-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(205px, 20vw, 235px);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 2px 10px;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.category-track::-webkit-scrollbar {
  display: none;
}

.category-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  scroll-snap-align: start;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.category-card:hover {
  border-color: #a9bbc5;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.category-card-media {
  height: 132px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  padding: 12px;
  background: #fff;
}

.category-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.category-card-body {
  min-height: 84px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 15px 16px 14px;
}

.category-card h3 {
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  font-size: 17px;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.category-card-link {
  color: var(--brand);
  font-size: 12px;
  font-weight: 750;
}

.carousel-hint {
  display: none;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

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

.product-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: #fff;
}

.product-card:hover {
  border-color: #a9bbc5;
  box-shadow: var(--shadow);
}

.product-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #edf1f2;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.025);
}

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

.product-category {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.product-card h2,
.product-card h3 {
  min-height: 46px;
  margin-bottom: 10px;
  font-size: 18px;
}

.product-card p {
  min-height: 68px;
  color: var(--muted);
  font-size: 14px;
}

.product-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 13px;
  color: var(--muted);
  font-size: 12px;
}

.process-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.process-intro {
  align-self: start;
  position: sticky;
  top: 30px;
}

.process-intro p {
  color: var(--muted);
}

.process-list,
.requirement-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li,
.requirement-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding: 25px 0;
}

.process-list li:last-child,
.requirement-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list > li > span,
.requirement-list > li > span {
  color: var(--amber);
  font-size: 13px;
  font-weight: 850;
}

.process-list h3 {
  margin-bottom: 5px;
  font-size: 18px;
}

.process-list p,
.requirement-list p {
  margin: 0;
  color: var(--muted);
}

.application-band {
  padding-block: 64px;
  color: #fff;
  background: var(--brand-dark);
}

.application-band h2 {
  color: #fff;
}

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

.application-list span {
  border: 1px solid #537985;
  padding: 10px 14px;
  color: #e3edef;
  font-size: 13px;
}

.cta-section {
  background: #fff;
}

.cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  border-left: 5px solid var(--amber);
  padding: 10px 0 10px 30px;
}

.cta-layout > div {
  max-width: 760px;
}

.cta-layout h2 {
  margin-bottom: 8px;
}

.cta-layout p {
  margin-bottom: 0;
  color: var(--muted);
}

.page-header {
  padding-block: 60px;
  border-bottom: 1px solid var(--line);
  background: #eef3f4;
}

.page-header h1 {
  max-width: 900px;
  margin-bottom: 12px;
}

.page-header p {
  max-width: 800px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.breadcrumbs {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
}

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

.catalog-toolbar,
.admin-toolbar {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 240px auto auto;
  gap: 10px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  outline: 0;
}

input,
select {
  min-height: 44px;
}

textarea {
  min-height: 124px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(7, 93, 117, 0.12);
}

label {
  display: grid;
  gap: 6px;
  color: #33434f;
  font-size: 13px;
  font-weight: 700;
}

label > span {
  color: var(--red);
}

.category-tabs,
.status-tabs {
  margin-bottom: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-tabs a,
.status-tabs a {
  border: 1px solid var(--line);
  padding: 8px 12px;
  color: #455560;
  background: #fff;
  font-size: 13px;
  font-weight: 700;
}

.category-tabs a.active,
.status-tabs a.active {
  border-color: var(--brand);
  color: #fff;
  background: var(--brand);
}

.catalog-summary {
  margin-bottom: 18px;
  display: flex;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

.catalog-summary strong {
  color: var(--ink);
}

.empty-state {
  border: 1px solid var(--line);
  padding: 54px 30px;
  text-align: center;
  background: var(--soft);
}

.empty-state p {
  color: var(--muted);
}

.empty-state .button-row {
  justify-content: center;
}

.product-hero {
  padding-block: 30px 68px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.product-overview {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 54px;
  align-items: start;
}

.gallery-main {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #eef1f2;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-zoom-lens,
.gallery-zoom-preview {
  display: none;
}

@media (hover: hover) and (pointer: fine) and (min-width: 1100px) {
  .gallery-main[data-gallery-zoom] {
    overflow: visible;
    cursor: zoom-in;
  }

  .gallery-main[data-gallery-zoom] > [data-gallery-main] {
    overflow: hidden;
  }

  .gallery-main.is-zooming {
    z-index: 40;
  }

  .gallery-main.is-zooming .gallery-zoom-lens {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    display: block;
    border: 1px solid rgba(7, 93, 117, 0.75);
    background: rgba(237, 244, 247, 0.36);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.55) inset;
    pointer-events: none;
  }

  .gallery-main.is-zooming .gallery-zoom-preview {
    position: absolute;
    z-index: 3;
    top: -1px;
    left: calc(100% + 18px);
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border: 2px solid var(--brand);
    background: #fff;
    box-shadow: 0 18px 42px rgba(14, 23, 31, 0.2);
    pointer-events: none;
  }

  .gallery-zoom-preview img {
    position: absolute;
    max-width: none;
    object-fit: cover;
  }
}

.gallery-thumbs {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.gallery-thumbs button {
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  background: #fff;
  cursor: pointer;
}

.gallery-thumbs button.active {
  border-color: var(--brand);
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-summary h1 {
  margin-bottom: 14px;
  font-size: 40px;
}

.model-line {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.model-line strong {
  color: var(--ink);
  font-size: 15px;
}

.product-lead {
  color: var(--muted);
  font-size: 17px;
}

.key-spec-grid {
  margin-block: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.key-spec {
  min-height: 86px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px;
  background: var(--soft);
}

.key-spec > span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.key-spec strong {
  margin-top: 5px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 18px;
}

.key-spec small {
  color: var(--muted);
  font-size: 12px;
}

.procurement-notes {
  margin: 24px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  color: var(--muted);
  font-size: 13px;
}

.procurement-notes li {
  margin: 6px 0;
}

.procurement-notes li::before,
.check-list li::before {
  margin-right: 9px;
  color: var(--green);
  content: "✓";
  font-weight: 800;
}

.product-anchor-nav {
  position: sticky;
  z-index: 10;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.product-anchor-nav .container {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.product-anchor-nav a {
  color: #42515d;
  font-size: 13px;
  font-weight: 750;
}

.product-content-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
}

.product-content-grid p {
  color: var(--muted);
}

.application-panel {
  border-left: 4px solid var(--green);
  padding: 22px 26px;
  background: var(--soft);
}

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

.check-list li {
  margin: 9px 0;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}

.feature-list > div {
  min-height: 150px;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  padding: 24px;
  background: #fff;
}

.feature-list span {
  display: block;
  margin-bottom: 22px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 850;
}

.feature-list p {
  margin: 0;
  font-weight: 700;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 54px;
  align-items: start;
}

.specification-panel {
  min-width: 0;
  scroll-margin-top: 84px;
}

.spec-display-group {
  margin-top: 26px;
}

.spec-display-group h3 {
  margin-bottom: 10px;
  border-left: 4px solid var(--brand);
  padding-left: 10px;
  font-size: 17px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table th,
.spec-table td {
  border: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.spec-table th {
  width: 40%;
  background: var(--soft);
  font-size: 13px;
}

.spec-table td {
  font-size: 14px;
}

.spec-unit {
  margin-left: 5px;
  color: var(--muted);
}

.spec-toggle {
  width: 100%;
  min-height: 44px;
  margin-top: 12px;
  border: 1px solid var(--line-strong);
  color: var(--brand);
  background: #fff;
  font-weight: 750;
  cursor: pointer;
}

.spec-disclaimer,
.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.technical-contact {
  margin-top: 24px;
  border-top: 3px solid var(--brand);
  padding: 20px;
  background: var(--soft-blue);
}

.technical-contact > strong {
  display: block;
  margin-bottom: 14px;
  color: var(--ink-strong);
  font-size: 15px;
}

.technical-contact-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.technical-contact-links > a,
.technical-contact-links > div {
  min-width: 0;
  border-left: 1px solid var(--line-strong);
  padding-left: 12px;
}

.technical-contact-links span,
.technical-contact-links b {
  display: block;
}

.technical-contact-links span {
  color: var(--muted);
  font-size: 11px;
}

.technical-contact-links b {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 13px;
}

.technical-contact-links a:hover b {
  color: var(--brand);
}

.technical-contact-summary {
  margin-top: 20px;
  border: 1px solid #cbdde4;
  border-top: 3px solid var(--brand);
  padding: 15px 16px;
}

.technical-contact-summary > strong {
  margin-bottom: 10px;
  font-size: 13px;
}

.technical-contact-summary .technical-contact-links {
  gap: 8px;
}

.technical-contact-summary .technical-contact-links > a,
.technical-contact-summary .technical-contact-links > div {
  padding-left: 9px;
}

.technical-contact-summary .technical-contact-links span {
  font-size: 9px;
}

.technical-contact-summary .technical-contact-links b {
  font-size: 11px;
}

.settings-contact-preview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 0 20px 22px;
}

.settings-contact-preview > div {
  min-width: 0;
  border: 1px solid var(--line);
  padding: 16px;
  background: var(--soft);
}

.settings-contact-preview span,
.settings-contact-preview strong {
  display: block;
}

.settings-contact-preview span {
  color: var(--muted);
  font-size: 11px;
}

.settings-contact-preview strong {
  overflow-wrap: anywhere;
  font-size: 13px;
}

.empty-inline {
  border: 1px solid var(--line);
  padding: 20px;
  color: var(--muted);
  background: var(--soft);
}

.rfq-panel {
  position: sticky;
  top: 76px;
  scroll-margin-top: 76px;
  border: 1px solid var(--line-strong);
  padding: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}

.rfq-panel > p {
  color: var(--muted);
}

.rfq-panel label > span {
  color: var(--red);
}

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

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

.field-label {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: #33434f;
}

.field-label b {
  color: var(--red);
  font-weight: 700;
}

.verification-row {
  display: grid;
  grid-template-columns: minmax(100px, 150px) minmax(120px, 1fr);
  align-items: center;
  gap: 12px;
}

.verification-row strong {
  min-height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  color: var(--ink-strong);
  background: var(--soft);
  font-size: 16px;
}

.inquiry-form > .button-full {
  margin-top: 22px;
}

.inquiry-submit-feedback {
  min-height: 58px;
  display: flex;
  align-items: flex-end;
  margin-top: 16px;
}

.inquiry-submit-feedback .notice,
.inquiry-submit-feedback .alert {
  width: 100%;
  margin: 0;
}

.inquiry-form > .inquiry-submit-feedback + .button-full {
  margin-top: 8px;
}

.inquiry-form button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.bot-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.social-contact-rail {
  position: fixed;
  z-index: 30;
  top: 50%;
  right: 0;
  display: grid;
  gap: 6px;
  transform: translateY(-50%);
}

.footer .social-contact-rail a.social-contact {
  width: 48px;
  min-height: 48px;
  justify-self: end;
  display: grid;
  grid-template-columns: 48px 108px;
  align-items: center;
  overflow: hidden;
  margin: 0;
  border-radius: 6px 0 0 6px;
  color: #fff;
  font-size: inherit;
  box-shadow: 0 8px 22px rgba(14, 23, 31, 0.16);
  transition: width 180ms ease, box-shadow 180ms ease;
}

.footer .social-contact-rail a.social-contact:not(.suppress-hover):hover,
.footer .social-contact-rail a.social-contact:focus-visible {
  width: 156px;
  color: #fff;
  box-shadow: 0 10px 26px rgba(14, 23, 31, 0.24);
}

.footer .social-contact-rail a.social-contact.suppress-hover {
  width: 48px;
}

.footer .social-contact-rail a.social-contact:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.92);
  outline-offset: -4px;
}

.social-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
}

.social-icon img {
  width: 21px;
  height: 21px;
}

.social-label {
  padding-right: 16px;
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.social-facebook {
  background: #1877f2;
}

.social-whatsapp {
  background: #128c7e;
}

.social-youtube {
  background: #ff0000;
}

.social-email {
  background: #5f6b76;
}

.social-contact-status {
  position: absolute;
  top: calc(100% + 10px);
  right: 10px;
  width: max-content;
  max-width: 240px;
  pointer-events: none;
  opacity: 0;
  border-radius: 5px;
  padding: 7px 10px;
  color: #fff;
  background: var(--ink-strong);
  font-size: 12px;
  font-weight: 650;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.social-contact-status.show {
  opacity: 1;
  transform: translateY(0);
}

.related-grid:has(.product-card:only-child) {
  grid-template-columns: minmax(260px, 290px);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}

.contact-guidance h2 {
  margin-bottom: 22px;
}

.requirement-list strong {
  display: block;
  margin-bottom: 3px;
}

.response-note {
  margin-top: 26px;
  border-left: 4px solid var(--amber);
  padding: 18px 20px;
  background: #fff7ed;
}

.response-note p {
  margin: 4px 0 0;
  color: #665444;
  font-size: 14px;
}

.rfq-panel-large {
  position: static;
}

.about-header h1 {
  max-width: 980px;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}

.prose {
  color: var(--muted);
  font-size: 18px;
}

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

.responsibility-grid > div {
  min-height: 250px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px;
  background: #fff;
}

.responsibility-grid span {
  display: block;
  margin-bottom: 46px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 850;
}

.responsibility-grid p {
  color: var(--muted);
  font-size: 14px;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.scope-panel {
  border-top: 4px solid var(--brand);
  padding: 28px;
  background: var(--soft);
}

.notice,
.alert {
  margin-bottom: 20px;
  border: 1px solid #a9d8c7;
  padding: 12px 14px;
  color: #145d47;
  background: #edf8f4;
}

.alert-error {
  border-color: #e6bbbb;
  color: #8a2f2f;
  background: #fff1f1;
}

.footer {
  padding-top: 58px;
  color: #c6d1d7;
  background: #121b23;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
  gap: 50px;
  padding-bottom: 44px;
}

.footer h3 {
  color: #fff;
  font-size: 14px;
}

.footer a:not(.brand) {
  display: block;
  margin: 8px 0;
  color: #c6d1d7;
  font-size: 13px;
}

.footer a:hover {
  color: #fff;
}

.footer p {
  color: #9eafb8;
  font-size: 13px;
}

.footer-brand p {
  max-width: 340px;
  margin-top: 22px;
}

.footer-link {
  color: #8dd1ba !important;
  font-weight: 750;
}

.footer-bottom {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #2b3944;
  color: #8497a2;
  font-size: 11px;
}

/* Admin */
.admin-body {
  background: #f3f5f6;
}

.admin-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
}

.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 24px 18px;
  color: #dbe3e8;
  background: var(--sidebar);
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 8px 24px;
  border-bottom: 1px solid #2f3d48;
}

.admin-brand > span:last-child {
  display: grid;
  line-height: 1.2;
}

.admin-brand strong {
  color: #fff;
  font-size: 16px;
}

.admin-brand small {
  color: #94a5af;
  font-size: 11px;
}

.admin-nav {
  margin-top: 22px;
  display: grid;
  gap: 4px;
}

.admin-nav-label {
  margin: 18px 10px 5px;
  color: #718591;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.admin-nav a {
  border-left: 3px solid transparent;
  padding: 10px 12px;
  color: #c7d2d8;
  font-size: 14px;
  font-weight: 650;
}

.admin-nav a:hover,
.admin-nav a.active {
  border-left-color: #5fc09e;
  color: #fff;
  background: #22313c;
}

.admin-sidebar-footer {
  margin-top: auto;
  border-top: 1px solid #2f3d48;
  padding: 18px 8px 0;
}

.signed-in-user {
  display: block;
  margin-bottom: 8px;
  color: #718591;
  font-size: 11px;
}

.signed-in-user strong {
  display: block;
  overflow: hidden;
  color: #dbe3e8;
  text-overflow: ellipsis;
}

.admin-sidebar-footer > a,
.sidebar-logout {
  width: 100%;
  display: block;
  border: 0;
  padding: 8px 0;
  color: #aab9c1;
  background: transparent;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.admin-main {
  min-width: 0;
  padding: 34px 36px 60px;
}

.admin-page-header {
  margin-bottom: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.admin-page-header h1 {
  margin-bottom: 5px;
  font-size: 31px;
}

.admin-page-header p {
  margin: 0;
  color: var(--muted);
}

.admin-header-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-back {
  display: block;
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 750;
}

.metric-grid {
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.metric {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand);
  padding: 20px;
  background: #fff;
}

.metric-attention {
  border-top-color: var(--amber);
}

.metric > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.metric strong {
  margin-block: auto;
  color: var(--ink-strong);
  font-size: 38px;
}

.metric small {
  color: var(--muted);
  font-size: 11px;
}

.admin-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 18px;
  align-items: start;
}

.admin-panel {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
}

.panel-heading {
  min-height: 72px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 18px 20px;
}

.panel-heading h2 {
  margin-bottom: 3px;
  font-size: 18px;
}

.panel-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.panel-heading > a {
  color: var(--brand);
  font-size: 13px;
  font-weight: 750;
}

.quick-actions {
  padding-bottom: 8px;
}

.quick-actions > a {
  display: grid;
  border-bottom: 1px solid var(--line);
  padding: 16px 20px;
}

.quick-actions > a:last-child {
  border-bottom: 0;
}

.quick-actions strong {
  font-size: 14px;
}

.quick-actions span {
  color: var(--muted);
  font-size: 12px;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 13px;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--line);
  padding: 13px 16px;
  text-align: left;
  vertical-align: middle;
}

.admin-table th {
  color: #687782;
  background: #f7f9fa;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
}

.admin-table tbody tr:last-child td {
  border-bottom: 0;
}

.admin-table tbody tr:hover {
  background: #fbfcfc;
}

.admin-table td > span:not(.status-badge),
.table-primary + span {
  display: block;
  max-width: 320px;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.table-primary {
  color: var(--ink-strong);
  font-weight: 750;
}

.table-primary:hover,
.table-actions a:hover {
  color: var(--brand);
}

.table-product {
  min-width: 280px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  align-items: center;
}

.table-product img {
  width: 58px;
  height: 48px;
  border: 1px solid var(--line);
  object-fit: cover;
  background: var(--soft);
}

.table-actions {
  white-space: nowrap;
}

.table-actions a {
  margin-left: 12px;
  color: var(--brand);
  font-weight: 700;
}

.table-empty {
  padding: 35px 20px;
  color: var(--muted);
  text-align: center;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 8px;
  color: #53636e;
  background: #f2f5f6;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-new,
.status-draft {
  border-color: #d7c29f;
  color: #805514;
  background: #fff7e8;
}

.status-contacted,
.status-qualified {
  border-color: #a8c6d1;
  color: #245c70;
  background: #edf6f8;
}

.status-quoted,
.status-active {
  border-color: #a9d4c4;
  color: #23634d;
  background: #edf8f4;
}

.status-won {
  border-color: #92c9a9;
  color: #185e39;
  background: #e8f7ee;
}

.status-lost {
  border-color: #dfb4b4;
  color: #8e3434;
  background: #fff0f0;
}

.admin-toolbar {
  grid-template-columns: minmax(240px, 420px) 180px auto auto;
}

.form-section {
  margin-bottom: 18px;
}

.form-section > .form-grid {
  padding: 22px;
}

.section-number {
  display: block;
  margin-bottom: 5px;
  color: var(--amber);
  font-size: 10px;
  font-weight: 850;
}

.narrow-form {
  max-width: 860px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.editor-fieldset {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
}

.editor-fieldset-contents {
  display: contents;
}

.editor-fieldset:disabled input,
.editor-fieldset:disabled select,
.editor-fieldset:disabled textarea,
.editor-fieldset:disabled button {
  cursor: not-allowed;
}

.product-media-manager {
  margin-top: 18px;
  padding-bottom: 20px;
}

.product-media-manager .media-gallery-admin,
.product-media-manager > form,
.product-media-manager > .form-note {
  margin: 20px;
}

.product-media-manager > form .button {
  margin-top: 12px;
}

.user-editor {
  max-width: 1050px;
}

.permission-editor {
  margin-bottom: 18px;
}

.permission-presets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding: 14px 20px;
  background: #f8fafb;
}

.permission-presets button {
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  padding: 7px 11px;
  color: var(--brand);
  background: #fff;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}

.permission-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 20px;
}

.permission-groups fieldset {
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  padding: 14px;
}

.permission-groups legend {
  padding-inline: 6px;
  color: var(--ink-strong);
  font-size: 13px;
  font-weight: 800;
}

.permission-option {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin: 8px 0;
  border-bottom: 1px solid #edf1f3;
  padding: 0 0 10px;
}

.permission-option:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.permission-option input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
  accent-color: var(--brand);
}

.permission-option span {
  display: grid;
}

.permission-option strong {
  font-size: 13px;
}

.permission-option small,
.form-grid label > small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.permission-summary {
  max-width: 560px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.permission-summary span {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2px 6px;
  color: #52636e;
  background: #f7f9fa;
  font-size: 10px;
  white-space: nowrap;
}

.forbidden-panel {
  max-width: 680px;
  margin: 80px auto;
  padding: 40px;
}

.forbidden-panel p {
  color: var(--muted);
}

.checkbox-field,
.toggle-field {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-field input,
.toggle-field input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--brand);
}

.product-editor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 18px;
  align-items: start;
}

.product-editor-main {
  min-width: 0;
}

.product-editor-sidebar {
  position: sticky;
  top: 20px;
  display: grid;
  gap: 14px;
}

.publish-panel,
.editor-checklist {
  padding: 20px;
}

.publish-panel h2,
.editor-checklist h2 {
  font-size: 17px;
}

.publish-panel > label {
  margin-bottom: 14px;
}

.toggle-field {
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  padding-bottom: 13px;
}

.toggle-field span {
  display: grid;
  color: var(--ink);
}

.toggle-field small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.publish-panel .button {
  margin-top: 8px;
}

.editor-checklist ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 12px;
}

.editor-checklist li {
  margin: 8px 0;
}

.editor-checklist li::before {
  margin-right: 8px;
  color: #a8b4bb;
  content: "○";
}

.editor-checklist li.complete {
  color: var(--green);
}

.editor-checklist li.complete::before {
  content: "✓";
}

.media-gallery-admin {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 20px 20px 0;
}

.media-gallery-admin article {
  border: 1px solid var(--line);
}

.media-gallery-admin img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}

.media-gallery-admin article > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding: 8px 10px;
  color: var(--muted);
  font-size: 10px;
}

.danger-link {
  border: 0;
  padding: 0;
  color: var(--red);
  background: transparent;
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
}

.upload-dropzone {
  margin: 20px;
  display: grid;
  justify-items: center;
  border: 1px dashed #9cadb7;
  padding: 26px;
  color: var(--ink);
  background: #f8fafb;
  text-align: center;
  cursor: pointer;
}

.upload-dropzone input {
  width: auto;
  min-height: auto;
  margin-top: 13px;
}

.upload-dropzone span,
.upload-dropzone small {
  color: var(--muted);
  font-size: 11px;
}

.spec-editor > .panel-heading {
  align-items: center;
}

#spec-groups {
  padding: 0 20px 20px;
}

.spec-editor-group {
  margin-top: 18px;
  border: 1px solid var(--line);
  background: #f8fafb;
}

.spec-group-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid var(--line);
  padding: 14px;
}

.spec-group-header > label {
  width: min(420px, 100%);
}

.translation-language-list {
  padding: 0 20px 20px;
}

.translation-language-row {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 11px 0;
}

.translation-language-row:last-child {
  border-bottom: 0;
}

.translation-language-row > div,
.translation-language-action {
  display: flex;
  align-items: center;
  gap: 10px;
}

.translation-language-row img,
.translation-language-tabs img {
  width: 22px;
  height: 15px;
  border: 1px solid var(--line);
  object-fit: cover;
}

.translation-language-code {
  width: 34px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
}

.translation-language-row strong,
.translation-language-row small,
.translation-language-action span,
.translation-language-action small {
  display: block;
}

.translation-language-row small,
.translation-language-action small {
  color: var(--muted);
  font-size: 10px;
}

.translation-language-action {
  min-width: 132px;
  justify-content: space-between;
  color: var(--brand);
  font-size: 12px;
  font-weight: 750;
}

.translation-language-action::after {
  content: "›";
  font-size: 20px;
}

.translation-language-action.is-complete small {
  color: var(--green);
}

.translation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 0 20px 22px;
}

.translation-panel {
  min-width: 0;
  display: grid;
  gap: 13px;
  border: 1px solid var(--line);
  padding: 18px;
  background: #f8fafb;
}

.translation-panel legend {
  padding: 0 8px;
  color: var(--ink-strong);
  font-weight: 800;
}

.translation-panel legend small {
  margin-left: 8px;
  color: var(--muted);
  font-weight: 500;
}

.row-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.spec-editor-row {
  display: grid;
  grid-template-columns: 1.05fr 1.25fr 0.48fr 0.58fr auto;
  gap: 9px;
  align-items: end;
  border-bottom: 1px solid var(--line);
  padding: 13px 14px;
}

.spec-editor-row label {
  color: var(--muted);
  font-size: 10px;
}

.spec-editor-row input,
.spec-editor-row select {
  min-height: 40px;
  padding: 8px 9px;
  font-size: 12px;
}

.icon-action,
.danger-action,
.add-row-action {
  min-height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 5px;
  padding: 8px 10px;
  color: var(--ink);
  background: #fff;
  font-size: 11px;
  font-weight: 750;
  cursor: pointer;
}

.icon-action {
  width: 38px;
  padding: 0;
  font-size: 16px;
}

.danger-action {
  border-color: #dfb8b8;
  color: var(--red);
}

.add-row-action {
  margin: 12px 14px;
  color: var(--brand);
}

.translation-language-tabs {
  display: flex;
  align-items: stretch;
  gap: 6px;
  margin-bottom: 18px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line-strong);
}

.translation-language-tabs > a {
  min-width: 132px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2px 8px;
  border: 1px solid var(--line);
  border-bottom: 0;
  padding: 10px 12px;
  color: var(--ink);
  background: #f6f8f9;
  white-space: nowrap;
}

.translation-language-tabs > a.active {
  border-top: 3px solid var(--brand);
  padding-top: 8px;
  color: var(--brand);
  background: #fff;
}

.translation-language-tabs span {
  font-size: 12px;
  font-weight: 800;
}

.translation-language-tabs small {
  grid-column: 2;
  color: var(--muted);
  font-size: 9px;
}

.translation-language-tabs .translation-manage-link {
  min-width: auto;
  display: flex;
  margin-left: auto;
  border: 0;
  color: var(--brand);
  background: transparent;
  font-size: 11px;
  font-weight: 750;
}

.translation-workspace {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.4fr);
  gap: 18px;
  align-items: start;
}

.translation-source {
  position: sticky;
  top: 20px;
  border: 1px solid var(--line);
  background: #f7f9fa;
}

.translation-pane-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 16px 18px;
}

.translation-pane-heading span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.translation-pane-heading strong {
  font-size: 13px;
}

.translation-source-fields {
  padding: 4px 18px 18px;
}

.translation-source-fields > div {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.translation-source-fields > div:last-child {
  border-bottom: 0;
}

.translation-source-fields small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

.translation-source-fields p {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.55;
}

.preserve-lines {
  white-space: pre-line;
}

.translation-target {
  min-width: 0;
}

.translation-spec-list {
  padding: 0 20px 20px;
}

.translation-spec-list article {
  display: grid;
  grid-template-columns: minmax(170px, 0.7fr) minmax(0, 1.3fr);
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.translation-spec-list article:last-child {
  border-bottom: 0;
}

.translation-spec-source {
  display: grid;
  align-content: start;
  gap: 4px;
  padding: 7px 0;
}

.translation-spec-source small {
  color: var(--brand);
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
}

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

.translation-spec-source span {
  color: var(--muted);
  font-size: 11px;
}

.translation-spec-source i {
  font-style: normal;
}

.translation-spec-fields {
  display: grid;
  grid-template-columns: 0.8fr 1fr 1fr;
  gap: 9px;
}

.translation-form-actions {
  margin-bottom: 36px;
}

.language-settings-intro,
.language-settings-list,
.language-add-panel {
  margin-bottom: 18px;
}

.language-settings-intro > p {
  margin: 0;
  padding: 18px 20px;
  color: var(--muted);
  font-size: 12px;
}

.language-settings-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr 1.25fr 90px 90px auto;
  gap: 10px;
  align-items: end;
  border-bottom: 1px solid var(--line);
  padding: 14px 20px;
}

.language-settings-row:last-child {
  border-bottom: 0;
}

.language-active {
  min-height: 42px;
}

.language-row-status {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.language-add-panel > form {
  padding: 20px;
}

.inquiry-title-line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.inquiry-title-line h1 {
  margin-bottom: 0;
}

.inquiry-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

.inquiry-detail-grid > div,
.inquiry-detail-grid > aside {
  display: grid;
  gap: 18px;
}

.inquiry-message > p {
  padding: 22px;
  white-space: pre-line;
}

.inquiry-product {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  align-items: center;
  padding: 20px;
}

.inquiry-product img {
  width: 110px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
}

.inquiry-product span {
  color: var(--brand);
  font-size: 11px;
  font-weight: 850;
}

.inquiry-product h3 {
  margin: 4px 0;
}

.inquiry-product a {
  color: var(--brand);
  font-size: 12px;
  font-weight: 750;
}

.contact-record dl {
  margin: 0;
  padding: 8px 20px 18px;
}

.contact-record dl > div {
  border-bottom: 1px solid var(--line);
  padding: 11px 0;
}

.contact-record dl > div:last-child {
  border-bottom: 0;
}

.contact-record dt {
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-record dd {
  margin: 2px 0 0;
  overflow-wrap: anywhere;
  font-size: 13px;
}

.inquiry-detail-grid aside form {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.login-page {
  min-height: 100vh;
  background: var(--sidebar);
}

.login-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(460px, 1.1fr);
}

.login-context {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px;
  color: #c9d5db;
  background: var(--brand-dark);
}

.login-context > div:last-child {
  max-width: 620px;
}

.login-context h1 {
  color: #fff;
}

.login-context p {
  color: #b5c6ce;
  font-size: 18px;
}

.login-form-wrap {
  display: grid;
  place-items: center;
  padding: 40px;
  background: #f4f6f7;
}

.login-form {
  width: min(420px, 100%);
}

.login-form > p {
  color: var(--muted);
}

.login-form form {
  display: grid;
  gap: 16px;
  margin-top: 26px;
}

.login-back {
  display: inline-block;
  margin-top: 22px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 750;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

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

  .product-editor-sidebar {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

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

  .spec-editor-row {
    grid-template-columns: 1fr 1.2fr 0.5fr 0.65fr;
  }

  .spec-row-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
}

@media (max-width: 850px) {
  .utility-inner span:last-child {
    display: none;
  }

  .nav {
    min-height: 70px;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    border-bottom: 1px solid var(--line);
    padding: 14px 20px 20px;
    background: #fff;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    padding: 10px 0;
  }

  .nav-dropdown summary {
    width: 100%;
    min-height: 42px;
    justify-content: space-between;
    padding: 8px 0;
  }

  .nav-dropdown-menu,
  .language-menu {
    position: static;
    width: 100%;
    margin: 2px 0 8px;
    border-radius: 5px;
    box-shadow: none;
  }

  .language-dropdown {
    margin-left: 0;
  }

  .language-dropdown summary {
    justify-content: flex-start;
  }

  .language-dropdown summary .dropdown-chevron {
    margin-left: auto;
  }

  .hero,
  .hero-inner {
    min-height: 580px;
  }

  .hero-copy {
    width: 100%;
  }

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

  .process-layout,
  .product-overview,
  .product-content-grid,
  .product-detail-layout,
  .contact-layout,
  .about-layout,
  .scope-grid {
    grid-template-columns: 1fr;
  }

  .process-intro,
  .rfq-panel {
    position: static;
  }

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

  .permission-groups {
    grid-template-columns: 1fr;
  }

  .product-anchor-nav {
    overflow-x: auto;
  }

  .product-anchor-nav .container {
    width: max-content;
    min-width: 100%;
  }

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

  .cta-layout {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .admin-sidebar {
    position: static;
    height: auto;
  }

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

  .admin-nav-label {
    grid-column: 1 / -1;
  }

  .admin-sidebar-footer {
    display: flex;
    justify-content: space-between;
  }

  .admin-sidebar-footer > a,
  .admin-sidebar-footer form {
    width: auto;
  }

  .admin-content-grid,
  .inquiry-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .login-context {
    min-height: 310px;
    padding: 32px;
  }
}

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

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 27px;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .hero,
  .hero-inner {
    min-height: 560px;
  }

  .hero-inner {
    padding-block: 64px 74px;
  }

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

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

  .trust-grid,
  .product-grid,
  .feature-list,
  .responsibility-grid,
  .footer-grid,
  .metric-grid,
  .product-editor-sidebar,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .social-contact-rail {
    top: auto;
    right: 8px;
    bottom: 10px;
    display: flex;
    gap: 5px;
    transform: none;
  }

  .footer .social-contact-rail a.social-contact {
    width: 44px;
    min-height: 44px;
    grid-template-columns: 44px 104px;
    border-radius: 6px;
  }

  .footer .social-contact-rail a.social-contact:not(.suppress-hover):hover,
  .footer .social-contact-rail a.social-contact:focus-visible {
    width: 148px;
  }

  .footer .social-contact-rail a.social-contact.suppress-hover {
    width: 44px;
  }

  .social-icon {
    width: 44px;
    height: 44px;
  }

  .social-contact-status {
    top: auto;
    right: 0;
    bottom: calc(100% + 8px);
  }

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

  .section {
    padding-block: 54px;
  }

  .section-heading,
  .admin-page-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .category-showcase {
    padding-block: 36px;
  }

  .category-section-heading {
    gap: 14px;
  }

  .category-section-heading h2 {
    margin-bottom: 0;
    font-size: 27px;
  }

  .category-section-heading p {
    display: none;
  }

  .category-heading-actions {
    width: 100%;
    justify-content: space-between;
  }

  .category-track {
    grid-auto-columns: min(74vw, 270px);
    gap: 12px;
  }

  .category-card-media {
    height: 125px;
  }

  .carousel-hint {
    display: block;
  }

  .product-card h2,
  .product-card h3,
  .product-card p {
    min-height: 0;
  }

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

  .technical-contact-links {
    grid-template-columns: 1fr;
  }

  .settings-contact-preview {
    grid-template-columns: 1fr;
  }

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

  .product-overview {
    gap: 32px;
  }

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

  .product-anchor-nav .container {
    gap: 20px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 18px;
  }

  .admin-main {
    padding: 26px 14px 50px;
  }

  .admin-header-actions {
    width: 100%;
  }

  .admin-header-actions .button {
    flex: 1;
  }

  .admin-nav {
    grid-template-columns: 1fr;
  }

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

  .spec-group-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .translation-workspace {
    grid-template-columns: 1fr;
  }

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

  .translation-source {
    position: static;
  }

  .translation-spec-list article,
  .translation-spec-fields,
  .language-settings-row {
    grid-template-columns: 1fr;
  }

  .language-row-status {
    justify-content: flex-start;
  }

  .spec-row-actions {
    grid-column: auto;
    justify-content: flex-start;
  }

  .login-form-wrap {
    padding: 32px 20px;
  }
}
