:root {
  --ink: #111820;
  --muted: #5d6873;
  --line: #d8dee5;
  --paper: #ffffff;
  --soft: #f3f6f8;
  --blue: #155eef;
  --blue-dark: #0f46b7;
  --red: #e5484d;
  --green: #167447;
  --focus: #ffb020;
  --shell: min(1180px, calc(100% - 40px));
  --shadow: 0 18px 44px rgba(17, 24, 32, 0.16);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.55;
}

body.is-dialog-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
}

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  transform: translateY(-160%);
  padding: 10px 14px;
  color: #fff;
  background: var(--blue);
  border-radius: 4px;
}

.skip-link:focus {
  transform: none;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.trade-strip {
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.trade-strip__inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.trade-strip__terms {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #bdc7d1;
}

.trade-strip__terms span + span::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  margin-right: 18px;
  vertical-align: middle;
  border-radius: 50%;
  background: var(--red);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(216, 222, 229, 0.92);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  min-width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.brand svg {
  width: 36px;
  height: 36px;
  color: var(--blue);
}

.brand b {
  color: var(--blue);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a {
  padding: 24px 0 22px;
  border-bottom: 2px solid transparent;
}

.main-nav a:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  height: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

.language-switch button {
  width: 40px;
  border: 0;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.language-switch button.is-active {
  color: #fff;
  background: var(--ink);
}

.quote-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.quote-button:hover {
  border-color: var(--blue);
  background: var(--blue);
}

.quote-count {
  min-width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  border-radius: 11px;
  color: var(--ink);
  background: #fff;
  font-size: 11px;
}

.menu-button {
  width: 40px;
  height: 40px;
  display: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  font-size: 21px;
  cursor: pointer;
}

.mobile-nav {
  padding: 8px 20px 18px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.mobile-nav a {
  display: block;
  padding: 11px 0;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: min(720px, calc(100vh - 72px));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #dfe4e8;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media {
  background-image: url("/assets/hero.webp");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.hero__shade {
  background: rgba(248, 250, 251, 0.12);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-top: 64px;
  padding-bottom: 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(42px, 6.1vw, 76px);
  font-weight: 820;
  line-height: 0.98;
  text-wrap: balance;
}

.hero__lead {
  max-width: 560px;
  margin: 28px 0 0;
  color: #33404c;
  font-size: 19px;
  line-height: 1.55;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

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

.button--primary:hover {
  background: var(--blue-dark);
}

.button--light {
  border-color: rgba(17, 24, 32, 0.32);
  background: rgba(255, 255, 255, 0.86);
}

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

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

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

.button--large {
  min-height: 56px;
  padding-inline: 28px;
}

.hero__facts {
  display: flex;
  gap: 0;
  margin: 46px 0 0;
}

.hero__facts div {
  min-width: 145px;
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px solid rgba(17, 24, 32, 0.24);
}

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

.hero__facts dt {
  font-size: 23px;
  font-weight: 850;
  line-height: 1.2;
}

.hero__facts dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.category-section,
.catalog-section,
.assurance-section {
  padding: 104px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-heading--row {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  gap: 64px;
}

.section-heading h2,
.delivery-copy h2,
.cta-layout h2 {
  margin: 0;
  font-size: clamp(32px, 4.3vw, 50px);
  line-height: 1.08;
  text-wrap: balance;
}

.section-heading > p:last-child,
.section-heading--row > p,
.delivery-copy > p,
.cta-layout > div > p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
}

.section-heading--row > p {
  margin: 0 0 4px;
}

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

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

.category-card:hover {
  border-color: #aeb7c1;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(17, 24, 32, 0.12);
}

.category-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--soft);
}

.category-card__body {
  min-height: 94px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 17px 18px;
}

.category-card__number {
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
}

.category-card strong,
.category-card small {
  display: block;
}

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

.category-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.category-card__arrow {
  font-size: 24px;
  transition: transform 160ms ease;
}

.category-card:hover .category-card__arrow {
  transform: translateX(4px);
}

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

.catalog-toolbar {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.filter-tabs button {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.filter-tabs button:hover,
.filter-tabs button.is-active {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.catalog-refinements {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(190px, 1.2fr) minmax(240px, 1.7fr);
  gap: 8px;
}

.select-field {
  min-width: 0;
  height: 42px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.select-field:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 94, 239, 0.12);
}

.select-field select {
  width: 100%;
  height: 100%;
  min-width: 0;
  padding: 0 34px 0 12px;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  cursor: pointer;
}

.search-field {
  width: 100%;
  height: 42px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.search-field:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 94, 239, 0.12);
}

.search-field svg {
  width: 19px;
  height: 19px;
  color: var(--muted);
  flex: 0 0 auto;
}

.search-field input {
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 13px;
}

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

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

.product-card:hover {
  border-color: #abb5c0;
  box-shadow: 0 12px 30px rgba(17, 24, 32, 0.1);
}

.product-card__image-button {
  position: relative;
  padding: 0;
  border: 0;
  background: #eef1f3;
  cursor: pointer;
}

.product-card__image-button img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.product-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 8px;
  border-radius: 3px;
  color: #fff;
  background: var(--green);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.product-card__body {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 19px;
}

.product-card__code {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.product-card h3 {
  margin: 7px 0 0;
  font-size: 19px;
  line-height: 1.25;
}

.product-card__specs {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.product-card__footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 18px;
}

.product-card__footer.is-price-hidden {
  justify-content: flex-end;
}

.product-card__price span,
.product-card__price strong {
  display: block;
}

.product-card__price span {
  color: var(--muted);
  font-size: 11px;
}

.product-card__price strong {
  margin-top: 1px;
  font-size: 20px;
}

.product-card__actions {
  display: flex;
  gap: 6px;
}

.icon-button,
.add-button {
  min-height: 38px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.icon-button {
  width: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 19px;
}

.icon-button:hover {
  border-color: var(--ink);
}

.add-button {
  padding: 0 12px;
  border: 1px solid var(--ink);
  color: #fff;
  background: var(--ink);
}

.add-button:hover,
.add-button.is-added {
  border-color: var(--blue);
  background: var(--blue);
}

.empty-state {
  padding: 48px 0;
  color: var(--muted);
  text-align: center;
}

.delivery-section {
  padding: 104px 0;
  color: #fff;
  background: var(--ink);
}

.delivery-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 100px;
  align-items: start;
}

.delivery-copy {
  position: sticky;
  top: 116px;
}

.delivery-copy .eyebrow {
  color: #7fb0ff;
}

.delivery-copy > p {
  color: #bdc7d1;
  font-size: 17px;
}

.delivery-copy .button {
  margin-top: 20px;
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.delivery-copy .button:hover {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
}

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

.steps li {
  min-height: 126px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  padding: 26px 0;
  border-top: 1px solid #39434d;
}

.steps li:last-child {
  border-bottom: 1px solid #39434d;
}

.steps > li > span {
  color: #7fb0ff;
  font-size: 13px;
  font-weight: 850;
}

.steps strong {
  font-size: 20px;
}

.steps p {
  margin: 6px 0 0;
  color: #aeb9c4;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.assurance-grid article {
  min-height: 254px;
  padding: 28px 24px;
  border-right: 1px solid var(--line);
}

.assurance-grid article:first-child {
  padding-left: 0;
}

.assurance-grid article:last-child {
  border-right: 0;
  padding-right: 0;
}

.assurance-grid article > span {
  color: var(--red);
  font-size: 12px;
  font-weight: 850;
}

.assurance-grid h3 {
  margin: 48px 0 8px;
  font-size: 19px;
}

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

.cta-section {
  padding: 78px 0;
  border-top: 7px solid var(--red);
  background: #eaf0f7;
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 80px;
}

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

.site-footer {
  padding: 40px 0;
  color: #c4cdd5;
  background: #090d11;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 42px;
  font-size: 13px;
}

.brand--footer {
  color: #fff;
}

.site-footer p {
  margin: 0;
}

dialog {
  max-width: calc(100vw - 32px);
  padding: 0;
  border: 0;
  border-radius: 6px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
}

dialog::backdrop {
  background: rgba(5, 9, 13, 0.72);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.dialog-close:hover {
  color: #fff;
  background: var(--ink);
}

.product-dialog {
  width: min(920px, calc(100vw - 32px));
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.product-detail__media {
  min-width: 0;
  min-height: 510px;
  display: flex;
  flex-direction: column;
  background: var(--soft);
}

.product-detail__image {
  min-height: 0;
  width: 100%;
  flex: 1;
  object-fit: contain;
  background: var(--soft);
}

.product-detail__gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 82px;
  gap: 9px;
  overflow-x: auto;
  padding: 10px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.product-detail__thumbnail {
  width: 82px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--soft);
  cursor: pointer;
}

.product-detail__thumbnail.is-active {
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(213, 50, 49, .14);
}

.product-detail__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail__content {
  padding: 56px 44px 42px;
}

.product-detail__code {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.product-detail h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.15;
}

.product-detail__description {
  margin: 16px 0 24px;
  color: var(--muted);
}

.product-detail dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.product-detail dl div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.product-detail dt {
  color: var(--muted);
}

.product-detail dd {
  margin: 0;
  font-weight: 700;
  text-align: right;
}

.product-detail__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
}

.product-detail__bottom strong {
  font-size: 24px;
}

.quote-dialog {
  width: min(720px, calc(100vw - 32px));
  max-height: min(90vh, 900px);
  overflow: auto;
}

.quote-dialog__header {
  padding: 42px 48px 25px;
  border-bottom: 1px solid var(--line);
}

.quote-dialog__header h2 {
  margin: 0;
  padding-right: 36px;
  font-size: 34px;
  line-height: 1.15;
}

.quote-dialog__header > p:last-child {
  margin: 10px 0 0;
  color: var(--muted);
}

.inquiry-form {
  padding: 28px 48px 42px;
}

.selected-products {
  margin-bottom: 26px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--soft);
}

.selected-products__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
  font-size: 13px;
}

.selected-products__title button {
  padding: 0;
  border: 0;
  color: var(--blue);
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.selected-product-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 7px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.selected-product-item button {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  font-size: 20px;
  cursor: pointer;
}

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

.inquiry-form label > span,
.inquiry-form legend {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 750;
}

.inquiry-form input[type="text"],
.inquiry-form input[type="tel"],
.inquiry-form input:not([type]),
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  outline: 0;
}

.inquiry-form input[type="text"],
.inquiry-form input[type="tel"],
.inquiry-form input:not([type]) {
  min-height: 46px;
  padding: 0 12px;
}

.inquiry-form textarea {
  min-height: 108px;
  padding: 11px 12px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 94, 239, 0.12);
}

.inquiry-form > label,
.inquiry-form fieldset {
  display: block;
  margin: 18px 0 0;
}

.inquiry-form fieldset {
  padding: 0;
  border: 0;
}

.radio-label {
  display: inline-flex !important;
  align-items: center;
  gap: 7px;
  margin-right: 20px;
  cursor: pointer;
}

.radio-label > span {
  margin: 0 !important;
  font-weight: 500 !important;
}

.radio-label input {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-status {
  min-height: 22px;
  margin: 17px 0 0;
  color: var(--red);
  font-size: 13px;
}

.form-status.is-success {
  color: var(--green);
}

.button--submit {
  width: 100%;
}

.button--submit:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
}

.form-consent {
  margin: 12px auto 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  max-width: min(360px, calc(100vw - 40px));
  padding: 13px 16px;
  border-radius: 4px;
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 700;
  transform: translateY(140%);
  opacity: 0;
  transition: transform 200ms ease, opacity 200ms ease;
}

.toast.is-visible {
  transform: none;
  opacity: 1;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .hero {
    min-height: 680px;
  }

  .hero__media {
    background-position: 60% center;
  }

  .hero__content::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: -20px;
    width: min(690px, 78vw);
    background: rgba(244, 247, 249, 0.78);
  }

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

  .delivery-layout {
    grid-template-columns: 1fr 1fr;
    gap: 58px;
  }

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

  .assurance-grid article:nth-child(2) {
    border-right: 0;
  }

  .assurance-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .assurance-grid article:first-child,
  .assurance-grid article:last-child {
    padding: 28px 24px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 28px, 1180px);
  }

  html {
    scroll-padding-top: 76px;
  }

  .trade-strip__terms span:nth-child(-n + 2) {
    display: none;
  }

  .trade-strip__terms span + span::before {
    content: none;
  }

  .site-header__inner {
    min-height: 64px;
    gap: 12px;
  }

  .brand {
    font-size: 18px;
  }

  .brand svg {
    width: 32px;
    height: 32px;
  }

  .language-switch button {
    width: 34px;
  }

  .quote-button > span:first-child {
    display: none;
  }

  .quote-button {
    min-width: 42px;
    justify-content: center;
    padding: 0 8px;
  }

  .hero {
    min-height: 620px;
    align-items: flex-end;
  }

  .hero__media {
    background-position: 68% center;
  }

  .hero__shade {
    background: rgba(248, 250, 251, 0.28);
  }

  .hero__content {
    padding-top: 54px;
    padding-bottom: 44px;
  }

  .hero__content::before {
    width: calc(100% + 28px);
    left: -14px;
    top: -8px;
    background: rgba(244, 247, 249, 0.88);
  }

  .hero h1 {
    max-width: 560px;
    font-size: clamp(38px, 12.6vw, 56px);
  }

  .hero__lead {
    max-width: 560px;
    margin-top: 20px;
    font-size: 16px;
  }

  .hero__actions {
    margin-top: 24px;
  }

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

  .hero__facts div {
    min-width: 0;
    padding-right: 10px;
    margin-right: 10px;
  }

  .hero__facts dt {
    font-size: 18px;
  }

  .hero__facts dd {
    font-size: 10px;
    line-height: 1.25;
  }

  .category-section,
  .catalog-section,
  .assurance-section,
  .delivery-section {
    padding: 76px 0;
  }

  .section-heading--row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section-heading--row > p {
    margin: 0;
  }

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

  .category-card {
    display: grid;
    grid-template-columns: minmax(130px, 40%) 1fr;
  }

  .category-card img {
    height: 100%;
    aspect-ratio: auto;
  }

  .category-card__body {
    grid-template-columns: auto 1fr;
    min-height: 132px;
    padding: 15px;
  }

  .category-card__arrow {
    display: none;
  }

  .catalog-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .filter-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .filter-tabs button {
    padding-inline: 8px;
  }

  .search-field {
    width: 100%;
  }

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

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

  .product-card__body {
    min-height: 218px;
  }

  .delivery-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .delivery-copy {
    position: static;
  }

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

  .assurance-grid article,
  .assurance-grid article:first-child,
  .assurance-grid article:last-child {
    min-height: 0;
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .assurance-grid article:last-child {
    border-bottom: 0;
  }

  .assurance-grid h3 {
    margin-top: 18px;
  }

  .cta-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta-layout .button {
    width: 100%;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

  .product-detail__media {
    min-height: 0;
  }

  .product-detail__image {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .product-detail__content {
    padding: 28px 22px 30px;
  }

  .product-detail h2 {
    padding-right: 36px;
    font-size: 27px;
  }

  .quote-dialog__header {
    padding: 35px 22px 22px;
  }

  .quote-dialog__header h2 {
    font-size: 28px;
  }

  .inquiry-form {
    padding: 22px 22px 30px;
  }

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

@media (max-width: 420px) {
  .header-actions {
    gap: 6px;
  }

  .language-switch {
    display: none;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__facts div {
    padding-right: 7px;
    margin-right: 7px;
  }

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

  .category-card__body {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 5px;
  }

  .product-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  .product-card__actions {
    display: grid;
    grid-template-columns: 40px 1fr;
  }

  .product-detail__bottom {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
