@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/inter-cyrillic-ext.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

/* Support page */
.support-page {
  background: var(--page);
}

.support-page-canvas {
  width: min(100%, var(--slide-max));
  margin: 0 auto;
  padding: clamp(52px, 6vw, 96px) clamp(18px, 2vw, 30px) clamp(72px, 7vw, 120px);
}

.support-heading {
  margin-bottom: clamp(28px, 3vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: end;
  gap: 40px;
}

.support-heading span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.support-heading h1 {
  margin: 0;
  font-size: clamp(42px, 4.6vw, 74px);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.support-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 500;
  line-height: 1.45;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.95fr) minmax(0, 1.4fr);
  align-items: stretch;
  gap: 20px;
}

.support-feedback-card,
.support-resource-card {
  background: #f5f7fa;
  border: 1px solid #dce2e9;
}

.support-feedback-card {
  min-height: 600px;
  padding: clamp(28px, 3vw, 48px);
}

.support-card-heading {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
}

.support-card-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--blue);
  border: 2px solid currentColor;
  border-radius: 12px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}

.support-card-heading h2 {
  margin: 0 0 7px;
  font-size: clamp(22px, 1.7vw, 30px);
  font-weight: 650;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.support-card-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.4;
}

.support-form {
  margin-top: 32px;
  display: grid;
  gap: 16px;
}

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

.support-form label {
  display: block;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border: 1px solid #ced6e0;
  border-radius: 6px;
  background: #ffffff;
  color: var(--text);
  font-size: 16px;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.support-form input,
.support-form select {
  min-height: 58px;
  padding: 0 18px;
}

.support-form textarea {
  min-height: 150px;
  padding: 17px 18px;
  resize: vertical;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 111, 255, 0.14);
}

.support-submit {
  width: fit-content;
  min-width: 180px;
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

.support-submit:hover,
.support-submit:focus-visible {
  background: #005bd6;
}

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

.support-resource-card {
  min-height: 290px;
  padding: clamp(28px, 3vw, 46px);
  display: flex;
  flex-direction: column;
}

.support-files {
  margin: auto 0 0 60px;
  padding-top: 34px;
}

.support-file-pending {
  color: #98a2af;
  font-size: 15px;
  font-weight: 500;
}

.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;
}

@media (max-width: 1100px) {
  .support-heading,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .support-heading {
    gap: 20px;
  }

  .support-feedback-card {
    min-height: 0;
  }
}

@media (max-width: 700px) {
  .support-page-canvas {
    width: 100%;
    padding: 38px 16px 64px;
  }

  .support-heading {
    margin-bottom: 24px;
  }

  .support-heading span {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .support-heading h1 {
    font-size: clamp(36px, 11vw, 50px);
  }

  .support-resources,
  .support-form-row {
    grid-template-columns: 1fr;
  }

  .support-feedback-card,
  .support-resource-card {
    padding: 24px;
  }

  .support-resource-card {
    min-height: 240px;
  }

  .support-card-heading {
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 14px;
  }

  .support-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 18px;
  }

  .support-files {
    margin-left: 50px;
  }
}

/* Knowledge base */
.articles-page-canvas,
.article-page-canvas {
  width: min(100%, var(--slide-max));
  margin: 0 auto;
  background: #fff;
}

.articles-page-canvas {
  padding: clamp(44px, 5.4vw, 86px) clamp(24px, 4.6vw, 76px) clamp(68px, 7vw, 108px);
}

.articles-hero {
  max-width: 920px;
  margin-bottom: clamp(40px, 5vw, 72px);
}

.articles-hero > span,
.article-kicker {
  color: var(--blue);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.articles-hero h1 {
  margin: 12px 0 18px;
  font-size: clamp(44px, 5.8vw, 82px);
  font-weight: 580;
  line-height: .98;
}

.articles-hero p {
  max-width: 760px;
  margin: 0;
  color: #606a77;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.55;
}

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

.articles-section-heading {
  margin: clamp(70px, 8vw, 118px) 0 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.articles-section-heading > span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 650;
  text-transform: uppercase;
}

.articles-section-heading h2 {
  margin: 10px 0 14px;
  font-size: clamp(34px, 4.4vw, 58px);
  font-weight: 580;
  line-height: 1.02;
}

.articles-section-heading p {
  max-width: 760px;
  margin: 0;
  color: #626c79;
  font-size: 17px;
  line-height: 1.58;
}

.articles-recipe-grid .article-card {
  background: #fbfcfe;
}

.article-responsible-note {
  margin-top: 36px;
  padding: 16px 18px;
  border-left: 3px solid #c79225;
  background: #fff9ed;
  color: #665226;
  font-size: 14px;
  line-height: 1.55;
}

.article-card {
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.article-card-featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  grid-template-rows: none;
}

.article-card > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  background: #f4f7fa;
}

.distillate-card-visual {
  position: relative;
  min-height: 220px;
  padding: 24px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  color: #ffffff;
}

.distillate-card-visual::before,
.distillate-hero-visual::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -36px;
  bottom: -76px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(255,255,255,.06), 0 0 0 68px rgba(255,255,255,.04);
}

.distillate-card-visual b {
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 650;
}

.distillate-card-visual span {
  position: relative;
  z-index: 1;
  max-width: 75%;
  font-size: clamp(25px, 2.5vw, 40px);
  font-weight: 650;
  line-height: .92;
  letter-spacing: -.04em;
  text-align: right;
}

.tone-root { background: linear-gradient(135deg, #61553e, #9f8a5f); }
.tone-pepper { background: linear-gradient(135deg, #7b161b, #d13a2f); }
.tone-cranberry { background: linear-gradient(135deg, #741630, #c52d58); }
.tone-cherry { background: linear-gradient(135deg, #4e1020, #9d1736); }
.tone-currant { background: linear-gradient(135deg, #241333, #68417e); }
.tone-cedar { background: linear-gradient(135deg, #5c351d, #a87542); }
.tone-lemon { background: linear-gradient(135deg, #b68b00, #efc926); }
.tone-grain { background: linear-gradient(135deg, #55331e, #9b6a3a); }

.distillate-article-hero {
  grid-template-columns: minmax(0, 1fr) minmax(300px, .78fr);
  background: #ffffff;
}

.distillate-hero-visual {
  position: relative;
  min-height: 430px;
  padding: 36px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 68px);
  font-weight: 650;
  line-height: .9;
  letter-spacing: -.05em;
  text-align: right;
}

.distillate-hero-visual span {
  position: relative;
  z-index: 1;
}

.article-card-featured > img {
  height: 100%;
  min-height: 430px;
  aspect-ratio: auto;
}

.article-card-body {
  min-width: 0;
  padding: clamp(24px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.article-card-meta {
  color: #7a8491;
  font-size: 13px;
  font-weight: 520;
}

.article-card h2 {
  margin: 14px 0 12px;
  font-size: clamp(24px, 2.3vw, 36px);
  font-weight: 580;
  line-height: 1.12;
}

.article-card:not(.article-card-featured) h2 {
  font-size: clamp(22px, 1.9vw, 30px);
}

.article-card p {
  margin: 0 0 28px;
  color: #626c79;
  font-size: 16px;
  line-height: 1.58;
}

.article-read-link {
  margin-top: auto;
  color: var(--blue);
  font-size: 15px;
  font-weight: 620;
}

.article-read-link b {
  display: inline-block;
  margin-left: 5px;
  font-weight: 500;
  transition: transform 180ms ease;
}

.article-card:hover,
.article-card:focus-visible {
  border-color: #a9c9fb;
  box-shadow: 0 18px 42px rgba(20, 73, 145, .09);
  transform: translateY(-2px);
}

.article-card:hover .article-read-link b,
.article-card:focus-visible .article-read-link b {
  transform: translateX(4px);
}

.article-card:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.articles-disclaimer {
  margin-top: 28px;
  padding: 18px 22px;
  border-left: 3px solid var(--blue);
  background: #f5f8fc;
  color: #5c6673;
  font-size: 14px;
  line-height: 1.55;
}

.articles-disclaimer strong {
  color: #20262d;
}

.article-page-canvas {
  padding: 26px clamp(24px, 4.6vw, 76px) clamp(70px, 7vw, 112px);
}

.article-back-link {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  color: #65707d;
  font-size: 14px;
  font-weight: 540;
  text-decoration: none;
}

.article-back-link:hover,
.article-back-link:focus-visible {
  color: var(--blue);
}

.article-hero {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-hero > div {
  min-width: 0;
  padding: clamp(42px, 5vw, 82px) clamp(0px, 3vw, 50px) clamp(42px, 5vw, 82px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.article-hero h1 {
  margin: 16px 0 22px;
  font-size: clamp(42px, 5.3vw, 76px);
  font-weight: 580;
  line-height: 1.02;
}

.article-hero p {
  max-width: 640px;
  margin: 0;
  color: #626c79;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.58;
}

.article-hero img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  display: block;
  object-fit: cover;
}

.article-body {
  width: min(100%, 900px);
  margin: 0 auto;
  padding-top: clamp(52px, 6vw, 86px);
  color: #343b44;
  font-size: 17px;
  line-height: 1.78;
}

.article-body .article-lead {
  margin: 0 0 46px;
  color: #20262d;
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 430;
  line-height: 1.62;
}

.article-body h2 {
  margin: 46px 0 14px;
  color: #14191f;
  font-size: clamp(26px, 2.7vw, 36px);
  font-weight: 590;
  line-height: 1.2;
}

.article-body p {
  margin: 0 0 22px;
}

.article-checklist,
.article-steps {
  margin: 20px 0 32px;
  padding: 0;
  list-style: none;
}

.article-checklist li,
.article-steps li {
  position: relative;
  margin: 0;
  padding: 14px 12px 14px 42px;
  border-top: 1px solid var(--line);
}

.article-checklist li:last-child,
.article-steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.article-checklist li::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 12px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--blue);
  border-radius: 50%;
}

.article-steps {
  counter-reset: article-step;
}

.article-steps li {
  counter-increment: article-step;
}

.article-steps li::before {
  content: counter(article-step, decimal-leading-zero);
  position: absolute;
  top: 14px;
  left: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 650;
}

.article-note {
  margin: 36px 0;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: minmax(140px, .35fr) minmax(0, 1fr);
  gap: 22px;
  border: 1px solid #bcd4f7;
  border-radius: 6px;
  background: #f5f9ff;
}

.article-note strong {
  color: #16202c;
  font-size: 15px;
}

.article-note span {
  color: #515d6b;
  font-size: 15px;
  line-height: 1.6;
}

.article-note-warning {
  border-color: #e7cb8b;
  background: #fffaf0;
}

.article-errors {
  margin: 22px 0 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.article-errors article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfcfd;
}

.article-errors h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
}

.article-errors p {
  margin: 0;
  color: #606b78;
  font-size: 15px;
  line-height: 1.58;
}

.article-summary {
  margin-top: 54px;
  padding: 28px 30px;
  border-top: 3px solid var(--blue);
  background: #f4f7fb;
}

.article-summary h2 {
  margin: 0 0 10px;
  font-size: 23px;
}

.article-summary p {
  margin: 0;
}

.article-source-note {
  margin-top: 28px !important;
  color: #7a8491;
  font-size: 13px;
  line-height: 1.6;
}

.article-next {
  width: min(100%, 900px);
  margin: 58px auto 0;
  padding-top: 22px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: baseline;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.article-next > span {
  color: #818a96;
  font-size: 13px;
}

.article-next a {
  color: #181e25;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 560;
  text-decoration: none;
}

.article-next a b {
  color: var(--blue);
}

.article-next a:hover,
.article-next a:focus-visible {
  color: var(--blue);
}

@media (max-width: 860px) {
  .articles-page-canvas,
  .article-page-canvas {
    padding-inline: 18px;
  }

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

  .article-card-featured {
    grid-column: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .article-card-featured > img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

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

  .article-hero > div {
    padding-right: 0;
  }

  .article-hero img {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .distillate-hero-visual {
    min-height: 280px;
  }

  .article-errors {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .articles-page-canvas {
    padding-top: 34px;
    padding-bottom: 64px;
  }

  .articles-hero {
    margin-bottom: 32px;
  }

  .articles-hero h1 {
    margin-top: 9px;
    font-size: 42px;
  }

  .article-card-body {
    padding: 22px;
  }

  .distillate-card-visual {
    min-height: 190px;
  }

  .distillate-hero-visual {
    min-height: 230px;
    padding: 24px;
  }

  .article-card h2,
  .article-card:not(.article-card-featured) h2 {
    font-size: 25px;
  }

  .article-page-canvas {
    padding-top: 14px;
    padding-bottom: 62px;
  }

  .article-hero {
    margin-top: 10px;
  }

  .article-hero > div {
    padding: 36px 0 30px;
  }

  .article-hero h1 {
    margin: 12px 0 16px;
    font-size: 40px;
  }

  .article-body {
    padding-top: 42px;
    font-size: 16px;
    line-height: 1.72;
  }

  .article-body .article-lead {
    margin-bottom: 34px;
    font-size: 20px;
  }

  .article-body h2 {
    margin-top: 38px;
    font-size: 28px;
  }

  .article-note {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
  }

  .article-next {
    margin-top: 42px;
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/inter-cyrillic.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/inter-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/inter-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  --blue: #006fff;
  --blue-hover: #005bd6;
  --text: #151a22;
  --line: #e8ecf2;
  --surface: #ffffff;
  --page: #f5f7fa;
  --slide-max: 2560px;
  --button-radius: 999px;
  --button-border-width: 2px;
  --button-focus-ring: 0 0 0 4px rgba(0, 111, 255, 0.2);
  --font-sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--page);
  color: var(--text);
  font-family: var(--font-sans);
  letter-spacing: 0;
}

button,
input,
select,
textarea {
  font-family: var(--font-sans);
}

.site-header {
  position: relative;
  z-index: 20;
  width: 100%;
  min-height: 44px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(100% - 96px, 2860px);
  min-height: 44px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  font-family: var(--font-sans);
}

.brand {
  width: fit-content;
  display: inline-flex;
  align-items: flex-start;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
  flex: 0 0 auto;
  margin-right: clamp(34px, 2.5vw, 64px);
}

.brand-name {
  font-size: 25px;
  font-weight: 650;
  line-height: 1;
}

.brand-name,
.footer-brand span {
  color: var(--blue);
  background-image: linear-gradient(105deg, var(--blue) 0%, var(--blue) 38%, #69cfff 50%, var(--blue) 62%, var(--blue) 100%);
  background-position: 100% 50%;
  background-size: 240% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sorber-logo-shimmer 5.2s ease-in-out infinite;
}

@keyframes sorber-logo-shimmer {
  0%, 18% {
    background-position: 100% 50%;
  }

  58%, 100% {
    background-position: 0 50%;
  }
}

.brand sup {
  margin: 1px 0 0 2px;
  font-size: 8px;
  font-weight: 600;
  line-height: 1;
}

.main-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(24px, 2.5vw, 46px);
}

.main-navigation a {
  position: relative;
  padding: 14px 0 13px;
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.nav-dropdown {
  position: static;
}

.nav-dropdown summary {
  position: relative;
  padding: 14px 0 13px;
  display: flex;
  align-items: center;
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  list-style: none;
}

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

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 30;
  width: 100vw;
  min-height: 142px;
  padding: 22px max(48px, calc((100vw - 1020px) / 2));
  padding-left: var(--nav-dropdown-content-left, max(48px, calc((100vw - 1020px) / 2)));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  background: #ffffff;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  box-shadow: 0 20px 42px rgba(23, 35, 54, 0.12);
  transform: translateX(-50%);
}

.nav-dropdown-menu a {
  padding: 5px 0 9px;
  border-radius: 0;
  color: var(--text);
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 650;
  line-height: 1.15;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible,
.nav-dropdown-menu a[aria-current="page"] {
  background: transparent;
  color: var(--blue);
  outline: 0;
}

.main-navigation a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.main-navigation a:hover::after,
.main-navigation a:focus-visible::after {
  transform: scaleX(1);
}

.contact-button,
.hero-button,
.product-slide-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: var(--button-border-width) solid var(--blue);
  border-radius: var(--button-radius);
  font-family: var(--font-sans);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.contact-button:focus-visible,
.hero-button:focus-visible,
.product-slide-button:focus-visible {
  outline: 0;
  box-shadow: var(--button-focus-ring);
}

.contact-button:active,
.hero-button:active,
.product-slide-button:active {
  transform: translateY(1px);
}

.contact-button {
  position: static;
  margin-left: clamp(28px, 2.4vw, 48px);
  min-width: 150px;
  min-height: 30px;
  padding: 7px 18px;
  background: #ffffff;
  border-width: 1px;
  border-color: #aeb6c2;
  color: #323a46;
  font-size: 13px;
}

.contact-button:hover,
.contact-button:focus-visible {
  background: var(--blue);
  border-color: var(--blue);
  color: #ffffff;
}

.header-cart {
  position: relative;
  width: 34px;
  height: 34px;
  margin-left: clamp(18px, 1.8vw, 32px);
  display: inline-flex;
  flex: 0 0 34px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #303844;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease;
}

.header-cart svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-cart-count {
  position: absolute;
  top: -2px;
  right: -4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  font-size: 9px;
  font-weight: 650;
  line-height: 1;
}

.header-cart:hover,
.header-cart:focus-visible,
.header-cart[aria-current="page"] {
  background: #eef5ff;
  color: var(--blue);
  outline: 0;
}

.header-cart:focus-visible {
  box-shadow: var(--button-focus-ring);
}

.header-cart + .contact-button {
  margin-left: clamp(12px, 1.2vw, 20px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 0;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.page-canvas {
  min-height: calc(100vh - 44px);
  background: var(--page);
}

.hero {
  position: relative;
  width: min(100%, var(--slide-max));
  height: auto;
  aspect-ratio: 2560 / 692;
  margin: 0 auto;
  overflow: hidden;
  background-color: #ffffff;
  background-image: url("/assets/hero-sorber-functional-v5.png?v=20260809-1");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: clamp(14px, 1.4vw, 24px) clamp(24px, 2.3vw, 40px);
}

.hero h1 {
  max-width: 490px;
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(26px, 2.1vw, 38px);
  font-weight: 650;
  line-height: 1.08;
  text-transform: uppercase;
}

.hero h1 span,
.hero h1 strong {
  display: block;
}

.hero h1 strong {
  margin-top: 5px;
  color: var(--blue);
  font: inherit;
}

.hero p {
  margin: clamp(13px, 1.35vw, 22px) 0 0;
  color: #232a34;
  font-family: var(--font-sans);
  font-size: clamp(12px, 0.95vw, 16px);
  font-weight: 400;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: clamp(22px, 2.4vw, 40px);
}

@media (min-width: 1021px) {
  .hero-actions {
    position: absolute;
    bottom: clamp(18px, 1.6vw, 28px);
    left: clamp(24px, 2.3vw, 40px);
    margin-top: 0;
  }
}

.hero-button {
  min-height: 42px;
  padding: 11px 26px;
  font-size: 14px;
}

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

.hero-button-primary:hover,
.hero-button-primary:focus-visible {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
}

.hero-button-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--blue);
  backdrop-filter: blur(4px);
}

.hero-button-secondary:hover,
.hero-button-secondary:focus-visible {
  background: var(--blue);
  color: #ffffff;
}

.product-slide {
  position: relative;
  width: min(100%, var(--slide-max));
  height: auto;
  aspect-ratio: 2560 / 692;
  margin: 16px auto 0;
  overflow: hidden;
  background: #ffffff;
  background-image: url("/assets/filter-sorber-os1-white-v2-2560x692.jpg?v=20260809-1");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 104% auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-slide-os7 {
  background-image: url("/assets/filter-sorber-os7-2560x692.jpg?v=20260809-1");
}

.product-slide-os2 {
  background-image: none;
}

.product-slide.product-slide-os2 img {
  display: block;
  height: calc(100% - 98px);
  max-width: min(690px, 72vw);
  max-height: none;
}

.product-slide-content {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: clamp(9px, 0.85vw, 15px) 0 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-slide h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: clamp(25px, 1.85vw, 33px);
  font-weight: 600;
  line-height: 1.08;
}

.product-slide-actions {
  position: relative;
  z-index: 2;
  margin-top: clamp(7px, 0.6vw, 10px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.product-slide-button {
  min-height: 34px;
  padding: 8px 20px;
  font-size: 13px;
}

.product-slide-button-primary {
  min-width: 138px;
  background: var(--blue);
  color: #ffffff;
}

.product-slide-button-primary:hover,
.product-slide-button-primary:focus-visible {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
}

.product-slide-button-secondary {
  min-width: 82px;
  background: #ffffff;
  color: var(--blue);
}

.product-slide-button-secondary:hover,
.product-slide-button-secondary:focus-visible {
  background: #edf4ff;
}

.product-slide img {
  position: absolute;
  right: auto;
  bottom: 0;
  left: 50%;
  width: auto;
  height: calc(100% - 112px);
  max-width: min(620px, 68vw);
  max-height: 250px;
  margin: 0;
  object-fit: contain;
  object-position: center;
  transform: translateX(-50%);
  display: none;
}

.components-section,
.production-section,
.about-section {
  width: min(100%, var(--slide-max));
  margin: 16px auto 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-section {
  min-height: 440px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: stretch;
  overflow: hidden;
}

.about-section-copy {
  padding: clamp(42px, 5vw, 82px) clamp(28px, 5vw, 82px);
  align-self: start;
}

.about-section-copy > span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-section h1,
.about-section h2 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(30px, 3vw, 52px);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.about-section p {
  max-width: 800px;
  margin: 22px 0 0;
  color: #404955;
  font-size: clamp(15px, 1.15vw, 19px);
  line-height: 1.55;
}

/* Manufacturing page */
.manufacturing-page-canvas {
  width: min(100%, var(--slide-max));
  min-height: calc(100vh - 44px);
  margin: 0 auto;
  padding: clamp(54px, 6vw, 96px) clamp(18px, 3vw, 48px) clamp(72px, 7vw, 112px);
  background: var(--page);
}

.manufacturing-heading {
  max-width: 1050px;
  margin-bottom: clamp(34px, 4vw, 60px);
}

.manufacturing-heading > span {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.manufacturing-heading h1 {
  margin: 0;
  font-size: clamp(40px, 5vw, 78px);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

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

.manufacturing-stage {
  min-height: 300px;
  padding: clamp(28px, 3.5vw, 54px);
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--line);
}

.manufacturing-stage > span {
  color: var(--blue);
  font-size: 14px;
  font-weight: 650;
}

.manufacturing-stage h2 {
  margin: auto 0 14px;
  font-size: clamp(26px, 2.7vw, 44px);
  font-weight: 650;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.manufacturing-stage p {
  max-width: 700px;
  margin: 0;
  color: #525c69;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55;
}

@media (max-width: 760px) {
  .manufacturing-page-canvas {
    min-height: calc(100vh - 52px);
    padding: 38px 16px 64px;
  }

  .manufacturing-heading > span {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .manufacturing-heading h1 {
    font-size: 38px;
    line-height: 1.02;
  }

  .manufacturing-stages {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .manufacturing-stage {
    min-height: 250px;
    padding: 26px 22px;
  }

  .manufacturing-stage h2 {
    font-size: 29px;
  }
}

.about-section img {
  width: 107%;
  height: auto;
  max-height: 756px;
  min-height: 0;
  display: block;
  align-self: center;
  justify-self: center;
  object-fit: contain;
  object-position: center;
}

@media (max-width: 900px) {
  .about-section {
    grid-template-columns: 1fr;
  }

  .about-section img {
    width: 99%;
    max-height: none;
    aspect-ratio: auto;
  }
}

@media (max-width: 700px) {
  .about-section {
    margin-top: 10px;
  }

  .about-section-copy {
    padding: 34px 20px 38px;
  }

  .about-section-copy > span {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .about-section h1,
  .about-section h2 {
    font-size: 30px;
  }

  .about-section p {
    margin-top: 18px;
    font-size: 15px;
  }
}

.components-section {
  padding: clamp(24px, 2.4vw, 36px) clamp(18px, 2vw, 30px) clamp(26px, 2.4vw, 38px);
}

.components-section h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: clamp(25px, 2vw, 34px);
  font-weight: 600;
  line-height: 1.15;
  text-align: center;
}

.components-grid {
  margin-top: clamp(18px, 1.8vw, 26px);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(8px, 0.8vw, 12px);
}

.component-card {
  position: relative;
  aspect-ratio: 16 / 10;
  min-width: 0;
  overflow: hidden;
  display: block;
  background: #f1f3f6;
  border: 0;
  border-radius: 6px;
  color: var(--text);
  text-decoration: none;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.component-card:hover,
.component-card:focus-visible {
  box-shadow: 0 10px 24px rgba(17, 46, 82, 0.1);
  outline: 0;
  transform: translateY(-2px);
}

.component-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  background: #f1f3f6;
  mix-blend-mode: multiply;
}

.component-meta {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  min-height: 28px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: transparent;
}

.component-name {
  min-width: 0;
  overflow: hidden;
  color: #20252d;
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 500;
  line-height: 1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.component-buy {
  flex: 0 0 auto;
  min-height: 26px;
  padding: 7px 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  transition: background-color 160ms ease;
}

.component-card:hover .component-buy,
.component-card:focus-visible .component-buy {
  background: var(--blue-hover);
}

.components-actions {
  margin-top: clamp(22px, 2.2vw, 34px);
  display: flex;
  justify-content: center;
}

.production-section {
  padding: clamp(12px, 1.2vw, 18px) 0 0;
  overflow: hidden;
}

.production-grid {
  width: min(100%, var(--slide-max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) repeat(2, minmax(0, 1fr));
  gap: clamp(8px, 0.8vw, 12px);
}

.production-card {
  min-width: 0;
  height: clamp(430px, 36vw, 560px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #f3f5f8;
}

.production-copy {
  flex: 0 0 clamp(150px, 13vw, 190px);
  padding: clamp(22px, 2.1vw, 34px) 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.production-copy h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: clamp(24px, 2.2vw, 38px);
  font-weight: 600;
  line-height: 1.08;
}

.production-card-secondary .production-copy h2 {
  font-size: clamp(21px, 1.65vw, 29px);
}

.production-copy p {
  margin: 9px 0 14px;
  color: #626b78;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.25;
}

.production-copy .product-slide-button {
  min-width: 0;
  min-height: 34px;
  padding: 8px 19px;
  font-size: 12px;
}

.production-media {
  flex: 1 1 auto;
  min-height: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.production-media-fabrication {
  background-image: url("/assets/production-fabrication.jpg?v=20260809-1");
  background-position: 18% center;
}

.production-media-assembly {
  background-image: url("/assets/production-assembly.jpg?v=20260809-1");
  background-position: 76% center;
}

.production-media-quality {
  background-image: url("/assets/production-sorber-2560x520.jpg?v=20260809-1");
  background-position: 82% center;
}

.contacts-section {
  width: min(100%, var(--slide-max));
  margin: 16px auto 0;
  padding: clamp(30px, 3vw, 48px);
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-sans);
}

.contacts-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 8px 32px;
  margin-bottom: 24px;
}

.contacts-heading > span {
  grid-column: 1 / -1;
  color: var(--blue);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.contacts-heading h1,
.contacts-heading h2 {
  margin: 0;
  font-size: clamp(30px, 2.8vw, 44px);
  font-weight: 560;
  line-height: 1.05;
}

.contacts-heading p {
  max-width: 560px;
  margin: 0;
  color: #68717d;
  line-height: 1.45;
}

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

.location-card {
  min-width: 0;
  min-height: 264px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42%;
  overflow: hidden;
  background: #f6f8fb;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.location-copy {
  min-width: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.location-label {
  color: var(--blue);
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
}

.location-card h2,
.location-card h3 {
  margin: 26px 0 7px;
  font-size: 20px;
  font-weight: 580;
  line-height: 1.35;
}

.location-card p {
  margin: 0;
  color: #707985;
}

.location-card a {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.location-card a:hover,
.location-card a:focus-visible {
  color: var(--blue-hover);
}

.location-card img {
  width: 100%;
  height: 264px;
  display: block;
  object-fit: cover;
  filter: saturate(.82) contrast(.96) brightness(1.08);
}

.location-card:first-child img {
  object-position: 51% 55%;
}

.location-card:last-child img {
  object-position: 48% center;
}

.contact-details {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 6px;
}

.contact-details article {
  min-width: 0;
  min-height: 86px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-right: 1px solid var(--line);
}

.contact-details article:last-child {
  border-right: 0;
}

.contact-details svg {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: var(--blue);
  stroke-width: 1.3;
}

.contact-details article > div {
  min-width: 0;
}

.contact-details span {
  display: block;
  margin-bottom: 7px;
  color: #858d97;
  font-size: 12px;
}

.contact-details a,
.contact-details strong {
  color: #252a30;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.contact-sites {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.contact-details a:hover,
.contact-details a:focus-visible {
  color: var(--blue);
}

.contacts-page-canvas {
  padding-bottom: 1px;
}

.contacts-page .contacts-section {
  margin-top: 16px;
}

.content-page-canvas {
  width: min(100%, var(--slide-max));
  min-height: calc(100vh - 232px);
  margin: 0 auto;
  padding: clamp(40px, 5vw, 76px) clamp(24px, 4vw, 64px) 72px;
  background: #ffffff;
}

.content-page-heading {
  max-width: 820px;
  margin-bottom: clamp(34px, 4vw, 54px);
}

.content-page-heading span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.content-page-heading h1 {
  margin: 10px 0 12px;
  font-size: clamp(38px, 4.2vw, 62px);
  font-weight: 560;
  line-height: 1.04;
}

.content-page-heading p {
  max-width: 680px;
  margin: 0;
  color: #68717e;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.55;
}

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

.article-entry {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.article-entry-index {
  color: #9aa3af;
  font-size: 13px;
}

.article-entry h2 {
  margin: 0 0 8px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 560;
  line-height: 1.2;
}

.article-entry p {
  margin: 0;
  color: #68717e;
  font-size: 15px;
  line-height: 1.5;
}

.article-entry-arrow {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfd6df;
  border-radius: 50%;
  color: var(--blue);
  font-size: 20px;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.article-entry:hover .article-entry-arrow,
.article-entry:focus-visible .article-entry-arrow {
  background: var(--blue);
  border-color: var(--blue);
  color: #ffffff;
}

.article-entry:focus-visible {
  outline: 0;
}

.article-details {
  margin-top: 68px;
}

.article-detail {
  max-width: 920px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 72px;
}

.article-detail:last-child {
  border-bottom: 1px solid var(--line);
}

.article-detail h2 {
  margin: 0 0 16px;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 560;
  line-height: 1.2;
}

.article-detail p {
  margin: 0;
  color: #505966;
  font-size: 16px;
  line-height: 1.7;
}

.cart-empty {
  min-height: 340px;
  display: grid;
  place-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.cart-empty-inner {
  max-width: 560px;
  padding: 44px 24px;
}

.cart-empty-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eef5ff;
  color: var(--blue);
}

.cart-empty-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart-empty h2 {
  margin: 0 0 9px;
  font-size: 28px;
  font-weight: 560;
}

.cart-empty p {
  margin: 0 0 24px;
  color: #68717e;
  font-size: 16px;
}

.cart-empty-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.cart-empty-actions .product-slide-button {
  min-height: 42px;
  padding: 11px 22px;
  font-size: 14px;
}

.cart-products {
  min-height: 340px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cart-products-inner {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 30px 24px 38px;
}

.cart-products-summary,
.cart-products-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.cart-products-summary {
  margin-bottom: 14px;
}

.cart-products-summary h2,
.cart-products-summary strong,
.cart-products-footer strong {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
}

.cart-product-row {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto 34px;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.cart-product-row img {
  width: 112px;
  height: 92px;
  object-fit: contain;
  background: #ffffff;
}

.cart-product-copy h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 580;
}

.cart-product-copy p {
  margin: 0;
  color: #68717e;
  font-size: 14px;
}

.cart-product-price {
  color: var(--blue);
  font-size: 18px;
  font-weight: 650;
  white-space: nowrap;
}

.cart-product-remove {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #d94141;
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}

.cart-product-remove:hover,
.cart-product-remove:focus-visible {
  color: #a91717;
  outline: 0;
}

.cart-products-footer {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.cart-products-footer .product-slide-button {
  min-height: 42px;
  padding: 11px 22px;
  font-size: 14px;
}

.catalog-page-canvas {
  width: min(100%, var(--slide-max));
  margin: 0 auto;
  padding: clamp(38px, 4vw, 64px) clamp(24px, 3.5vw, 56px) 72px;
  background: #ffffff;
}

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

.catalog-heading span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.catalog-heading h1 {
  margin: 9px 0 0;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 560;
  line-height: 1.05;
}

.catalog-heading > p {
  max-width: 520px;
  margin: 0;
  color: #68717e;
  font-size: 16px;
  line-height: 1.5;
}

.catalog-heading-price {
  min-height: 44px;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.catalog-heading-price-label {
  color: #596472;
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 520;
  line-height: 1;
}

.catalog-heading-price-value {
  color: var(--blue);
  font-size: clamp(26px, 2vw, 34px);
  font-weight: 680;
  line-height: 1;
  letter-spacing: 0;
  background: linear-gradient(105deg, var(--blue) 0%, var(--blue) 36%, #68cfff 50%, var(--blue) 64%, var(--blue) 100%);
  background-size: 230% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: catalog-price-shimmer 4.6s ease-in-out infinite;
}

.catalog-heading-cart {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(0, 113, 227, 0.3);
  border-radius: 50%;
  background: #ffffff;
  color: var(--blue);
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.catalog-heading-cart:hover,
.catalog-heading-cart:focus-visible {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
  outline: 0;
  transform: translateY(-1px);
}

.catalog-heading-cart.is-added,
.catalog-heading-cart.is-added:hover,
.catalog-heading-cart.is-added:focus-visible {
  border-color: rgba(31, 166, 93, 0.5);
  background: #effaf3;
  color: #1fa65d;
  outline: 0;
  transform: none;
}

.catalog-heading-cart svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.catalog-cart-feedback {
  display: none;
}

@keyframes catalog-price-shimmer {
  0%, 58%, 100% { background-position: 100% 0; }
  76% { background-position: 0 0; }
}

.catalog-heading-actions {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.catalog-heading-brand {
  display: inline-flex;
  align-items: flex-start;
  color: var(--blue);
  font-size: 20px;
  font-weight: 680;
  line-height: 1;
  text-decoration: none;
}

.catalog-heading-brand sup {
  margin: 0 0 0 2px;
  font-size: 7px;
}

.catalog-heading-actions button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.catalog-heading-actions button:hover,
.catalog-heading-actions button:focus-visible {
  color: var(--blue-hover);
  outline: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.directory-card {
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(300px, 38vw) auto;
  border: 1px solid #e0e5eb;
  border-radius: 8px;
  background: #f5f7f9;
}

.directory-card-media {
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #ffffff;
}

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

.directory-card-copy {
  min-height: 132px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  background: #f5f7f9;
}

.directory-card-copy h2 {
  margin: 0 0 7px;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 560;
  line-height: 1.15;
}

.directory-card-copy p {
  margin: 0;
  color: #68717e;
  font-size: 14px;
  line-height: 1.45;
}

.directory-card-copy .product-slide-button {
  min-height: 40px;
  padding: 10px 19px;
  font-size: 14px;
}

.filter-showcase-list {
  display: grid;
  gap: 16px;
}

.filters-page,
.filters-page .catalog-page-canvas {
  background: #f3f5f7;
}

.filter-showcase-card {
  width: 100%;
  min-height: 0;
  overflow: visible;
  display: grid;
  grid-template-rows: auto clamp(520px, 54vw, 820px);
  background: #ffffff;
  border: 0;
  border-radius: 0;
}

.filter-showcase-copy {
  width: 100%;
  padding: clamp(28px, 3.4vw, 52px);
  border: 0;
  background: #ffffff;
}

.filter-showcase-eyebrow {
  margin-left: clamp(12px, 0.8vw, 18px);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.filter-showcase-copy h1,
.filter-showcase-copy h2 {
  max-width: none;
  margin: 0 0 0 clamp(12px, 0.8vw, 18px);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 560;
  line-height: 1.05;
}

.filter-showcase-sku {
  display: inline-flex;
  margin-top: 14px;
  padding: 6px 10px;
  border: 1px solid #dce3eb;
  border-radius: 6px;
  color: #596472;
  font-size: 14px;
  font-weight: 550;
}

.filter-showcase-price-row {
  min-height: 44px;
  margin: 12px 0 0 clamp(12px, 0.8vw, 18px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-showcase-price-row > span:first-child {
  color: #596472;
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 520;
}

.filter-showcase-price-row .catalog-heading-price-value {
  margin: 0;
  display: inline-block;
}

.filter-showcase-price-row .catalog-heading-cart {
  width: 40px;
  height: 40px;
  flex-basis: 40px;
}

.filter-showcase-price-row .catalog-cart-feedback {
  display: none;
}

.filter-showcase-actions {
  margin: 5px 0 0 clamp(12px, 0.8vw, 18px);
  display: flex;
  align-items: center;
  gap: 10px;
}

.catalog-heading-symbol {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: block;
  background: #ffffff url("/assets/sorber-mark.png?v=20260810-1") center / contain no-repeat;
  text-decoration: none;
}

.catalog-heading-symbol > span {
  display: none;
}

.filter-showcase-actions > button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--blue);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  cursor: pointer;
}

.filter-showcase-article-inline {
  color: #11151b;
  font-family: inherit;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.3;
  white-space: nowrap;
}

.filter-showcase-action-divider {
  color: #a8b2bf;
  font-weight: 400;
}

.filter-showcase-actions > button:hover,
.filter-showcase-actions > button:focus-visible {
  color: var(--blue-hover);
  outline: 0;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.filter-showcase-media {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #ffffff;
  border: 0;
  border-radius: 0;
}

.filter-showcase-media > img {
  position: absolute;
  inset: 5% 10%;
  width: 80%;
  height: 90%;
  max-width: 80%;
  max-height: 90%;
  object-fit: contain;
  object-position: center;
}

.filter-showcase-gallery .filter-showcase-gallery-main {
  position: absolute;
  inset: 4% 10% 112px;
  width: 80%;
  height: calc(96% - 112px);
  max-width: 80%;
  max-height: calc(96% - 112px);
  object-fit: contain;
  object-position: center;
  background: #ffffff;
}

.filter-showcase-gallery-nav {
  position: absolute;
  top: calc(50% - 48px);
  z-index: 3;
  width: 44px;
  height: 56px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #1b2633;
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.filter-showcase-gallery-nav:hover,
.filter-showcase-gallery-nav:focus-visible {
  color: var(--blue);
  outline: 0;
}

.filter-showcase-gallery-prev { left: 18px; }
.filter-showcase-gallery-next { right: 18px; }

.filter-showcase-gallery-counter {
  position: absolute;
  right: 22px;
  bottom: 80px;
  z-index: 3;
  padding: 5px 8px;
  border-radius: 5px;
  background: rgba(20, 27, 36, 0.76);
  color: #ffffff;
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}

.filter-showcase-gallery-thumbnails {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 3;
  width: min(520px, calc(100% - 132px));
  height: 72px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  transform: translateX(-50%);
}

.filter-showcase-gallery-thumbnails button {
  min-width: 0;
  padding: 3px;
  overflow: hidden;
  border: 1px solid #d9e0e8;
  border-radius: 6px;
  background: #ffffff;
  cursor: pointer;
}

.filter-showcase-gallery-thumbnails button:hover,
.filter-showcase-gallery-thumbnails button:focus-visible,
.filter-showcase-gallery-thumbnails button.is-active {
  border-color: var(--blue);
  outline: 0;
}

.filter-showcase-gallery-thumbnails img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #ffffff;
}

.filter-spec-dialog {
  width: min(590px, calc(100% - 32px));
  min-height: min(760px, calc(100vh - 48px));
  max-height: calc(100vh - 48px);
  margin: auto;
  padding: 48px 44px 38px;
  overflow-y: auto;
  border: 0;
  border-radius: 8px;
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 26px 70px rgba(21, 26, 34, 0.24);
}

.filter-spec-dialog--full {
  width: min(860px, calc(100% - 32px));
}

.filter-spec-dialog-lead {
  margin: -18px 0 30px;
  color: #596472;
  font-size: 16px;
  line-height: 1.55;
}

.filter-spec-dialog-section {
  margin: 0 0 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.filter-spec-dialog-section h3 {
  margin: 0 0 14px;
  font-size: 22px;
  font-weight: 600;
}

.filter-spec-dialog-section p,
.filter-spec-dialog-section li {
  color: #3f4955;
  font-size: 15px;
  line-height: 1.6;
}

.filter-spec-dialog-section ul {
  margin: 0;
  padding-left: 20px;
}

.filter-spec-dialog-section p { margin: 0; }

.filter-spec-dialog::backdrop {
  background: rgba(15, 22, 32, 0.48);
  backdrop-filter: blur(3px);
}

.filter-spec-dialog > span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
}

.filter-spec-dialog h2 {
  margin: 14px 0 34px;
  font-size: 48px;
  font-weight: 560;
}

.filter-spec-dialog dl {
  margin: 0 0 34px;
}

.filter-spec-dialog dl div {
  padding: 8px 0;
  display: grid;
  gap: 4px;
  border-top: 1px solid var(--line);
}

.filter-spec-dialog dt {
  color: #7a8390;
  font-size: 13px;
}

.filter-spec-dialog dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}

.filter-spec-dialog .product-slide-button {
  min-height: 42px;
  padding: 11px 22px;
  font-size: 14px;
}

.filter-spec-dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #69727e;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.filter-spec-dialog-close:hover,
.filter-spec-dialog-close:focus-visible {
  color: var(--blue);
  outline: 0;
}

.main-navigation a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-footer {
  width: min(100%, var(--slide-max));
  margin: 16px auto 0;
  padding: 0 clamp(24px, 3vw, 48px);
  background: #ffffff;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-family: var(--font-sans);
}

.footer-main {
  min-height: 126px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand {
  display: inline-flex;
  align-items: flex-start;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
}

.footer-brand span {
  font-size: 25px;
  font-weight: 650;
  line-height: 1;
}

.footer-brand sup {
  margin: 1px 0 0 3px;
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
}

.footer-support {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #303844;
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.footer-support strong {
  padding-left: 14px;
  border-left: 1px solid #cfd5dd;
  color: var(--blue);
  font-weight: 600;
}

.footer-support:hover span,
.footer-support:focus-visible span,
.footer-support:hover strong,
.footer-support:focus-visible strong {
  color: var(--blue-hover);
}

.footer-support:focus-visible {
  outline: 0;
  box-shadow: var(--button-focus-ring);
}

.footer-metrika {
  justify-self: center;
  min-height: 28px;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid #d9dee6;
  border-radius: 5px;
  color: #596270;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.footer-metrika b {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #111820;
  color: #ffffff;
  font-size: 11px;
}

.footer-metrika:hover,
.footer-metrika:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
  outline: 0;
}

.metrika-pixel {
  position: absolute;
  left: -9999px;
}

.footer-bottom {
  min-height: 46px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #737c89;
  font-size: 13px;
}

.footer-bottom > span {
  justify-self: start;
}

.footer-bottom .footer-support {
  justify-self: end;
}

@media (prefers-reduced-motion: reduce) {
  .brand-name,
  .footer-brand span,
  .catalog-heading-price-value {
    animation: none;
    background-position: 100% 50%;
  }
}

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

@media (max-width: 1280px) {
  .header-inner {
    width: min(100% - 40px, 1200px);
    gap: 0;
  }

  .brand {
    margin-right: 28px;
  }

  .main-navigation {
    gap: 18px;
  }

  .main-navigation a {
    font-size: 14px;
  }

  .brand-name {
    font-size: 23px;
  }

  .footer-brand span {
    font-size: 23px;
  }

  .contact-button {
    min-width: 140px;
    padding-inline: 14px;
  }

  .header-cart {
    margin-left: 16px;
  }

  .header-cart + .contact-button {
    margin-left: 10px;
  }
}

@media (max-width: 1020px) {
  .site-header,
  .header-inner {
    min-height: 52px;
  }

  .header-inner {
    width: calc(100% - 32px);
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: 12px;
  }

  .brand {
    margin-right: 0;
  }

  .brand-name {
    font-size: 25px;
  }

  .footer-brand span {
    font-size: 25px;
  }

  .contacts-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

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

  .contact-details article:nth-child(2) {
    border-right: 0;
  }

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

  .brand sup {
    font-size: 10px;
  }

  .menu-toggle {
    display: block;
  }

  .main-navigation {
    position: absolute;
    top: 52px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 16px 18px;
    background: #ffffff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 34px rgba(23, 35, 54, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  }

  .main-navigation a {
    padding: 13px 10px;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
  }

  .main-navigation a:last-child {
    border-bottom: 0;
  }

  .nav-dropdown summary {
    padding: 13px 10px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .nav-dropdown {
    position: relative;
  }

  .nav-dropdown-menu {
    position: static;
    width: auto;
    min-height: 0;
    padding: 4px 10px 8px 24px;
    display: grid;
    gap: 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    transform: none;
  }

  .nav-dropdown-menu a {
    padding: 11px 10px;
    border-bottom: 0;
    font-size: 16px;
    font-weight: 650;
  }

  .main-navigation a::after {
    display: none;
  }

  .site-header.menu-open .main-navigation {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .contact-button {
    position: static;
    margin-left: 0;
    min-width: 0;
    min-height: 30px;
    padding: 7px 13px;
    font-size: 13px;
  }

  .header-cart {
    margin-left: 0;
  }

  .header-cart + .contact-button {
    margin-left: 0;
  }

  .page-canvas {
    min-height: calc(100vh - 52px);
  }

  .product-slide {
    height: 560px;
    background-image: none;
  }

  .product-slide-content {
    width: calc(100% - 32px);
    padding-top: 18px;
  }

  .product-slide h2 {
    font-size: clamp(28px, 4vw, 36px);
  }

  .product-slide img {
    height: calc(100% - 125px);
    max-width: min(700px, 90vw);
    max-height: 430px;
    display: block;
  }

  .hero {
    aspect-ratio: auto;
    min-height: 760px;
    background-position: 78% 100%;
    background-size: auto 54%;
  }

  .hero-content {
    width: calc(100% - 48px);
    padding-top: 52px;
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(34px, 6vw, 52px);
  }

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

  .catalog-heading {
    align-items: start;
    flex-direction: column;
  }

  .directory-card {
    grid-template-rows: minmax(280px, 44vw) auto;
  }
}

@media (max-width: 560px) {
  .header-inner {
    width: calc(100% - 24px);
    grid-template-columns: 1fr auto auto;
  }

  .brand-name {
    font-size: 24px;
  }

  .footer-brand span {
    font-size: 24px;
  }

  .contact-button {
    display: none;
  }

  .content-page-canvas {
    min-height: calc(100vh - 190px);
    padding: 34px 20px 48px;
  }

  .content-page-heading {
    margin-bottom: 28px;
  }

  .article-entry {
    grid-template-columns: 36px minmax(0, 1fr) auto;
    gap: 12px;
    padding: 22px 0;
  }

  .article-entry h2 {
    font-size: 20px;
  }

  .article-entry p {
    font-size: 14px;
  }

  .catalog-page-canvas {
    padding: 34px 16px 48px;
  }

  .catalog-heading {
    margin-bottom: 26px;
  }

  .catalog-heading-price {
    flex-wrap: wrap;
  }

  .catalog-cart-feedback {
    min-width: 0;
  }

  .cart-product-row {
    grid-template-columns: 82px minmax(0, 1fr) 30px;
    gap: 12px;
  }

  .cart-product-row img {
    width: 82px;
    height: 72px;
  }

  .cart-product-price {
    grid-column: 2;
  }

  .cart-product-remove {
    grid-column: 3;
    grid-row: 1;
  }

  .cart-products-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .directory-card {
    grid-template-rows: minmax(300px, 88vw) auto;
  }

  .directory-card-copy {
    min-height: 120px;
    padding: 18px;
  }

  .filter-showcase-card {
    grid-template-rows: auto clamp(360px, 112vw, 540px);
  }

  .filter-showcase-copy {
    padding: 26px 24px 20px;
  }

  .filter-showcase-media {
    position: relative;
    inset: auto;
  }

  .filter-showcase-media > img {
    position: absolute;
    inset: 4%;
    width: 92%;
    height: 92%;
    max-width: 92%;
    max-height: 92%;
    object-fit: contain;
    object-position: center;
  }

  .filter-showcase-gallery .filter-showcase-gallery-main {
    inset: 4% 8% 96px;
    width: 84%;
    height: calc(96% - 96px);
    max-width: 84%;
    max-height: calc(96% - 96px);
  }

  .filter-showcase-gallery-thumbnails {
    bottom: 12px;
    width: calc(100% - 32px);
    height: 60px;
    gap: 5px;
  }

  .filter-showcase-gallery-nav {
    top: calc(50% - 40px);
    width: 38px;
    height: 50px;
    font-size: 32px;
  }

  .filter-showcase-gallery-prev { left: 8px; }
  .filter-showcase-gallery-next { right: 8px; }

  .filter-showcase-gallery-counter {
    right: 12px;
    bottom: 77px;
  }

  .filter-showcase-copy h1,
  .filter-showcase-copy h2 {
    font-size: 32px;
  }

  .filter-showcase-price-row {
    margin: 12px 0 0 8px;
  }

  .filter-showcase-eyebrow {
    margin-left: 8px;
  }

  .filter-showcase-actions {
    margin: 7px 0 0 8px;
  }

  .filter-showcase-copy h1,
  .filter-showcase-copy h2 {
    margin-left: 8px;
  }

  .filter-showcase-actions button,
  .filter-showcase-article-inline {
    font-size: 13px;
  }

  .filter-spec-dialog {
    min-height: calc(100vh - 24px);
    max-height: calc(100vh - 24px);
    padding: 34px 24px 26px;
  }

  .hero {
    min-height: 720px;
    background-position: 78% 100%;
    background-size: auto 45%;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding-top: 36px;
  }

  .hero h1 {
    font-size: 31px;
    line-height: 1.07;
  }

  .hero h1 strong {
    margin-top: 6px;
  }

  .hero p {
    margin-top: 22px;
    font-size: 16px;
  }

  .hero p br {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    gap: 10px;
    margin-top: 36px;
  }

  .hero-button {
    min-height: 44px;
    padding: 12px 14px;
    font-size: 13px;
    text-align: center;
  }

  .product-slide {
    height: 520px;
    margin-top: 10px;
  }

  .product-slide-content {
    width: calc(100% - 20px);
    padding-top: 16px;
    padding-bottom: 8px;
  }

  .product-slide h2 {
    font-size: 27px;
  }

  .product-slide-actions {
    gap: 10px;
    margin-top: 10px;
  }

  .product-slide-button {
    min-height: 36px;
    padding: 8px 16px;
    font-size: 13px;
  }

  .product-slide-button-primary {
    min-width: 134px;
  }

  .product-slide-button-secondary {
    min-width: 82px;
  }

  .product-slide img {
    height: calc(100% - 125px);
    max-width: 96vw;
    max-height: 395px;
  }

  .components-section {
    padding: 28px 16px 30px;
  }

  .components-grid {
    grid-template-columns: repeat(5, minmax(240px, 1fr));
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }

  .component-card {
    scroll-snap-align: start;
  }

  .production-section {
    padding-top: 10px;
  }

  .production-grid {
    display: flex;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .production-grid::-webkit-scrollbar {
    display: none;
  }

  .production-card {
    flex: 0 0 86vw;
    height: 440px;
    scroll-snap-align: center;
  }

  .production-card-secondary {
    flex-basis: 72vw;
  }

  .production-copy {
    flex-basis: 148px;
    padding: 20px 14px 14px;
  }

  .production-copy h2,
  .production-card-secondary .production-copy h2 {
    font-size: 25px;
  }

  .production-copy p {
    margin-bottom: 12px;
  }

  .contacts-section {
    margin-top: 10px;
    padding: 32px 16px;
  }

  .contacts-heading p {
    font-size: 14px;
  }

  .location-card {
    grid-template-columns: 1fr;
  }

  .location-copy {
    min-height: 240px;
    padding: 24px;
  }

  .location-card img {
    height: 220px;
  }

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

  .contact-details article,
  .contact-details article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-details article:last-child {
    border-bottom: 0;
  }

  .site-footer {
    margin-top: 10px;
    padding-inline: 20px;
  }

  .footer-main {
    min-height: 84px;
  }

  .footer-support {
    width: auto;
    margin-left: auto;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    font-size: 12px;
  }

  .footer-support strong {
    padding-left: 10px;
    border-left: 1px solid #cfd5dd;
  }

  .footer-bottom {
    min-height: 58px;
    padding: 10px 0;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 10px;
    font-size: 12px;
    line-height: 1.35;
  }

  .footer-bottom > span,
  .footer-bottom .footer-support,
  .footer-metrika {
    justify-self: center;
  }

  .footer-support {
    margin-left: 0;
  }
}
