.detail-page .product-detail-main {
  padding: 18px 0 32px;
  color: #14243a;
  background: #fff;
}

.detail-page .product-detail-shell {
  --detail-blue: #086fd6;
  --detail-blue-dark: #0457ad;
  --detail-navy: #063b73;
  --detail-ink: #14243a;
  --detail-muted: #586d83;
  --detail-border: #dce8f4;
  --detail-border-strong: #c7d9ea;
  --detail-surface: #f4f8fc;
  --detail-surface-blue: #edf6ff;
  --detail-proof-surface: #edf6ff;
  --detail-section-space: 32px;
  --detail-module-gap: 24px;
  --detail-hero-min-height: 700px;
  --detail-radius-sm: 6px;
  --detail-radius: 8px;
  --detail-shadow: 0 14px 32px rgba(24, 73, 122, .08);
  width: min(1440px, calc(100% - 48px));
  margin-inline: auto;
}

.detail-page .product-detail-shell *,
.detail-page .product-detail-shell *::before,
.detail-page .product-detail-shell *::after {
  box-sizing: border-box;
}

.detail-page .product-detail-shell img {
  display: block;
  max-width: 100%;
}

.detail-page .product-detail-shell a {
  color: inherit;
  text-decoration: none;
}

.detail-page .product-detail-shell button,
.detail-page .product-detail-shell input,
.detail-page .product-detail-shell select,
.detail-page .product-detail-shell textarea {
  font: inherit;
}

.detail-page .product-detail-shell svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.detail-page .product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  margin-bottom: 12px;
  color: #5f7489;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
}

.detail-page .product-breadcrumb a:hover,
.detail-page .product-breadcrumb a:focus-visible {
  color: var(--detail-blue);
}

.detail-page .product-breadcrumb strong {
  min-width: 0;
  color: var(--detail-ink);
  font-weight: 600;
  text-overflow: ellipsis;
  overflow: hidden;
}

.detail-page .product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  grid-template-rows: minmax(0, 1fr) auto;
  grid-template-areas:
    "gallery summary"
    "gallery inquiry";
  gap: 0;
  align-items: stretch;
  min-height: var(--detail-hero-min-height);
  padding: 0;
  overflow: hidden;
  background: #fff;
}

.detail-page .product-gallery {
  position: relative;
  grid-area: gallery;
  align-self: stretch;
  min-width: 0;
  min-height: var(--detail-hero-min-height);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #eef1f3;
  box-shadow: none;
}

.detail-page .product-gallery__meta {
  position: absolute;
  z-index: 4;
  top: 62px;
  left: 30px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: #587289;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .15em;
  line-height: 1.2;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.detail-page .product-gallery__meta strong {
  color: #173b5e;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
}

.detail-page .product-gallery__meta small {
  color: #8597a7;
  font-size: 9px;
  letter-spacing: .1em;
}

.detail-page .product-gallery__rail {
  position: absolute;
  z-index: 5;
  right: 34px;
  bottom: 32px;
  display: flex;
  width: auto;
  gap: 7px;
  padding: 8px 0;
}

.detail-page .product-gallery__thumb {
  position: relative;
  width: 42px;
  height: 24px;
  flex: 0 0 42px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: default;
}

.detail-page .product-gallery__thumb::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #c4d0da;
  content: "";
  transition: background-color .2s ease, transform .2s ease;
}

.detail-page .product-gallery__thumb img {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.detail-page button.product-gallery__thumb:hover {
  background: transparent;
}

.detail-page button.product-gallery__thumb:hover::before {
  background: #8fa6b9;
  transform: scaleY(1.5);
}

.detail-page .product-gallery__thumb[aria-pressed="true"],
.detail-page .product-gallery__thumb.is-active {
  background: transparent;
  box-shadow: none;
}

.detail-page .product-gallery__thumb[aria-pressed="true"]::before,
.detail-page .product-gallery__thumb.is-active::before {
  background: var(--detail-blue);
}

.detail-page .product-gallery__stage {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: var(--detail-hero-min-height);
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: linear-gradient(145deg, #e9edef 0%, #f8f9fa 68%, #f4f6f7 100%);
}

.detail-page .product-gallery__stage::before {
  position: absolute;
  z-index: 0;
  top: 15%;
  left: 8%;
  color: rgba(16, 50, 80, .075);
  font-size: clamp(132px, 16vw, 236px);
  font-weight: 900;
  letter-spacing: -.08em;
  line-height: .8;
  content: attr(data-stage-mark);
  pointer-events: none;
}

.detail-page .product-gallery__stage::after {
  position: absolute;
  z-index: 0;
  right: 10%;
  bottom: 21%;
  width: 56%;
  height: 10%;
  border-radius: 50%;
  background: rgba(27, 48, 68, .08);
  filter: blur(18px);
  content: "";
  transform: perspective(280px) rotateX(66deg);
  pointer-events: none;
}

.detail-page .product-gallery__stage > img {
  position: relative;
  z-index: 2;
  width: min(66%, 390px);
  height: min(58%, 420px);
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(.97) contrast(1.02);
  transition: opacity .2s ease, transform .25s ease;
}

.detail-page .product-gallery__tools {
  position: absolute;
  z-index: 5;
  bottom: 22px;
  left: 28px;
  display: flex;
  gap: 20px;
  align-items: center;
  min-height: 34px;
}

.detail-page .product-gallery__view {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #526d84;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .04em;
}

.detail-page .product-gallery__zoom {
  display: inline-flex;
  width: auto;
  height: 34px;
  gap: 7px;
  align-items: center;
  padding: 0 4px;
  color: #526d84;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.detail-page .product-hero-quick-form {
  display: grid;
  grid-area: inquiry;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 38%);
  grid-template-rows: 1fr;
  gap: 0;
  align-self: stretch;
  min-width: 0;
  min-height: 208px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  color: #fff;
  border: 0;
  border-radius: 0;
  background: var(--detail-navy);
  box-shadow: none;
}

.detail-page .product-hero-quick-form__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
  align-content: center;
  min-width: 0;
  position: relative;
  padding: 28px clamp(28px, 4vw, 52px);
  border: 0;
  background: var(--detail-navy);
}

.detail-page .product-hero-quick-form__intro::before {
  display: none;
}

.detail-page .product-hero-quick-form__intro span {
  grid-column: 1;
  display: block;
  color: #8bc6ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
}

.detail-page .product-hero-quick-form__intro strong {
  grid-column: 1;
  display: block;
  color: #fff;
  font-size: clamp(20px, 1.8vw, 25px);
  line-height: 1.25;
}

.detail-page .product-hero-quick-form__intro strong svg {
  width: 26px;
  height: 26px;
  padding: 4px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
}

.detail-page .product-hero-quick-form__intro p {
  grid-column: 1;
  margin: 0;
  color: #bed4e8;
  font-size: 13px;
  line-height: 1.55;
}

.detail-page .product-hero-quick-form__actions {
  grid-column: 1;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

.detail-page .product-hero-quick-form__download,
.detail-page .product-hero-quick-form__message-button {
  display: inline-flex;
  min-width: 0;
  min-height: 44px;
  flex: 1 1 0;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  margin: 0;
  border-radius: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease;
}

.detail-page .product-hero-quick-form__download {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
}

.detail-page .product-hero-quick-form__message-button {
  color: var(--detail-navy);
  border: 1px solid #fff;
  background: #fff;
}

.detail-page .product-hero-quick-form__download svg,
.detail-page .product-hero-quick-form__message-button svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detail-page .product-hero-quick-form__download:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .15);
}

.detail-page .product-hero-quick-form__message-button:hover {
  color: #052f59;
  border-color: #d9ebfb;
  background: #eaf5ff;
}

.detail-page .product-hero-quick-form__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: 38px 42px 42px;
  gap: 10px 12px;
  align-content: center;
  min-width: 0;
  padding: 18px 24px;
  background: #0b477d;
}

.detail-page .product-hero-quick-form__fields label {
  position: relative;
  display: block;
  min-width: 0;
  margin: 0;
}

.detail-page .product-hero-quick-form__fields label > span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.detail-page .product-hero-quick-form__fields b {
  color: #e34955;
}

.detail-page .product-hero-quick-form__fields input,
.detail-page .product-hero-quick-form__fields textarea {
  width: 100%;
  height: 100%;
  min-width: 0;
  color: #fff;
  border: 0;
  border-bottom: 1px solid rgba(214, 231, 246, .54);
  border-radius: 0;
  outline: 0;
  background: transparent;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.detail-page .product-hero-quick-form__fields input {
  height: 100%;
  padding: 0 2px;
}

.detail-page .product-hero-quick-form__fields textarea {
  min-height: 42px;
  padding: 11px 2px 6px;
  line-height: 1.35;
  resize: none;
}

.detail-page .product-hero-quick-form__fields input::placeholder,
.detail-page .product-hero-quick-form__fields textarea::placeholder {
  color: rgba(255, 255, 255, .58);
}

.detail-page .product-hero-quick-form__fields input::placeholder {
  color: rgba(255, 255, 255, .58);
}

.detail-page .product-hero-quick-form__fields input:focus,
.detail-page .product-hero-quick-form__fields textarea:focus {
  border-color: #fff;
  background: rgba(255, 255, 255, .04);
  box-shadow: 0 2px 0 rgba(255, 255, 255, .16);
}

.detail-page .product-hero-quick-form__message {
  grid-column: 1 / -1;
}

.detail-page .product-hero-quick-form__fields button {
  grid-column: 1 / -1;
  width: 100%;
  height: 42px;
  padding: 0 16px;
  color: #08345f;
  border: 1px solid #fff;
  border-radius: 0;
  background: #fff;
  box-shadow: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.detail-page .product-hero-quick-form__fields button:hover {
  border-color: #d9ebfb;
  background: #eaf5ff;
  transform: translateY(-1px);
}

.detail-page .product-summary {
  display: flex;
  grid-area: summary;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 40px clamp(42px, 5vw, 72px) 24px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.detail-page .product-summary__eyebrow {
  display: block;
  margin: 0 0 12px;
  color: var(--detail-blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .16em;
  line-height: 1.3;
}

.detail-page .product-section-heading > span,
.detail-page .product-section-heading > div > span,
.detail-page .product-quote__copy > span {
  display: block;
  margin: 0 0 8px;
  color: var(--detail-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.detail-page .product-summary h1 {
  display: -webkit-box;
  width: 100%;
  max-width: 100%;
  max-height: 2.04em;
  margin: 0;
  overflow: hidden;
  color: #102238;
  font-size: clamp(36px, 3vw, 44px);
  line-height: 1.02;
  letter-spacing: -.045em;
  white-space: normal;
  text-wrap: wrap;
  overflow-wrap: anywhere;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.detail-page .product-summary__model {
  margin: 12px 0 0;
  color: #48657f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}

.detail-page .product-summary__subtitle {
  display: block;
  margin: 9px 0 0;
  color: #5d7287;
  font-size: 16px;
  font-weight: 450;
  line-height: 1.6;
}

.detail-page .product-key-specs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 22px;
  border: 0;
  border-block: 1px solid var(--detail-border);
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.detail-page .product-key-specs article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  align-content: center;
  min-width: 0;
  min-height: 70px;
  padding: 12px 16px;
  border-right: 1px solid var(--detail-border);
  border-bottom: 0;
}

.detail-page .product-key-specs article:first-child {
  padding-left: 0;
}

.detail-page .product-key-specs article:last-child {
  border-right: 0;
}

.detail-page .product-key-specs svg {
  display: none;
}

.detail-page .product-key-specs span {
  position: static;
  width: auto;
  height: auto;
  color: #5e7388;
  font-size: 11px;
  line-height: 1.25;
  white-space: normal;
}

.detail-page .product-key-specs strong {
  color: var(--detail-ink);
  font-size: 15px;
  line-height: 1.3;
  white-space: normal;
  overflow-wrap: anywhere;
}

.detail-page .product-configurator {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin-top: 18px;
}

.detail-page .product-configurator__title {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--detail-ink);
  font-size: 13px;
  font-weight: 800;
}

.detail-page .product-option-group {
  display: block;
  min-width: 0;
}

.detail-page .product-option-group:nth-of-type(1) {
  grid-column: 1;
  grid-row: 2;
}

.detail-page .product-option-group:nth-of-type(2) {
  grid-column: 1 / -1;
  grid-row: 3;
}

.detail-page .product-option-group:nth-of-type(3) {
  grid-column: 2;
  grid-row: 2;
}

.detail-page .product-option-group > span {
  display: block;
  margin-bottom: 8px;
  padding-top: 0;
  color: #566b82;
  font-size: 11px;
  font-weight: 700;
}

.detail-page .product-option-group > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.detail-page .product-option-group button {
  min-width: 46px;
  min-height: 34px;
  padding: 5px 12px;
  color: #425a73;
  border: 1px solid var(--detail-border-strong);
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  font-size: 12px;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.detail-page .product-option-group button:hover {
  color: var(--detail-blue);
  border-color: #87b8e7;
}

.detail-page .product-option-group button[aria-pressed="true"],
.detail-page .product-option-group button.is-active {
  color: #fff;
  border-color: var(--detail-blue);
  background: var(--detail-blue);
}

.detail-page .product-summary__actions {
  display: none;
  grid-template-columns: 1.15fr .9fr .9fr;
  gap: 10px;
  margin-top: 20px;
}

.detail-page .product-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 40px;
  padding: 8px 18px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 750;
  line-height: 1.2;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.detail-page .product-button:hover {
  transform: translateY(-1px);
}

.detail-page .product-detail-shell .product-button--primary {
  color: #fff;
  border-color: var(--detail-blue);
  background: var(--detail-blue);
  box-shadow: none;
}

.detail-page .product-detail-shell .product-button--primary:hover {
  border-color: var(--detail-blue-dark);
  background: var(--detail-blue-dark);
}

.detail-page .product-button--secondary {
  color: var(--detail-blue);
  border-color: #9dc5e9;
  background: #fff;
}

.detail-page .product-button--secondary:hover {
  border-color: var(--detail-blue);
  background: #f3f9ff;
}

.detail-page .product-summary__links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 10px;
}

.detail-page .product-summary__links a,
.detail-page .product-text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--detail-blue);
  font-size: 14px;
  font-weight: 700;
}

.detail-page .product-summary__links a:hover,
.detail-page .product-text-link:hover {
  color: var(--detail-blue-dark);
}

.detail-page .product-summary__service {
  display: none;
  align-items: center;
  justify-content: flex-start;
  gap: 7px;
  margin: 14px 0 0;
  color: #75869a;
  font-size: 13px;
}

.detail-page .product-summary__service svg {
  color: var(--detail-blue);
}

.detail-page .product-detail-proof {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  margin-bottom: clamp(16px, 2vw, 24px);
  border: 0;
  border-top: 1px solid var(--detail-border);
  border-bottom: 1px solid var(--detail-border);
  border-radius: 0;
  background: var(--detail-proof-surface);
  box-shadow: none;
}

.detail-page .product-detail-proof article {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  min-width: 0;
  min-height: 76px;
  padding: 12px clamp(18px, 2vw, 28px);
  border-right: 1px solid var(--detail-border);
  text-align: left;
}

.detail-page .product-detail-proof article:last-child {
  border-right: 0;
}

.detail-page .product-detail-proof svg {
  display: block;
  width: 34px;
  height: 34px;
  padding: 3px;
  color: #3f6188;
  flex: 0 0 auto;
}

.detail-page .product-detail-proof span {
  display: grid;
  gap: 3px;
  color: var(--detail-muted);
  font-size: 13px;
  line-height: 1.4;
}

.detail-page .product-detail-proof strong {
  color: var(--detail-ink);
  font-size: 15px;
  font-weight: 750;
}

.detail-page .product-detail-proof small {
  display: block;
  color: var(--detail-muted);
  font-size: 12px;
  line-height: 1.35;
}

.detail-page .product-detail-anchor-nav {
  position: sticky;
  z-index: 15;
  top: var(--xq-header-anchor-offset, 72px);
  display: flex;
  width: 100%;
  min-height: 54px;
  border: 0;
  border-bottom: 1px solid var(--detail-border);
  border-radius: 0;
  background: rgba(255, 255, 255, .97);
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.detail-page .product-detail-anchor-nav a {
  position: relative;
  display: flex;
  min-width: 0;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 8px 12px;
  color: #536b84;
  font-size: 14px;
  font-weight: 700;
}

.detail-page .product-detail-anchor-nav a::after {
  position: absolute;
  right: 22%;
  bottom: -1px;
  left: 22%;
  height: 3px;
  border-radius: 2px 2px 0 0;
  background: transparent;
  content: "";
}

.detail-page .product-detail-anchor-nav a:hover,
.detail-page .product-detail-anchor-nav a.is-active {
  color: var(--detail-blue);
}

.detail-page .product-detail-anchor-nav a.is-active::after {
  background: var(--detail-blue);
}

.detail-page .product-detail-section {
  padding: var(--detail-section-space) 0;
  border-bottom: 1px solid #e7eff7;
  scroll-margin-top: calc(var(--xq-header-anchor-offset, 72px) + 66px);
}

.detail-page .product-detail-section + .product-detail-section {
  margin-top: var(--detail-module-gap);
}

.detail-page .product-section-heading {
  margin-bottom: 18px;
  text-align: center;
}

.detail-page .product-section-heading--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  text-align: left;
}

.detail-page .product-section-heading > span,
.detail-page .product-section-heading > div > span {
  margin-bottom: 6px;
}

.detail-page .product-section-heading h2,
.detail-page .product-quote__copy h2 {
  margin: 0;
  color: var(--detail-ink);
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.2;
  letter-spacing: -.02em;
}

.detail-page .product-section-heading p {
  max-width: 660px;
  margin: 6px auto 0;
  color: var(--detail-muted);
  font-size: 13px;
  line-height: 1.7;
}

.detail-page .product-section-heading--row p {
  max-width: 520px;
  margin: 0;
  text-align: right;
}

.detail-page .product-procurement-workbench__frame {
  display: grid;
  grid-template-columns: minmax(420px, .82fr) minmax(0, 1.18fr);
  overflow: hidden;
  border: 1px solid var(--detail-border);
  border-radius: var(--detail-radius);
  background: #fff;
  box-shadow: none;
}

.detail-page .product-procurement-workbench__overview {
  display: grid;
  min-width: 0;
  grid-template-rows: auto minmax(300px, 1fr) auto;
  border-right: 1px solid var(--detail-border);
}

.detail-page .product-procurement-workbench__heading {
  min-height: 148px;
  padding: 32px 38px 28px;
}

.detail-page .product-procurement-workbench__heading > span,
.detail-page .product-procurement-workbench__parameter-heading > div > span {
  display: block;
  margin-bottom: 8px;
  color: var(--detail-blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .15em;
}

.detail-page .product-procurement-workbench__heading h2,
.detail-page .product-procurement-workbench__parameter-heading h2 {
  margin: 0;
  color: var(--detail-ink);
  font-size: clamp(24px, 2vw, 30px);
  letter-spacing: -.025em;
  line-height: 1.2;
}

.detail-page .product-procurement-workbench__heading p {
  margin: 12px 0 0;
  color: var(--detail-muted);
  font-size: 13px;
  line-height: 1.7;
}

.detail-page .product-procurement-workbench__visual {
  display: grid;
  min-height: 320px;
  overflow: hidden;
  place-items: center;
  border-top: 1px solid var(--detail-border);
  border-bottom: 1px solid var(--detail-border);
  background: linear-gradient(145deg, #e9edef 0%, #f8f9fa 68%, #f4f6f7 100%);
}

.detail-page .product-procurement-workbench__visual img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  padding: 28px 46px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.detail-page .product-procurement-workbench__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-page .product-procurement-workbench__facts article {
  display: grid;
  min-width: 0;
  min-height: 116px;
  align-content: center;
  gap: 11px;
  padding: 18px 20px;
  border-right: 1px solid var(--detail-border);
}

.detail-page .product-procurement-workbench__facts article:last-child {
  border-right: 0;
}

.detail-page .product-procurement-workbench__facts article > span {
  color: var(--detail-blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .06em;
}

.detail-page .product-procurement-workbench__facts strong,
.detail-page .product-procurement-workbench__facts small {
  display: block;
  overflow-wrap: anywhere;
}

.detail-page .product-procurement-workbench__facts strong {
  color: var(--detail-ink);
  font-size: 16px;
  line-height: 1.35;
}

.detail-page .product-procurement-workbench__facts small {
  margin-top: 6px;
  color: var(--detail-muted);
  font-size: 11px;
}

.detail-page .product-procurement-workbench__parameters {
  min-width: 0;
  padding: 0 34px 30px;
  scroll-margin-top: 78px;
}

.detail-page .product-procurement-workbench__parameter-heading {
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.detail-page .product-procurement-workbench__parameter-heading > div > span {
  display: none;
}

.detail-page .product-procurement-workbench__parameter-heading p {
  margin: 0;
  color: var(--detail-muted);
  font-size: 12px;
  text-align: right;
}

.detail-page .product-procurement-workbench__metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--detail-border);
  border-bottom: 1px solid var(--detail-border);
}

.detail-page .product-procurement-workbench__metrics article {
  display: grid;
  min-width: 0;
  min-height: 108px;
  align-content: center;
  padding: 16px 10px;
  border-right: 1px solid var(--detail-border);
  text-align: center;
}

.detail-page .product-procurement-workbench__metrics article:last-child {
  border-right: 0;
}

.detail-page .product-procurement-workbench__metrics strong {
  overflow-wrap: anywhere;
  color: var(--detail-blue-deep, #07559d);
  font-size: clamp(18px, 1.65vw, 25px);
  letter-spacing: -.025em;
  line-height: 1.15;
}

.detail-page .product-procurement-workbench__metrics span {
  margin-top: 9px;
  color: var(--detail-muted);
  font-size: 11px;
}

.detail-page .product-procurement-workbench__data {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.detail-page .product-procurement-workbench__data > div {
  display: grid;
  min-width: 0;
  min-height: 58px;
  grid-template-columns: 104px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-right: 1px solid var(--detail-border);
  border-bottom: 1px solid var(--detail-border);
}

.detail-page .product-procurement-workbench__data > div:nth-child(2n) {
  border-right: 0;
}

.detail-page .product-procurement-workbench__data dt,
.detail-page .product-procurement-workbench__data dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.detail-page .product-procurement-workbench__data dt {
  color: #526a82;
  font-size: 12px;
  font-weight: 750;
}

.detail-page .product-procurement-workbench__data dd {
  color: #243d57;
  font-size: 13px;
  line-height: 1.45;
}

.detail-page .product-model-table {
  overflow: auto;
  border: 1px solid var(--detail-border);
  border-radius: var(--detail-radius);
  background: #fff;
}

.detail-page .product-model-table table {
  width: 100%;
  border-collapse: collapse;
}

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

.detail-page .product-dimension-grid article {
  overflow: hidden;
  border: 1px solid #bcd5eb;
  border-radius: var(--detail-radius);
  background:
    linear-gradient(rgba(40, 112, 178, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 112, 178, .06) 1px, transparent 1px),
    #f2f8fd;
  background-size: 24px 24px, 24px 24px, auto;
}

.detail-page .product-dimension-grid header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid #c9ddec;
  background: rgba(255, 255, 255, .72);
}

.detail-page .product-dimension-grid header span {
  color: var(--detail-blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
}

.detail-page .product-dimension-grid h3 {
  margin: 0;
  color: var(--detail-ink);
  font-size: 17px;
}

.detail-page .product-dimension-grid img {
  width: 100%;
  height: 180px;
  padding: 12px 16px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.detail-page .product-dimension-note {
  margin: 12px 0 0;
  color: #62778c;
  font-size: 12px;
  text-align: right;
}

.detail-page .product-model-table table {
  min-width: 900px;
}

.detail-page .product-model-table th,
.detail-page .product-model-table td {
  height: 34px;
  padding: 5px 12px;
  border-bottom: 1px solid #e5edf5;
  text-align: left;
  white-space: nowrap;
}

.detail-page .product-model-table th {
  color: #fff;
  background: var(--detail-navy);
  font-size: 13px;
  font-weight: 700;
}

.detail-page .product-model-table td {
  color: #344c65;
  font-size: 12px;
}

.detail-page .product-model-table tbody tr:hover,
.detail-page .product-model-table tr.is-recommended {
  background: #eef7ff;
}

.detail-page .product-model-table tbody tr:last-child td {
  border-bottom: 0;
}

.detail-page .product-model-table td a {
  color: var(--detail-blue);
  font-weight: 750;
}

.detail-page .product-model-badge {
  display: inline-flex;
  margin-right: 8px;
  padding: 3px 7px;
  color: #fff;
  border-radius: 3px;
  background: var(--detail-blue);
  font-size: 10px;
  font-weight: 800;
}

.detail-page .product-application-band {
  display: grid;
  grid-template-columns: 76px minmax(240px, 280px) minmax(0, 1fr);
  min-height: 220px;
  overflow: hidden;
  color: var(--detail-ink);
  border-top: 1px solid var(--detail-border);
  border-bottom: 1px solid var(--detail-border);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.detail-page .product-application-band__spine {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  color: #fff;
  background: var(--detail-navy);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .16em;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.detail-page .product-application-band__heading {
  display: flex;
  min-width: 0;
  align-items: center;
  padding: 36px 42px;
  border-right: 1px solid var(--detail-border);
  background: #fff;
}

.detail-page .product-application-band__heading h2 {
  margin: 0;
  color: var(--detail-ink);
  font-size: clamp(28px, 2.35vw, 40px);
  font-weight: 760;
  letter-spacing: -.025em;
  line-height: 1.15;
}

.detail-page .product-application-band__scenes {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px;
  background: var(--detail-border);
}

.detail-page .product-application-band__scene {
  display: grid;
  min-width: 0;
  min-height: 220px;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 34px 40px;
  background: #fff;
}

.detail-page .product-application-band__index {
  color: var(--detail-blue);
  font-size: clamp(54px, 5vw, 78px);
  font-variant-numeric: tabular-nums;
  font-weight: 820;
  letter-spacing: -.06em;
  line-height: .9;
}

.detail-page .product-application-band__scene h3 {
  max-width: 100%;
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--detail-ink);
  font-size: clamp(20px, 1.65vw, 28px);
  font-weight: 720;
  letter-spacing: -.015em;
  line-height: 1.3;
}

.detail-page .product-quality {
  padding-block: 0;
  border-bottom: 0;
}

.detail-page .product-quality-gallery {
  position: relative;
  min-height: 448px;
  padding: 48px 0 42px;
  overflow: hidden;
  border-top: 1px solid var(--detail-border);
  border-bottom: 1px solid var(--detail-border);
  background: #fff;
  box-shadow: none;
}

.detail-page .product-quality-gallery__watermark {
  position: absolute;
  top: 30px;
  right: 35px;
  color: #f1f5f8;
  font-size: clamp(66px, 8vw, 120px);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
  pointer-events: none;
}

.detail-page .product-quality-gallery__heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(420px, 1.2fr);
  align-items: end;
  gap: 64px;
  padding: 0 44px 30px;
}

.detail-page .product-quality-gallery__heading > div > span {
  display: block;
  color: var(--detail-blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1.2;
}

.detail-page .product-quality-gallery__heading h2 {
  margin: 9px 0 0;
  color: var(--detail-ink);
  font-size: clamp(27px, 2.1vw, 32px);
  letter-spacing: -.025em;
  line-height: 1.16;
}

.detail-page .product-quality-gallery__summary {
  display: grid;
  max-width: 660px;
  gap: 12px;
}

.detail-page .product-quality-gallery__summary > p {
  margin: 0 0 2px;
  color: var(--detail-muted);
  font-size: 13px;
  line-height: 1.75;
}

.detail-page .product-quality-gallery__product-certification {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.detail-page .product-quality-gallery__product-certification span {
  flex: 0 0 auto;
  color: #7890a5;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}

.detail-page .product-quality-gallery__product-certification strong {
  overflow-wrap: anywhere;
  color: #234764;
  font-size: 12px;
  line-height: 1.5;
}

.detail-page .product-quality-gallery__stage {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 230px;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: stretch;
  padding: 24px 12px 18px;
  background: #eef1f3;
}

.detail-page .product-quality-gallery__item {
  position: relative;
  display: grid;
  min-width: 0;
  align-content: center;
  justify-items: center;
  gap: 8px;
  padding: 14px 8px;
  text-align: center;
}

.detail-page .product-quality-gallery__item::after {
  position: absolute;
  right: 24%;
  bottom: 25px;
  left: 24%;
  height: 2px;
  background: #bfd4e6;
  content: "";
}

.detail-page .product-quality-gallery__item:nth-child(1)::after,
.detail-page .product-quality-gallery__item:nth-child(4)::after,
.detail-page .product-quality-gallery__item:nth-child(5)::after {
  background: var(--detail-blue);
}

.detail-page .product-quality-gallery__logo {
  display: grid;
  width: 92px;
  height: 74px;
  place-items: center;
}

.detail-page .product-quality-gallery__logo img {
  width: auto;
  height: auto;
  max-width: 86px;
  max-height: 70px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.detail-page .product-quality-gallery__item-copy {
  display: grid;
  min-width: 0;
  gap: 6px;
}

.detail-page .product-quality-gallery__item-copy strong {
  overflow-wrap: anywhere;
  color: #173f69;
  font-size: 11px;
  font-weight: 820;
  line-height: 1.25;
}

.detail-page .product-quality-gallery__item-copy small {
  overflow-wrap: anywhere;
  color: #788b9d;
  font-size: 9px;
  line-height: 1.35;
}

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

.detail-page .product-related-grid article {
  overflow: hidden;
  border: 1px solid var(--detail-border);
  border-radius: var(--detail-radius);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.detail-page .product-related-grid article:hover {
  border-color: #a8c9e8;
  box-shadow: var(--detail-shadow);
  transform: translateY(-2px);
}

.detail-page .product-related__image {
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  height: 160px;
  padding: 12px;
  overflow: hidden;
  place-items: center;
  background: #fff;
}

.detail-page .product-related__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.detail-page .product-related-grid article > div {
  padding: 12px 16px 14px;
  border-top: 1px solid var(--detail-border);
}

.detail-page .product-related-grid small {
  color: var(--detail-blue);
  font-size: 11px;
  font-weight: 800;
}

.detail-page .product-related-grid h3 {
  min-height: 40px;
  margin: 6px 0 4px;
  color: var(--detail-ink);
  font-size: 15px;
  line-height: 1.45;
}

.detail-page .product-related-grid p {
  margin: 0 0 14px;
  color: var(--detail-muted);
  font-size: 13px;
}

.detail-page .product-related-grid article > div > a {
  color: var(--detail-blue);
  font-size: 13px;
  font-weight: 750;
}

.detail-page .product-quote-panel,
.detail-page .product-inquiry-hub {
  display: grid;
  grid-template-columns: minmax(300px, 34%) minmax(0, 66%);
  gap: 0;
  margin-top: 12px;
  padding: 0;
  overflow: hidden;
  color: var(--detail-ink);
  border: 1px solid var(--detail-border);
  border-radius: var(--detail-radius);
  background: #fff;
  box-shadow: none;
}

.detail-page .product-inquiry-hub .product-quote__copy {
  padding: 44px 40px;
  color: #fff;
  background: var(--detail-navy);
}

.detail-page .product-quote__copy > span {
  color: #88c9ff;
}

.detail-page .product-quote__copy h2 {
  color: #fff;
  font-size: 30px;
}

.detail-page .product-quote__copy > p {
  margin: 12px 0 26px;
  color: #d2e7f9;
  line-height: 1.7;
}

.detail-page .product-quote__copy ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-page .product-quote__copy li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.detail-page .product-quote__copy li > svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  color: #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  flex: 0 0 auto;
}

.detail-page .product-quote__copy li span {
  display: grid;
  gap: 2px;
  color: #bcd8ee;
  font-size: 12px;
}

.detail-page .product-quote__copy li strong {
  color: #fff;
  font-size: 15px;
}

.detail-page .product-inquiry-hub__form {
  display: block;
  min-width: 0;
  padding: 28px 32px 26px;
  color: var(--detail-ink);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.detail-page .product-inquiry-hub__tabs {
  display: flex;
  min-height: 48px;
  gap: 28px;
  border-bottom: 1px solid var(--detail-border);
}

.detail-page .product-inquiry-hub__tabs [role="tab"] {
  position: relative;
  padding: 0 2px 15px;
  color: var(--detail-muted);
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 750;
}

.detail-page .product-inquiry-hub__tabs [role="tab"]:focus-visible {
  outline: 2px solid var(--detail-blue);
  outline-offset: 2px;
}

.detail-page .product-inquiry-hub__tabs [aria-selected="true"] {
  color: var(--detail-navy);
}

.detail-page .product-inquiry-hub__tabs [aria-selected="true"]::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--detail-blue);
  content: "";
}

.detail-page .product-inquiry-hub__panel,
.detail-page .product-inquiry-hub__shared-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  row-gap: 14px;
  column-gap: 12px;
}

.detail-page .product-inquiry-hub__panel {
  margin-top: 14px;
}

.detail-page .product-inquiry-hub__shared-fields {
  margin-top: 14px;
}

.detail-page .product-inquiry-hub__panel[hidden],
.detail-page .product-inquiry-hub__status[hidden],
.detail-page .product-inquiry-hub__success[hidden],
.detail-page .product-inquiry-hub [data-product-inquiry-content][hidden] {
  display: none;
}

.detail-page .product-inquiry-hub__status {
  margin: 14px 0 0;
  padding: 10px 12px;
  color: #8a2732;
  border-left: 3px solid #d94b5a;
  background: #fff3f4;
  font-size: 12px;
}

.detail-page .product-inquiry-hub__success {
  display: grid;
  min-height: 320px;
  align-content: center;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.detail-page .product-quote__context {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  padding: 9px 12px;
  border: 1px solid #cfe1f1;
  border-radius: var(--detail-radius-sm);
  background: #f3f8fd;
}

.detail-page .product-quote__context span,
.detail-page .product-quote__context small {
  color: var(--detail-muted);
  font-size: 12px;
}

.detail-page .product-quote__context strong {
  min-width: 0;
  overflow: hidden;
  color: var(--detail-navy);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-page .product-field {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  margin: 0;
}

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

.detail-page .product-field > span {
  color: #405a73;
  font-size: 13px;
  font-weight: 700;
}

.detail-page .product-field b {
  color: #e34955;
}

.detail-page .product-field input,
.detail-page .product-field select,
.detail-page .product-field textarea {
  width: 100%;
  color: var(--detail-ink);
  border: 1px solid #cfddea;
  border-radius: 4px;
  outline: 0;
  background: #fff;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.detail-page .product-field input,
.detail-page .product-field select {
  height: 40px;
  padding: 0 12px;
}

.detail-page .product-field textarea {
  min-height: 62px;
  padding: 12px;
  resize: vertical;
}

.detail-page .product-field input:focus,
.detail-page .product-field select:focus,
.detail-page .product-field textarea:focus {
  border-color: var(--detail-blue);
  box-shadow: 0 0 0 3px rgba(8, 111, 214, .11);
}

.detail-page .product-quote__submit {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 14px;
}

.detail-page .product-quote__privacy {
  grid-column: 1 / -1;
  margin: 6px 0 0;
  color: #62778c;
  font-size: 11px;
  text-align: center;
}

.detail-page .product-message-dialog {
  width: min(620px, calc(100vw - 32px));
  max-width: none;
  max-height: min(820px, calc(100vh - 32px));
  padding: 0;
  overflow: hidden;
  color: var(--detail-ink);
  border: 1px solid var(--detail-border);
  border-radius: var(--detail-radius);
  background: #fff;
  box-shadow: none;
}

.detail-page .product-message-dialog::backdrop {
  background: rgba(5, 27, 50, .66);
  backdrop-filter: blur(2px);
}

.detail-page .product-message-dialog[open] {
  display: block;
}

.detail-page .product-message-dialog [hidden] {
  display: none !important;
}

.detail-page .product-message-dialog__surface {
  position: relative;
  max-height: min(820px, calc(100vh - 32px));
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #fff;
}

.detail-page .product-message-dialog__close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  display: grid;
  width: 40px;
  height: 40px;
  padding: 0;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .36);
  border-radius: 50%;
  background: transparent;
  place-items: center;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease;
}

.detail-page .product-message-dialog__close:hover {
  color: var(--detail-navy);
  border-color: #fff;
  background: #fff;
}

.detail-page .product-message-dialog__header {
  padding: 30px 76px 26px 30px;
  color: #fff;
  background: var(--detail-navy);
}

.detail-page .product-message-dialog__header > span {
  display: block;
  margin-bottom: 8px;
  color: #8bc6ff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
}

.detail-page .product-message-dialog__header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(27px, 3vw, 34px);
  line-height: 1.18;
}

.detail-page .product-message-dialog__header p {
  margin: 10px 0 0;
  color: #c5d9ec;
  font-size: 14px;
  line-height: 1.6;
}

.detail-page .product-message-dialog__product {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px 14px;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid var(--detail-border);
  background: #f5f8fb;
}

.detail-page .product-message-dialog__product span {
  color: #405a73;
  font-size: 12px;
  font-weight: 700;
}

.detail-page .product-message-dialog__product strong {
  min-width: 0;
  overflow: hidden;
  color: var(--detail-ink);
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-page .product-message-dialog__product small {
  color: var(--detail-blue-dark);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.detail-page .product-message-dialog__status {
  margin: 20px 28px 0;
  padding: 11px 13px;
  color: #8b4b00;
  border: 1px solid #efd3a8;
  background: #fff8ec;
  font-size: 13px;
  line-height: 1.5;
}

.detail-page .product-message-dialog__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px 28px 28px;
}

.detail-page .product-message-dialog__form label {
  display: grid;
  gap: 7px;
  min-width: 0;
  margin: 0;
}

.detail-page .product-message-dialog__form label > span {
  color: #405a73;
  font-size: 12px;
  font-weight: 800;
}

.detail-page .product-message-dialog__form b {
  color: #d94250;
}

.detail-page .product-message-dialog__form input,
.detail-page .product-message-dialog__form textarea {
  width: 100%;
  min-width: 0;
  color: var(--detail-ink);
  border: 1px solid #cfddea;
  border-radius: 4px;
  outline: 0;
  background: #fff;
  font: inherit;
  font-size: 14px;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.detail-page .product-message-dialog__form input {
  height: 44px;
  padding: 0 12px;
}

.detail-page .product-message-dialog__form textarea {
  min-height: 112px;
  padding: 12px;
  line-height: 1.55;
  resize: vertical;
}

.detail-page .product-message-dialog__form input:focus,
.detail-page .product-message-dialog__form textarea:focus {
  border-color: var(--detail-blue);
  box-shadow: 0 0 0 3px rgba(8, 111, 214, .11);
}

.detail-page .product-message-dialog__message,
.detail-page .product-message-dialog__buttons {
  grid-column: 1 / -1;
}

.detail-page .product-message-dialog__buttons {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
  gap: 10px;
  margin-top: 2px;
}

.detail-page .product-message-dialog__buttons button,
.detail-page .product-message-dialog__success button {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 4px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease;
}

.detail-page .product-message-dialog__buttons button[type="button"] {
  color: #405a73;
  border: 1px solid #cfddea;
  background: #fff;
}

.detail-page .product-message-dialog__buttons button[type="button"]:hover {
  border-color: #9db4c8;
  background: #f5f8fb;
}

.detail-page .product-message-dialog__buttons button[type="submit"],
.detail-page .product-message-dialog__success button {
  color: #fff;
  border: 1px solid var(--detail-blue);
  background: var(--detail-blue);
}

.detail-page .product-message-dialog__buttons button[type="submit"]:hover,
.detail-page .product-message-dialog__success button:hover {
  border-color: var(--detail-blue-dark);
  background: var(--detail-blue-dark);
}

.detail-page .product-message-dialog__buttons button:disabled {
  cursor: wait;
  opacity: .64;
}

.detail-page .product-message-dialog__success {
  padding: 52px 30px 44px;
  text-align: center;
}

.detail-page .product-message-dialog__success > span {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  color: #fff;
  border-radius: 50%;
  background: var(--detail-blue);
  place-items: center;
  font-size: 26px;
  font-weight: 800;
}

.detail-page .product-message-dialog__success h3 {
  margin: 0;
  color: var(--detail-ink);
  font-size: 26px;
}

.detail-page .product-message-dialog__success p {
  max-width: 380px;
  margin: 12px auto 24px;
  color: var(--detail-muted);
  font-size: 14px;
  line-height: 1.65;
}

.detail-page .product-message-dialog__success button {
  min-width: 150px;
}

.detail-page .product-detail-shell :focus-visible {
  outline: 3px solid rgba(22, 135, 248, .34);
  outline-offset: 3px;
}

@media (max-width: 620px) {
  .detail-page .product-message-dialog__header {
    padding: 26px 62px 22px 20px;
  }

  .detail-page .product-message-dialog__product {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 20px;
  }

  .detail-page .product-message-dialog__product strong {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }

  .detail-page .product-message-dialog__product small {
    white-space: normal;
  }

  .detail-page .product-message-dialog__status {
    margin: 16px 20px 0;
  }

  .detail-page .product-message-dialog__form {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  .detail-page .product-message-dialog__message,
  .detail-page .product-message-dialog__buttons {
    grid-column: auto;
  }

  .detail-page .product-message-dialog__buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-page .product-message-dialog__success {
    padding: 44px 20px 38px;
  }
}

@media (max-width: 360px) {
  .detail-page .product-hero-quick-form__actions {
    gap: 6px;
  }

  .detail-page .product-hero-quick-form__download,
  .detail-page .product-hero-quick-form__message-button {
    padding-inline: 8px;
    font-size: 12px;
  }
}

@media (max-width: 1200px) {
  .detail-page .product-detail-shell {
    width: min(1440px, calc(100% - 40px));
  }

  .detail-page .product-detail-hero {
    grid-template-columns: minmax(0, 40%) minmax(0, 60%);
    grid-template-rows: minmax(0, 1fr) auto;
    grid-template-areas:
      "gallery summary"
      "gallery inquiry";
    gap: 0;
    min-height: 660px;
  }

  .detail-page .product-hero-quick-form {
    grid-area: inquiry;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 40%);
    grid-template-rows: 1fr;
    gap: 0;
    min-height: 208px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
  }

  .detail-page .product-hero-quick-form__intro {
    display: grid;
    padding: 26px 30px;
    border: 0;
  }

  .detail-page .product-hero-quick-form__intro strong {
    font-size: 20px;
  }

  .detail-page .product-hero-quick-form__intro p {
    margin-top: 8px;
  }

  .detail-page .product-hero-quick-form__fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 38px 42px 42px;
    gap: 10px 12px;
    padding: 18px 22px;
    border-left: 0;
  }

  .detail-page .product-hero-quick-form__message {
    grid-column: 1 / -1;
  }

  .detail-page .product-hero-quick-form__fields textarea {
    min-height: 42px;
  }

  .detail-page .product-hero-quick-form__fields button {
    grid-column: 1 / -1;
    grid-row: auto;
    justify-self: stretch;
    width: 100%;
    height: 42px;
    min-height: 42px;
  }

  .detail-page .product-gallery__stage {
    height: 100%;
    min-height: 660px;
  }

  .detail-page .product-gallery {
    min-height: 660px;
  }

  .detail-page .product-summary {
    padding: 36px 40px 24px;
    border: 0;
  }

  .detail-page .product-summary h1 {
    font-size: clamp(32px, 3.3vw, 40px);
  }

  .detail-page .product-detail-proof article {
    padding-inline: 16px;
  }

  .detail-page .product-related-grid {
    gap: 14px;
  }

  .detail-page .product-quality-gallery {
    padding-inline: 0;
  }

  .detail-page .product-quality-gallery__heading {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
    gap: 36px;
    padding-inline: 36px;
  }

  .detail-page .product-quality-gallery__stage {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .detail-page .product-quality-gallery__item {
    min-height: 170px;
  }

  .detail-page .product-quality-gallery__item::after {
    bottom: 18px;
  }

}

@media (max-width: 900px) {
  .detail-page .product-detail-hero {
    grid-template-columns: 1fr;
  }

  .detail-page .product-inquiry-hub {
    grid-template-columns: 1fr;
  }

  .detail-page .product-inquiry-hub .product-quote__copy {
    padding: 34px 32px;
  }

  .detail-page .product-procurement-workbench__frame {
    grid-template-columns: 1fr;
  }

  .detail-page .product-procurement-workbench__overview {
    border-right: 0;
    border-bottom: 1px solid var(--detail-border);
  }

  .detail-page .product-procurement-workbench__visual {
    min-height: 380px;
  }

  .detail-page .product-procurement-workbench__visual img {
    max-height: 380px;
    padding: 32px 80px;
  }

  .detail-page .product-procurement-workbench__parameters {
    padding: 0 32px 28px;
  }

  .detail-page .product-detail-hero {
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "gallery"
      "summary"
      "inquiry";
    min-height: 0;
    overflow: visible;
  }

  .detail-page .product-summary {
    padding: 44px 32px 38px;
    border: 0;
  }

  .detail-page .product-gallery {
    min-height: 460px;
    padding: 0;
    border: 0;
  }

  .detail-page .product-gallery__stage {
    min-height: 460px;
  }

  .detail-page .product-gallery__stage > img {
    width: min(58%, 360px);
    height: min(62%, 340px);
  }

  .detail-page .product-hero-quick-form {
    grid-area: inquiry;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 42%);
    min-height: 208px;
  }

  .detail-page .product-hero-quick-form__intro {
    padding: 28px 32px;
  }

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

  .detail-page .product-detail-proof article:nth-child(2) {
    border-right: 0;
  }

  .detail-page .product-detail-proof article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--detail-border);
  }

  .detail-page .product-detail-anchor-nav {
    display: flex;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
  }

  .detail-page .product-detail-anchor-nav a {
    min-width: 128px;
    flex: 0 0 auto;
  }

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

  .detail-page .product-application-band {
    grid-template-columns: 60px minmax(0, 1fr);
    min-height: 0;
  }

  .detail-page .product-application-band__spine {
    min-height: 116px;
    padding: 18px 0;
  }

  .detail-page .product-application-band__heading {
    min-height: 116px;
    padding: 28px 32px;
    border-right: 0;
  }

  .detail-page .product-application-band__scenes {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid var(--detail-border);
  }

  .detail-page .product-application-band__scene {
    min-height: 158px;
    padding: 30px 34px;
  }

  .detail-page .product-quality-gallery {
    padding: 42px 0 34px;
  }

  .detail-page .product-quality-gallery__heading {
    padding-inline: 30px;
  }

}

@media (max-width: 760px) {
  .detail-page .product-detail-main {
    padding: 12px 0 24px;
  }

  .detail-page .product-detail-shell {
    --detail-module-gap: 20px;
    width: calc(100% - 32px);
  }

  .detail-page .product-breadcrumb {
    margin-bottom: 12px;
  }

  .detail-page .product-gallery {
    min-height: 380px;
    padding: 0;
  }

  .detail-page .product-gallery__stage {
    height: 380px;
    min-height: 380px;
  }

  .detail-page .product-gallery__rail {
    display: flex;
    gap: 7px;
    overflow: visible;
    padding: 8px 0;
  }

  .detail-page .product-hero-quick-form {
    grid-area: inquiry;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    min-height: 0;
    margin: 0;
    padding: 0;
  }

  .detail-page .product-hero-quick-form__intro {
    padding: 26px 24px;
    border: 0;
  }

  .detail-page .product-hero-quick-form__fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 42px 44px 44px;
    padding: 20px 24px 24px;
    border-left: 0;
  }

  .detail-page .product-hero-quick-form__message,
  .detail-page .product-hero-quick-form__fields button {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .detail-page .product-hero-quick-form__fields textarea {
    min-height: 44px;
  }

  .detail-page .product-hero-quick-form__fields button {
    height: 44px;
  }

  .detail-page .product-gallery__thumb {
    width: 38px;
    height: 24px;
    flex: 0 0 38px;
  }

  .detail-page .product-summary {
    padding: 38px 24px 34px;
  }

  .detail-page .product-summary h1 {
    font-size: clamp(30px, 4.2vw, 32px);
    white-space: normal;
  }

  .detail-page .product-detail-section {
    padding: 36px 0;
  }

  .detail-page .product-section-heading--row {
    display: grid;
    gap: 12px;
  }

  .detail-page .product-section-heading--row p {
    text-align: left;
  }

  .detail-page .product-dimension-grid {
    grid-template-columns: 1fr;
  }

  .detail-page .product-dimension-grid img {
    height: 220px;
  }

  .detail-page .product-quality-gallery {
    min-height: 0;
    padding: 40px 0 30px;
  }

  .detail-page .product-quality-gallery__watermark {
    top: 25px;
    right: 12px;
    font-size: 54px;
  }

  .detail-page .product-quality-gallery__heading {
    display: block;
    padding: 0 20px 22px;
  }

  .detail-page .product-quality-gallery__summary {
    margin-top: 13px;
  }

  .detail-page .product-quality-gallery__product-certification {
    display: grid;
    gap: 5px;
  }

  .detail-page .product-quality-gallery__stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 16px 6px 20px;
  }

  .detail-page .product-quality-gallery__item {
    min-height: 142px;
  }

  .detail-page .product-quality-gallery__item::after {
    right: 28%;
    bottom: 17px;
    left: 28%;
  }

}

@media (max-width: 520px) {
  .detail-page .product-detail-shell {
    --detail-module-gap: 16px;
    width: calc(100% - 24px);
  }

  .detail-page .product-breadcrumb {
    font-size: 12px;
  }

  .detail-page .product-gallery__stage {
    height: 320px;
    min-height: 320px;
  }

  .detail-page .product-gallery {
    min-height: 320px;
    padding: 0;
  }

  .detail-page .product-gallery__thumb {
    width: 32px;
    height: 24px;
    flex-basis: 32px;
  }

  .detail-page .product-gallery__tools {
    display: none;
  }

  .detail-page .product-hero-quick-form {
    gap: 0;
  }

  .detail-page .product-hero-quick-form__intro {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 24px 20px;
  }

  .detail-page .product-hero-quick-form__fields {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 42px);
    padding: 18px 20px 22px;
  }

  .detail-page .product-hero-quick-form__fields button {
    width: 100%;
  }

  .detail-page .product-summary h1 {
    font-size: 30px;
  }

  .detail-page .product-summary__model {
    font-size: 16px;
  }

  .detail-page .product-summary__subtitle {
    font-size: 15px;
  }

  .detail-page .product-key-specs article {
    grid-template-columns: 1fr;
    min-height: 70px;
    padding: 12px 10px;
    border-right: 1px solid var(--detail-border);
    border-bottom: 1px solid var(--detail-border);
  }

  .detail-page .product-key-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-page .product-key-specs article:nth-child(2n) {
    border-right: 0;
  }

  .detail-page .product-key-specs article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .detail-page .product-key-specs article:first-child {
    padding-left: 10px;
  }

  .detail-page .product-key-specs svg {
    display: none;
  }

  .detail-page .product-key-specs strong {
    font-size: 14px;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .detail-page .product-option-group {
    display: block;
  }

  .detail-page .product-configurator {
    grid-template-columns: 1fr;
  }

  .detail-page .product-option-group:nth-of-type(2) {
    grid-column: auto;
    grid-row: auto;
  }

  .detail-page .product-option-group:nth-of-type(1),
  .detail-page .product-option-group:nth-of-type(3) {
    grid-column: auto;
    grid-row: auto;
  }

  .detail-page .product-option-group > span {
    padding-top: 0;
  }

  .detail-page .product-summary__actions {
    grid-template-columns: 1fr;
  }

  .detail-page .product-summary__links {
    justify-content: space-between;
    gap: 12px;
  }

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

  .detail-page .product-detail-proof article {
    display: flex;
    justify-content: flex-start;
    min-height: 82px;
    padding: 12px;
    border-right: 1px solid var(--detail-border);
    text-align: left;
  }

  .detail-page .product-detail-proof article:nth-child(2n) {
    border-right: 0;
  }

  .detail-page .product-detail-proof svg {
    width: 36px;
    height: 36px;
  }

  .detail-page .product-detail-proof strong {
    font-size: 14px;
  }

  .detail-page .product-detail-anchor-nav a {
    min-width: 108px;
    font-size: 13px;
  }

  .detail-page .product-detail-section {
    padding: 32px 0;
  }

  .detail-page .product-section-heading h2,
  .detail-page .product-quote__copy h2 {
    font-size: 27px;
  }

  .detail-page .product-procurement-workbench__heading {
    min-height: 0;
    padding: 24px 20px;
  }

  .detail-page .product-procurement-workbench__heading h2,
  .detail-page .product-procurement-workbench__parameter-heading h2 {
    font-size: 24px;
  }

  .detail-page .product-procurement-workbench__visual {
    min-height: 260px;
  }

  .detail-page .product-procurement-workbench__visual img {
    max-height: 280px;
    padding: 20px 30px;
  }

  .detail-page .product-procurement-workbench__facts article {
    min-height: 100px;
    gap: 8px;
    padding: 14px 10px;
  }

  .detail-page .product-procurement-workbench__facts strong {
    font-size: 14px;
  }

  .detail-page .product-procurement-workbench__parameters {
    padding: 0 18px 20px;
  }

  .detail-page .product-procurement-workbench__parameter-heading {
    min-height: 92px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }

  .detail-page .product-procurement-workbench__parameter-heading p {
    text-align: left;
  }

  .detail-page .product-procurement-workbench__metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-page .product-procurement-workbench__metrics article {
    min-height: 92px;
    border-bottom: 1px solid var(--detail-border);
  }

  .detail-page .product-procurement-workbench__metrics article:nth-child(2n) {
    border-right: 0;
  }

  .detail-page .product-procurement-workbench__metrics article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .detail-page .product-procurement-workbench__data {
    grid-template-columns: 1fr;
  }

  .detail-page .product-procurement-workbench__data > div {
    grid-template-columns: 92px minmax(0, 1fr);
    border-right: 0;
  }

  .detail-page .product-dimension-grid img {
    height: 240px;
    padding: 18px;
  }

  .detail-page .product-related-grid {
    grid-template-columns: 1fr;
  }

  .detail-page .product-application-band {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .detail-page .product-application-band__spine {
    min-height: 102px;
    padding: 14px 0;
    font-size: 10px;
  }

  .detail-page .product-application-band__heading {
    min-height: 102px;
    padding: 22px 20px;
  }

  .detail-page .product-application-band__heading h2 {
    font-size: 26px;
  }

  .detail-page .product-application-band__scenes {
    grid-template-columns: 1fr;
  }

  .detail-page .product-application-band__scene {
    min-height: 112px;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 16px;
    padding: 24px 20px;
  }

  .detail-page .product-application-band__index {
    font-size: 42px;
  }

  .detail-page .product-application-band__scene h3 {
    font-size: 19px;
  }

  .detail-page .product-quality-gallery {
    padding: 34px 0 24px;
  }

  .detail-page .product-quality-gallery__heading {
    padding-inline: 14px;
  }

  .detail-page .product-quality-gallery__watermark {
    right: 8px;
    font-size: 46px;
  }

  .detail-page .product-quality-gallery__stage {
    padding-inline: 4px;
  }

  .detail-page .product-quality-gallery__item {
    min-height: 156px;
    padding-inline: 4px;
  }

  .detail-page .product-quality-gallery__item::after {
    bottom: 10px;
  }

  .detail-page .product-quality-gallery__logo {
    width: 74px;
    height: 62px;
  }

  .detail-page .product-quality-gallery__logo img {
    max-width: 68px;
    max-height: 58px;
  }

  .detail-page .product-related__image {
    height: 150px;
  }

  .detail-page .product-inquiry-hub {
    margin-right: 0;
    margin-left: 0;
    border-radius: 0;
  }

  .detail-page .product-inquiry-hub .product-quote__copy,
  .detail-page .product-inquiry-hub__form {
    padding: 26px 20px;
  }

  .detail-page .product-inquiry-hub__tabs {
    gap: 0;
  }

  .detail-page .product-inquiry-hub__tabs [role="tab"] {
    width: 50%;
    padding-inline: 4px;
    white-space: nowrap;
  }

  .detail-page .product-inquiry-hub__panel,
  .detail-page .product-inquiry-hub__shared-fields {
    grid-template-columns: 1fr;
  }

  .detail-page .product-field {
    grid-template-columns: 1fr;
    gap: 6px;
    align-items: stretch;
  }

  .detail-page .product-field--wide,
  .detail-page .product-quote__context,
  .detail-page .product-quote__submit,
  .detail-page .product-quote__privacy {
    grid-column: auto;
  }

  .detail-page .product-quote__context {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}

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