:root {
  --ink: #142033;
  --muted: #637184;
  --line: #d9e2ec;
  --surface: #ffffff;
  --soft: #f3f7fb;
  --panel: #eaf4fc;
  --blue: #0066cc;
  --blue-dark: #004b95;
  --red: #c62828;
  --steel: #2c3d52;
  --shadow: 0 18px 42px rgba(22, 41, 64, 0.12);
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
}

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

button,
input {
  font: inherit;
}

svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(20, 32, 51, 0.05);
}

[data-site-header] {
  display: block;
  min-height: 188px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  height: 36px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  color: #dfefff;
  background: var(--steel);
  font-size: 13px;
  overflow: hidden;
}

.nav-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand-mark,
.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  height: 80px;
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-logo-group {
  height: 98px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.brand-tagline {
  display: block;
  font-size: 11px;
  line-height: 14px;
  height: 14px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 2px;
  font-weight: 400;
  white-space: nowrap;
}

.footer-brand .site-logo {
  height: 56px;
}

.site-search {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  max-width: 480px;
  margin-left: auto;
}

.site-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  padding: 12px 14px;
  outline: none;
}

.site-search button {
  border: 0;
  padding: 0 16px;
  color: #fff;
  background: var(--blue);
  cursor: pointer;
}

.main-menu {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  background: #fff;
  height: 54px;
}

.main-menu a {
  height: 54px;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  align-content: center;
  padding: 7px 10px 6px;
  color: var(--ink);
  background: #fff;
  border-left: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.05;
  overflow: hidden;
}

.main-menu a:first-child {
  border-left: 0;
}

.main-menu a span {
  display: inline;
  font-size: 10px;
  background: #eef2f7;
  color: var(--ink);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 2px;
  margin-top: 3px;
  vertical-align: middle;
  font-weight: 600;
  line-height: 1;
}

.main-menu a:hover,
.main-menu a.is-active {
  color: #fff;
  background: var(--blue);
}

.main-menu a:hover span,
.main-menu a.is-active span {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

/* Language dropdown */
.lang-dropdown {
  position: relative;
}

.lang-dropdown-trigger {
  min-width: 92px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  background: #fff;
  color: #0F172A;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.14);
  transition: background 0.2s, transform 0.2s;
}

.lang-dropdown-trigger:hover {
  background: #0066cc;
  color: #fff;
  border-color: #0F172A;
  transform: translateY(-1px);
}

.lang-dropdown.is-open .lang-dropdown-trigger {
  background: #0066cc;
  color: #fff;
  border-color: #0F172A;
  box-shadow: 0 12px 28px rgba(0, 102, 204, 0.26);
}

.lang-dropdown-trigger svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.lang-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: calc(50% + 16px);
  right: auto;
  min-width: 218px;
  padding: 20px 0 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(20, 32, 51, 0.16);
  z-index: 100;
  overflow: visible;
  transform: translateX(-50%);
}

.lang-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: translateX(-50%) rotate(45deg);
}

.lang-dropdown.is-open .lang-dropdown-menu { display: block; }

.lang-dropdown-menu button {
  display: block;
  width: 100%;
  padding: 17px 32px;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s;
}

.lang-dropdown-menu button:hover {
  color: #fff;
  background: #0066cc;
}

.lang-dropdown-menu button.is-active {
  color: #fff;
  background: #0066cc;
  font-weight: 800;
}

.lang-dropdown-menu button:first-child {
  margin-top: 0;
}

[data-lang-desktop] {
  border-left: 0;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
}

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

.section {
  padding: 74px 0;
}

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

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

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

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

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

h1 {
  max-width: 840px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  margin-bottom: 0;
}

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

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero {
  height: 590px;
  min-height: 590px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(5, 31, 57, 0.98), rgba(0, 102, 204, 0.84)),
    #123451;
}

.hero-inner {
  width: min(1180px, calc(100% - 40px));
  height: 100%;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 42px;
  align-items: center;
}

.hero-copy {
  max-width: 720px;
}

.hero-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

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

.primary-button,
.secondary-button,
.ghost-on-light,
.quote-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.primary-button,
.quote-button {
  color: #fff;
  background: var(--blue);
}

.secondary-button {
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: #fff;
}

.ghost-on-light {
  border: 1px solid var(--line);
  color: var(--blue-dark);
  background: #fff;
}

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

.hero-visual {
  position: relative;
  min-width: 0;
}

.sheet-window {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 28px 70px rgba(0, 20, 44, 0.32);
  transform: rotate(1deg);
}

.sheet-top {
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: #304257;
  background: #eef4fa;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.sheet-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #93a5b8;
}

.sheet-top strong {
  margin-left: 8px;
}

.sheet-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.12fr 1fr 0.58fr 1fr;
  color: #1d2b3b;
  font-size: 11px;
}

.sheet-grid div {
  min-height: 34px;
  padding: 9px 10px;
  border-right: 1px solid #dde6ee;
  border-bottom: 1px solid #dde6ee;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sheet-grid .sheet-head {
  color: #50677e;
  background: #f7fafc;
  font-weight: 800;
}

.hero-float-card {
  position: absolute;
  right: 22px;
  bottom: -24px;
  width: min(240px, 70%);
  padding: 18px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-float-card strong {
  display: block;
  color: var(--blue);
  font-size: 30px;
  line-height: 1;
}

.hero-float-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.centered-heading {
  max-width: 820px;
  text-align: center;
}

.centered-heading p {
  margin-bottom: 0;
}

.brand-wall-section {
  padding-bottom: 56px;
}

.brand-wall-section .centered-heading {
  width: min(1420px, calc(100% - 40px));
  max-width: min(1420px, calc(100% - 40px));
}

.brand-wall-section .centered-heading h2,
.brand-wall-section .centered-heading p {
  white-space: nowrap;
}

.brand-section-title {
  width: 100%;
  max-width: none !important;
  white-space: nowrap;
  font-size: 30px;
  text-align: center;
}

.brand-section-subtitle {
  width: 100%;
  max-width: none !important;
  white-space: nowrap;
  font-size: 14px;
  color: #6B7280;
  text-align: center;
  margin-top: 12px;
}

.brand-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.brand-logo-tile {
  min-height: 104px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(20, 32, 51, 0.05);
}

.brand-logo-tile span {
  color: var(--steel);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-tile-logo {
  max-width: 80%;
  max-height: 64px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-logo-tile:nth-child(1) span,
.brand-logo-tile:nth-child(2) span,
.brand-logo-tile:nth-child(4) span {
  color: var(--blue);
}

.brand-disclaimer {
  width: min(1180px, calc(100% - 40px));
  margin: 18px auto 0;
  color: #8a97a6;
  font-size: 12px;
  text-align: center;
}

.category-grid,
.product-grid,
.proof-grid,
.inventory-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

.category-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}

.category-card,
.product-card,
.proof-grid article,
.quote-card,
.inventory-card,
.testimonial-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

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

.inventory-card {
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(20, 32, 51, 0.08);
}

.inventory-card-top {
  min-height: 96px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 40, 66, 0.96), rgba(0, 102, 204, 0.82)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 34px);
}

.inventory-card-top span {
  font-weight: 800;
}

.inventory-card-top strong {
  align-self: flex-start;
  padding: 7px 9px;
  color: var(--ink);
  background: #fff;
  border-radius: 999px;
  font-size: 11px;
  white-space: nowrap;
}

.inventory-card-body {
  padding: 24px;
}

.inventory-card-body p {
  margin-bottom: 8px;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.inventory-card-body h3 {
  font-size: 28px;
}

.inventory-cat-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--blue);
  background: #EBF2FF;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.inventory-copy {
  display: block;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 10px;
  font-size: 14px;
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
}

.testimonial-card {
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 3px rgba(20, 32, 51, 0.06);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(20, 32, 51, 0.12);
}

.testimonial-card blockquote {
  min-height: 126px;
  margin: 0 0 22px;
  color: #2d3c4f;
  line-height: 1.65;
}

.testimonial-card h3 {
  margin-bottom: 4px;
  color: var(--blue);
}

.testimonial-card p {
  margin-bottom: 0;
  font-size: 13px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.flag-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.category-card {
  display: block;
  min-height: 210px;
  padding: 26px;
  text-align: center;
}

.category-card svg {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  color: var(--ink);
}

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

.product-grid {
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
}

.related-grid {
  max-width: 900px;
  margin: 0;
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  height: auto;
  padding: 16px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: #3B82F6;
  box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.1),
              0 8px 10px -6px rgba(59, 130, 246, 0.1);
}

.product-visual {
  position: relative;
  height: 150px;
  display: grid;
  place-items: center;
  gap: 10px;
  color: var(--blue);
  background: #fff;
  font-weight: 900;
}

.card-brand-logo {
  position: absolute;
  top: -6px;
  left: -5px;
  max-width: 74px;
  max-height: 34px;
  padding: 4px 6px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: 0 8px 18px rgba(20, 32, 51, 0.08);
}

.product-visual svg {
  width: 58px;
  height: 58px;
}

.brand-visual-logo {
  max-width: 140px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.product-main-image {
  max-width: 72%;
  max-height: 112px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.detail-visual .brand-visual-logo {
  max-width: 220px;
  max-height: 140px;
}

.product-body {
  padding: 10px 0 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 110px;
}

.card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0;
  margin-bottom: 4px;
  font-size: 13px;
  line-height: 1.4;
}
.card-meta span { white-space: nowrap; }
.card-meta-brand b {
  color: var(--ink);
  font-weight: 700;
}
.card-meta i {
  font-style: normal;
  color: #6B7280;
  font-weight: 400;
}
.card-meta b {
  color: #374151;
  font-weight: 500;
}

.product-category {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  height: 18px;
  margin-bottom: 8px;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

.product-partno {
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
  letter-spacing: 0;
  word-break: break-all;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  min-height: 52.8px;
  overflow: hidden;
}

.model-bubble {
  display: inline-block;
  padding: 3px 10px;
  background: #eef3f8;
  border-radius: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-desc {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  height: 19px;
  overflow: hidden;
}

.product-body dl {
  display: grid;
  gap: 8px;
  margin: 8px 0 18px;
}

.product-body dl div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 8px;
}

dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

dd {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.product-body dl div:first-child dd {
  color: var(--red);
}

.quote-button {
  margin-top: auto;
}

.testimonials-section {
  background: #fff;
}

.proof-strip {
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='40'%3E%3Cpath d='M0 0h40v40H0z' fill='none'/%3E%3Cpath d='M40 0v40M0 40h40' stroke='%230066cc' stroke-opacity='.06' stroke-width='.5'/%3E%3C/svg%3E"),
    var(--soft);
}

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

.proof-grid article {
  padding: 24px;
  text-align: center;
}

.proof-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.proof-icon-badge svg {
  width: 24px;
  height: 24px;
  color: #fff;
  margin-bottom: 0;
}

.proof-icon-badge.badge-blue   { background: #0066cc; }
.proof-icon-badge.badge-green  { background: #2e844a; }
.proof-icon-badge.badge-teal   { background: #00838f; }
.proof-icon-badge.badge-orange { background: #d97706; }

.proof-grid h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.proof-grid p {
  font-size: 13px;
  line-height: 1.55;
  color: #666;
  margin: 0;
}

.page-hero {
  height: 360px;
  display: flex;
  align-items: center;
  padding: 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5, 31, 57, 0.95), rgba(0, 102, 204, 0.82)),
    #123451;
}

.page-hero .section-inner {
  display: grid;
  align-content: center;
  min-height: 220px;
}

.page-hero .eyebrow {
  min-height: 18px;
  margin-bottom: 20px;
}

.page-hero h1 {
  max-width: 780px;
  min-height: 150px;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  font-size: clamp(44px, 4.6vw, 64px);
  line-height: 1.12;
}

.page-hero p:not(.eyebrow) {
  min-height: 28px;
  margin-bottom: 0;
}

.page-hero p,
.page-hero .eyebrow {
  color: #FFFFFF;
}

html[lang="en"] .page-hero .hero-section-title {
  max-width: 850px;
  min-height: 226px;
  margin-bottom: 14px;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.35;
}

html[lang="en"] .page-hero .hero-section-subtitle {
  color: #fff;
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.list-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding: 14px 18px;
  color: var(--steel);
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
  font-weight: 800;
}

/* ── Product Detail Page (PDP) ── */

.detail-page {
  padding: 40px 0 60px;
  background: var(--soft);
}

/* Breadcrumb */
.pdp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
}
.pdp-breadcrumb a {
  color: var(--blue);
  text-decoration: none;
}
.pdp-breadcrumb a:hover { text-decoration: underline; }
.pdp-sep { color: #c0c0c0; font-size: 11px; font-weight: 300; line-height: 1; display: inline-flex; align-items: center; user-select: none; }
.pdp-breadcrumb strong { color: var(--ink); font-weight: 700; }

/* Two-column layout */
.pdp-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

/* Gallery */
.pdp-gallery {
  position: sticky;
  top: 20px;
}
.pdp-main-visual {
  min-height: 380px;
  padding: 24px;
  display: grid;
  place-items: center;
  gap: 14px;
  color: var(--blue);
  background: linear-gradient(135deg, #ffffff, #eaf3fb);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 34px;
  font-weight: 900;
}
.pdp-main-visual svg { width: 100px; height: 100px; }
.pdp-main-visual .brand-visual-logo { max-width: 200px; max-height: 120px; }
.pdp-product-img {
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
  border-radius: 4px;
}

/* Info panel */
.pdp-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Title block */
.pdp-title-block { margin-bottom: 12px; }
.pdp-jump-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  width: 100%;
  margin: 16px 0 24px;
}
.pdp-jump-link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: #4b5563;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: none;
  transition: color 0.22s ease, border-color 0.22s ease, background 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.pdp-jump-link:hover {
  color: #1d4ed8;
  border-color: #3b82f6;
  background: #eff6ff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.08);
  transform: translateY(-1px);
}
.pdp-jump-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  flex-shrink: 0;
}
.pdp-jump-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.55;
}
.pdp-jump-link:hover .pdp-jump-icon {
  color: #3b82f6;
}
.pdp-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.pdp-brand-label {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0;
}
.pdp-model-heading {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--ink);
  line-height: 1.2;
  margin: 0;
}
.pdp-part-number {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: #5b6472;
  line-height: 1.45;
}
.pdp-category-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  background: #eef2f7;
  color: #667;
}

/* Description */
.pdp-description {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* RFQ button */
.pdp-rfq-block { margin-top: 4px; }
.pdp-rfq-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--blue);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
.pdp-rfq-button:hover { background: #004fa3; }
.pdp-rfq-button svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Trust badges */
.pdp-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: #fff;
}
.pdp-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}
.pdp-trust-badge svg { width: 28px; height: 28px; color: var(--blue); }
.pdp-trust-badge span { font-size: 11px; font-weight: 600; color: #667; line-height: 1.4; }

/* Tabs section */
/* PDP Sections */
.pdp-section {
  padding: 40px 0;
  background: #fff;
  border-top: 1px solid var(--line);
  scroll-margin-top: 88px;
}
.pdp-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 24px;
  list-style: none;
}
.pdp-section-title::-webkit-details-marker {
  display: none;
}
.pdp-collapsible > .pdp-section-title {
  cursor: pointer;
}
.pdp-collapsible > .pdp-section-title::after {
  content: "+";
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  font-size: 18px;
  line-height: 1;
}
.pdp-collapsible[open] > .pdp-section-title::after {
  content: "-";
}
.pdp-collapsible:not([open]) > .pdp-section-title {
  margin-bottom: 0;
}

/* Sub-tabs (inside Technical Details) */
.pdp-subtabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
}
.pdp-subtab {
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 500;
  color: #5b6472;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.pdp-subtab:hover { color: var(--blue-dark); }
.pdp-subtab.active {
  color: var(--blue);
  font-weight: 600;
  border-bottom-color: var(--blue);
}

.pdp-subtab-panel { display: none; }
.pdp-subtab-panel.active { display: block; }

/* Features list */
.pdp-features-list {
  margin: 0;
  padding-left: 22px;
  color: #444;
  line-height: 2;
}
.pdp-features-list li { font-size: 14px; }

/* Feature table */
.pdp-feature-table {
  width: 100%;
  border-collapse: collapse;
  color: #243244;
}
.pdp-feature-table tr {
  border-bottom: 1px solid #e5e7eb;
}
.pdp-feature-table tr.alt {
  background: #f9fafb;
}
.pdp-feature-table td {
  padding: 14px 24px;
  font-size: 15px;
  line-height: 1.65;
  vertical-align: top;
}
.pdp-feature-table td:first-child {
  width: 42%;
  color: #374151;
  font-weight: 500;
}
.pdp-feature-table tr.pdp-indent td:first-child {
  padding-left: 42px;
  font-weight: 500;
}
.pdp-feature-table .pdp-spec-subgroup {
  border-bottom: none;
}
.pdp-feature-table .pdp-spec-subgroup td {
  padding-top: 22px;
  color: var(--ink);
  background: #fff;
  font-size: 15px;
  font-weight: 800;
}
.pdp-feature-table td:last-child {
  color: #111827;
  font-weight: 600;
}
.pdp-feature-table sup,
.pdp-spec-table sup {
  font-size: 0.7em;
  line-height: 0;
  vertical-align: super;
}

/* Spec table */
.pdp-spec-table {
  width: 100%;
  border-collapse: collapse;
}
.pdp-spec-table tr { border-bottom: 1px solid #e5e7eb; }
.pdp-spec-table .pdp-spec-subgroup { border-bottom: none; }
.pdp-spec-table td {
  padding: 14px 24px;
  font-size: 15px;
  line-height: 1.65;
  vertical-align: top;
}
.pdp-spec-table td:first-child {
  width: 220px;
  color: #374151;
  font-weight: 500;
  white-space: nowrap;
}
.pdp-spec-table td:last-child {
  color: #111827;
  font-weight: 600;
}
.pdp-spec-table .pdp-spec-subgroup td {
  padding-top: 22px;
  color: var(--muted);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}
.pdp-spec-table tr.pdp-indent td:first-child {
  padding-left: 36px;
}
.pdp-spec-table tr.pdp-bold-label td:first-child {
  font-weight: 800;
}

/* Overview tab */
.pdp-overview-content { padding: 8px 0 20px; }
.pdp-overview-content p {
  font-size: 15px; line-height: 1.7; color: #555; margin-bottom: 20px;
}
.pdp-overview-content h3 {
  font-size: 16px; font-weight: 700; color: var(--ink); margin: 24px 0 10px;
}
.pdp-overview-content ul {
  margin: 0; padding-left: 22px; color: #555; line-height: 2;
}
.pdp-overview-content li { font-size: 14px; }

.pdp-drawing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 24px;
}
.pdp-drawing-card {
  min-width: 0;
  overflow: hidden;
  background: #f2f0ed;
}
.pdp-drawing-trigger {
  width: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  text-align: left;
}
.pdp-drawing-media {
  position: relative;
  aspect-ratio: 1 / 0.92;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: #f2f0ed;
  overflow: hidden;
}
.pdp-drawing-card h3 {
  min-height: 58px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 14px 18px;
  color: #fff;
  background: #60605f;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}
.pdp-drawing-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.28s ease, filter 0.28s ease;
}
.pdp-drawing-hover {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 24, 39, 0);
  opacity: 0;
  transition: opacity 0.28s ease, background 0.28s ease;
}
.pdp-drawing-hover-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  transform: scale(0.92);
  transition: transform 0.28s ease, background 0.28s ease;
}
.pdp-drawing-hover-icon svg {
  width: 24px;
  height: 24px;
}
.pdp-drawing-trigger:hover .pdp-drawing-image,
.pdp-drawing-trigger:focus-visible .pdp-drawing-image {
  transform: scale(1.03);
  filter: saturate(1.02);
}
.pdp-drawing-trigger:hover .pdp-drawing-hover,
.pdp-drawing-trigger:focus-visible .pdp-drawing-hover {
  opacity: 1;
  background: rgba(17, 24, 39, 0.32);
}
.pdp-drawing-trigger:hover .pdp-drawing-hover-icon,
.pdp-drawing-trigger:focus-visible .pdp-drawing-hover-icon {
  transform: scale(1);
  background: rgba(255, 255, 255, 0.18);
}
.pdp-drawing-trigger:focus-visible {
  outline: 2px solid #9ec6ef;
  outline-offset: 4px;
}
.pdp-spec-notes {
  margin: 18px 0 30px;
  padding-left: 34px;
  color: #444;
}
.pdp-spec-notes li {
  margin: 8px 0;
  padding-left: 4px;
  font-size: 13px;
  line-height: 1.65;
}

/* Spec group headings (Optical, Electrical, Mechanical, etc.) */
.pdp-spec-group {
  font-size: 15px; font-weight: 700; color: var(--ink);
  margin: 28px 0 10px; padding-top: 18px;
  border-top: 1px solid var(--line);
}
.pdp-spec-group:first-child { margin-top: 0; padding-top: 0; border-top: none; }

/* Document download button */
.pdp-doc-download {
  margin-left: auto; flex-shrink: 0;
  display: inline-block; padding: 8px 18px;
  font-size: 13px; font-weight: 600; color: var(--blue);
  border: 1px solid var(--blue); border-radius: 6px;
  text-decoration: none; transition: all 0.2s;
}
.pdp-doc-download:hover { background: var(--blue); color: #fff; }

/* Documents tab */
.pdp-doc-list {
  display: flex; flex-direction: column; gap: 12px; padding: 12px 0;
}
.pdp-doc-card {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px; border: 1px solid var(--line); border-radius: 8px;
  background: #fafcfd; transition: box-shadow 0.2s;
}
.pdp-doc-card:hover { box-shadow: 0 2px 8px rgba(0,0,0,.06); }
.pdp-doc-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pdp-doc-icon svg {
  width: 28px;
  height: 28px;
}
.pdp-doc-icon-pdf {
  color: var(--red);
}
.pdp-doc-card > div { flex: 1; min-width: 0; }
.pdp-doc-card strong {
  display: block; font-size: 14px; color: var(--ink); margin-bottom: 4px;
}
.pdp-doc-card > div > span { font-size: 12px; color: var(--muted); }
body.pdp-lightbox-open {
  overflow: hidden;
}
.pdp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1400;
}
.pdp-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 13, 20, 0.78);
  backdrop-filter: blur(4px);
}
.pdp-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1380px, calc(100vw - 36px));
  height: min(900px, calc(100vh - 36px));
  margin: 18px auto;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: stretch;
}
.pdp-lightbox-stage {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.94);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}
.pdp-lightbox-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 20px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}
.pdp-lightbox-toolbar-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pdp-lightbox-toolbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.pdp-lightbox-counter {
  font-size: 14px;
  font-weight: 500;
  color: #9ca3af;
}
.pdp-lightbox-reset {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.pdp-lightbox-reset:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  transform: translateY(-1px);
}
.pdp-lightbox-body {
  min-height: 0;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.75fr);
}
.pdp-lightbox-viewport {
  min-width: 0;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px 24px 28px;
  cursor: default;
}
.pdp-lightbox-viewport.is-zoomed {
  cursor: grab;
}
.pdp-lightbox-viewport.is-dragging {
  cursor: grabbing;
}
.pdp-lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
  transform-origin: center center;
  transition: transform 0.08s linear;
  will-change: transform;
}
.pdp-lightbox-meta {
  min-width: 0;
  padding: 12px 28px 32px 8px;
  color: #e5edf6;
  overflow: auto;
}
.pdp-lightbox-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.3;
  color: #fff;
}
.pdp-lightbox-details p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(229, 237, 246, 0.88);
}
.pdp-lightbox-nav,
.pdp-lightbox-close {
  width: 48px;
  height: 48px;
  align-self: center;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.pdp-lightbox-nav:hover,
.pdp-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}
.pdp-lightbox-nav svg,
.pdp-lightbox-close svg {
  width: 22px;
  height: 22px;
}
.pdp-lightbox-close {
  position: static;
  z-index: 2;
}
.quote-section {
  color: #fff;
  background:
    linear-gradient(120deg, rgba(15, 31, 50, 0.98), rgba(0, 67, 130, 0.94)),
    var(--steel);
}

.quote-section p,
.quote-section .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.quote-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.quote-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  color: var(--ink);
}

.quote-card > span,
.quote-contact-link {
  padding: 13px;
  background: var(--soft);
  border-radius: 4px;
  font-weight: 800;
}

.quote-contact-link {
  color: var(--ink);
  text-decoration: none;
}

.quote-contact-link:hover {
  color: var(--blue);
  background: #eaf3ff;
}

.quote-upload {
  min-height: 76px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border: 1px dashed #8ebde8;
  background: #f7fbff;
  text-align: center;
  padding: 13px;
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.quote-upload:hover {
  background: #eaf3ff;
  border-color: var(--blue);
}

.quote-hint {
  background: #fffbe6;
  border: 1px solid #ffe58f;
  border-radius: 6px;
  padding: 14px 16px;
}
.quote-hint strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 6px;
}
.quote-hint p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #666;
  font-weight: 500;
}

/* Product accessories section */
.pdp-accessories-section {
  background: #f7f9fb;
  padding: 40px 0;
}
.pdp-hint-card {
  background: #fffbe6;
  border: 1px solid #ffe58f;
  border-radius: 8px;
  padding: 18px 22px;
  margin-bottom: 20px;
  width: 100%;
}
.pdp-hint-card strong {
  display: block;
  font-size: 15px;
  color: var(--ink);
  margin-bottom: 6px;
}
.pdp-hint-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #666;
}
.pdp-accessories-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
}
.pdp-acc-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pdp-acc-cat {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pdp-acc-item strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
}
.pdp-acc-partno {
  font-size: 13px;
  color: var(--muted);
}

.site-footer {
  background: #f7f9fb;
}

.footer-body {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 34px;
}

.footer-body h2 {
  font-size: 18px;
  margin-bottom: 14px;
}

.footer-body ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.footer-body .guarantee-title {
  display: block;
  color: var(--ink);
  font-size: 14px;
}

.footer-body .guarantee-desc {
  display: block;
  font-weight: normal;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 2px;
}

.footer-contact p {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.footer-contact a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

.footer-contact a:hover { text-decoration: underline; }

.footer-contact address {
  display: inline;
  font-style: normal;
  color: var(--muted);
}

.footer-centers-label {
  margin-top: 14px !important;
  font-weight: 700;
  color: var(--ink) !important;
  font-size: 13px !important;
}

.footer-about {
  text-align: center;
  font-size: 12px;
  color: #999;
  padding: 20px 20px 24px;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Products page: sidebar + main layout ── */
.products-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: start;
}

.filter-sidebar {
  position: sticky;
  top: 130px;
  display: grid;
  gap: 20px;
}

.filter-group {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 18px;
}

.filter-group h3 {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--steel);
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  cursor: pointer;
  font-size: 13px;
  color: var(--ink);
  transition: color 0.15s;
}

.filter-option:hover {
  color: var(--blue);
}

.filter-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
  cursor: pointer;
  flex-shrink: 0;
}

.filter-option.sub-option {
  padding-left: 20px;
}

.filter-label {
  flex: 1;
}

.filter-mini-logo {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  flex-shrink: 0;
}

.filter-option:hover .filter-mini-logo {
  filter: grayscale(0%);
  opacity: 1;
}

.filter-count {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}

.filter-option.coming-soon {
  opacity: 0.45;
  cursor: default;
}

.filter-option.coming-soon .filter-count {
  font-style: italic;
}

.filter-details {
  border: 0;
  padding: 0;
}

.filter-details summary {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.filter-details summary::before {
  content: "▶";
  font-size: 9px;
  transition: transform 0.2s;
}

.filter-details[open] summary::before {
  transform: rotate(90deg);
}

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

.filter-clear {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}

.filter-clear:hover {
  background: var(--soft);
}

/* ── Badge pills ── */
.badge-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.badge-pill.stock {
  color: #1a7f37;
  border: 1px solid #a3d9b1;
  background: #f0faf3;
}

.badge-pill.sealed {
  color: var(--blue);
  border: 1px solid #a8d4f5;
  background: #f0f7ff;
}

.badge-pill.new-box {
  color: var(--steel);
  border: 1px solid #c8d5e2;
  background: #f5f8fb;
}

.badge-pill.new {
  color: var(--steel);
  border: 1px solid #c8d5e2;
  background: #f5f8fb;
}

.badge-pill.request {
  color: var(--blue);
  border: 1px solid #a8d4f5;
  background: #f0f7ff;
}

/* ── Card actions (quote button at bottom) ── */
.product-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  height: auto;
  padding: 16px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: #3B82F6;
  box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.1),
              0 8px 10px -6px rgba(59, 130, 246, 0.1);
}

.product-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  color: inherit;
  text-decoration: none;
}

.card-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  margin-top: 0;
}

.card-actions .quote-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 44px;
  min-height: 44px;
  text-align: center;
  padding: 0 16px;
  cursor: pointer;
  border-radius: 4px;
  border: 1.5px solid var(--blue);
  background: transparent;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.product-card:hover .card-actions .quote-button {
  background: var(--blue);
  color: #fff;
}

.card-actions .quote-button:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  color: #fff;
}

.card-actions .quote-button .arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}
.product-card:hover .card-actions .quote-button .arrow {
  transform: translateX(4px);
}

/* ── No results message ── */
.no-results {
  text-align: center;
  padding: 48px 24px;
}

.no-results p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 12px;
}

/* ── Brand wall clickable tiles ── */
a.brand-logo-tile {
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

a.brand-logo-tile:hover {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
  transform: translateY(-2px);
}

@media (max-width: 1020px) {
  [data-site-header] {
    min-height: 242px;
  }

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

  .main-menu {
    grid-template-columns: repeat(3, 1fr);
    height: auto;
  }

  .main-menu a {
    height: 54px;
  }

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

  .hero-inner,
  .detail-layout,
  .pdp-layout,
  .quote-layout,
  .footer-body {
    grid-template-columns: 1fr;
  }

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

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

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

  .pdp-lightbox-dialog {
    width: min(100vw - 24px, 1180px);
    height: min(100vh - 24px, 900px);
    margin: 12px auto;
    grid-template-columns: 60px minmax(0, 1fr) 60px;
  }

  .pdp-lightbox-body {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .pdp-lightbox-meta {
    padding: 0 24px 24px;
    max-height: 240px;
  }

  .brand-wall-section .centered-heading h2,
  .brand-wall-section .centered-heading p {
    white-space: normal;
  }

  .products-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .filter-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .filter-clear {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  [data-site-header] {
    min-height: 154px;
  }

  .top-bar {
    display: none;
  }

  .nav-shell {
    width: min(100% - 28px, 1180px);
    min-height: 68px;
    grid-template-columns: 1fr auto auto;
  }

  .site-search {
    grid-column: 1 / -1;
    order: 3;
    margin-bottom: 12px;
    max-width: none;
    margin-left: 0;
  }

  .menu-toggle {
    display: block;
  }

  .main-menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 122px;
    display: none;
    grid-template-columns: 1fr;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    height: auto;
  }

  .main-menu.is-open {
    display: grid;
  }

  .main-menu a {
    height: auto;
    min-height: 48px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .lang-dropdown-trigger {
    min-width: 78px;
    height: 42px;
    padding: 0 14px;
    font-size: 16px;
  }

  .lang-dropdown-trigger svg {
    width: 19px;
    height: 19px;
  }

  .lang-dropdown-menu {
    left: 50%;
    right: auto;
    min-width: 190px;
  }

  .site-logo {
    height: 60px;
  }

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

  .hero-inner {
    height: auto;
    padding: 70px 0;
  }

  .category-grid,
  .product-grid,
  .proof-grid,
  .brand-logo-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .page-hero {
    height: auto;
    min-height: 360px;
    padding: 56px 0;
  }

  .page-hero .section-inner {
    min-height: 0;
  }

  .page-hero h1 {
    min-height: 0;
    font-size: clamp(34px, 9vw, 48px);
  }

  .page-hero p:not(.eyebrow) {
    min-height: 0;
  }

  .section-heading,
  .list-toolbar {
    display: block;
  }

  .detail-visual {
    min-height: 320px;
  }

  .pdp-main-visual {
    min-height: 280px;
  }

  .pdp-gallery {
    position: static;
  }

  .pdp-trust-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .pdp-trust-badge {
    flex-direction: row;
    gap: 12px;
    padding: 8px 0;
  }

  .pdp-subtabs {
    flex-direction: column;
    border-bottom: none;
  }

  .pdp-subtab {
    border-bottom: 1px solid var(--line);
    margin-bottom: 0;
    text-align: left;
  }

  .pdp-jump-links {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pdp-jump-link {
    min-height: 46px;
  }

  .pdp-subtab.active {
    border-bottom-color: var(--blue);
    background: #f7f9fb;
    color: var(--blue);
  }

  .pdp-model-heading {
    font-size: 24px;
  }

  .pdp-spec-table td:first-child {
    width: 140px;
    white-space: normal;
  }

  .pdp-drawing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pdp-lightbox-dialog {
    width: calc(100vw - 12px);
    height: calc(100vh - 12px);
    margin: 6px auto;
    grid-template-columns: 1fr;
  }

  .pdp-lightbox-stage {
    border-radius: 14px;
  }

  .pdp-lightbox-toolbar {
    padding: 20px 16px 0;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .pdp-lightbox-toolbar-actions {
    justify-content: space-between;
    gap: 10px;
  }

  .pdp-lightbox-body {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .pdp-lightbox-viewport {
    padding: 16px;
  }

  .pdp-lightbox-meta {
    padding: 0 16px 18px;
    max-height: 34vh;
  }

  .pdp-lightbox-title {
    font-size: 18px;
  }

  .pdp-lightbox-details p {
    font-size: 13px;
    line-height: 1.7;
  }

  .pdp-lightbox-nav {
    position: absolute;
    bottom: 14px;
    z-index: 2;
    width: 42px;
    height: 42px;
  }

  .pdp-lightbox-prev {
    left: 14px;
  }

  .pdp-lightbox-next {
    right: 14px;
  }

  .pdp-lightbox-close {
    width: 42px;
    height: 42px;
  }

  .filter-sidebar {
    grid-template-columns: 1fr;
  }

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

/* ── Floating actions: Inquire Now + Back to Top ── */
.floating-actions {
  position: fixed;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.float-btn {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, opacity 0.25s ease, visibility 0.25s ease;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}

/* Override global svg stroke rules so the fill-based icons render correctly */
.float-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
  stroke-width: 0;
}

.float-btn.inquire {
  background-color: var(--blue);
  color: #ffffff;
}
.float-btn.inquire:hover {
  background-color: var(--blue-dark);
  transform: scale(1.05);
}

.float-btn.to-top {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  color: #4b5563;
  /* Hidden on first screen; revealed by JS after 400px scroll */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.float-btn.to-top:hover {
  background-color: #f3f4f6;
  color: #111827;
}
.float-btn.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 720px) {
  .floating-actions {
    bottom: 20px;
    right: 16px;
  }
}
