:root {
  color-scheme: light;
  --site-header-height: 68px;
  --font-stack: "Helvetica Neue", "Segoe UI", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --ink: #20252b;
  --muted: #68737d;
  --line: #dfe4e7;
  --paper: #ffffff;
  --warm: #f6f5f1;
  --panel: #eef3f4;
  --blue: #1678bd;
  --blue-dark: #0e5689;
  --green: #19a979;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-stack);
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 458px 0 0;
  z-index: 11;
  background: rgba(255, 255, 255, 0.2);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(0);
  transition: opacity 220ms ease, backdrop-filter 260ms ease;
  content: "";
}

body.mega-menu-open::before {
  opacity: 1;
  backdrop-filter: blur(8px);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  height: var(--site-header-height);
  padding: 0 max(32px, calc((100vw - var(--max)) / 2));
  border-bottom: 0;
  background: #fff !important;
  background-color: #fff !important;
  background-image: none !important;
  box-shadow: none;
  backdrop-filter: none !important;
  isolation: isolate;
}

.brand-mark,
.site-nav,
.header-action,
.nav-toggle {
  position: relative;
  z-index: 62;
}

.site-header:hover,
body.mega-menu-open .site-header {
  background: #fff !important;
  background-color: #fff !important;
  background-image: none !important;
  box-shadow: none;
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #fff;
  content: "";
}

.site-header::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #fff;
  content: "";
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 700;
  line-height: 1;
  justify-self: start;
}

.brand-symbol {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-size: 0.78rem;
}

.brand-symbol-image {
  overflow: hidden;
  border-color: transparent;
  background: #fff;
}

.brand-symbol-image img {
  display: block;
  width: 38px;
  height: 38px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.94rem;
  grid-column: 2;
  justify-self: center;
}

.site-nav a,
.nav-link {
  position: relative;
  color: var(--muted);
  background: transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-item:focus-within > .nav-link {
  background: transparent;
  color: var(--ink);
}

.nav-item {
  display: flex;
  align-items: center;
  min-height: 68px;
  background: transparent;
}

.nav-item.has-mega > .nav-link::before {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -23px;
  height: 2px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: opacity 180ms ease, transform 220ms ease;
}

.nav-item.has-mega.is-open > .nav-link {
  color: var(--ink);
}

.nav-item.has-mega.is-open > .nav-link::before {
  opacity: 1;
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  justify-self: end;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

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

.header-action {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.72);
}

.header-action:hover,
.header-action:focus-visible {
  border-color: var(--blue);
  color: var(--blue-dark);
}

.nav-contact-link {
  display: none;
}

.header-search-form {
  position: relative;
  width: min(300px, 24vw);
  min-width: 240px;
}

.header-search-form input {
  width: 100%;
  height: 42px;
  padding: 0 46px 0 18px;
  border: 1px solid #dfe4e7;
  border-radius: 999px;
  background: #f8fafb;
  color: var(--ink);
  font-size: 0.88rem;
  outline: 0;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.header-search-form input::placeholder {
  color: #a4acb2;
}

.header-search-form input:focus {
  border-color: #aeb8bf;
  background: #fff;
}

.header-search-form button {
  position: absolute;
  top: 50%;
  right: 13px;
  width: 26px;
  height: 26px;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}

.header-search-form button::before {
  position: absolute;
  top: 5px;
  left: 4px;
  width: 11px;
  height: 11px;
  border: 2px solid #9aa1a6;
  border-radius: 50%;
  content: "";
}

.header-search-form button::after {
  position: absolute;
  top: 17px;
  left: 16px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: #9aa1a6;
  transform: rotate(45deg);
  transform-origin: left center;
  content: "";
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 440px;
  height: calc(100svh - 120px);
  max-height: 660px;
  padding: 48px 32px;
  background-color: #f7f7f4;
  background-image: url("../images/product-hero.png");
  background-repeat: no-repeat;
  background-size: auto 88%;
  background-position: 88% center;
  overflow: clip;
}

.hero-content {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero-showcase {
  align-items: center;
  min-height: 0;
  max-height: none;
  height: auto;
  padding: 12px 0 26px;
  background-color: #fff;
  background-image: none;
  overflow: hidden;
}

.home-carousel {
  position: relative;
  width: 100%;
  --home-carousel-card-width: min(55vw, 1120px);
  --home-carousel-height: clamp(280px, 22.55vw, 500px);
  --home-carousel-radius: 4px;
  --home-carousel-side-mask-width: calc(50vw - min(28.05vw, 571.2px));
  overflow: visible;
}

.home-carousel::before,
.home-carousel::after {
  position: absolute;
  top: 0;
  z-index: 4;
  width: var(--home-carousel-side-mask-width);
  height: var(--home-carousel-height);
  background: rgba(10, 14, 18, 0.34);
  pointer-events: none;
  content: "";
}

.home-carousel::before {
  left: 0;
  border-top-right-radius: var(--home-carousel-radius);
  border-bottom-right-radius: var(--home-carousel-radius);
}

.home-carousel::after {
  right: 0;
  border-top-left-radius: var(--home-carousel-radius);
  border-bottom-left-radius: var(--home-carousel-radius);
}

.home-carousel-track {
  position: relative;
  width: 100%;
  height: var(--home-carousel-height);
  padding: 0;
  overflow: visible;
}

.home-carousel-card {
  position: absolute;
  top: 0;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--home-carousel-card-width);
  height: 100%;
  overflow: hidden;
  border-radius: var(--home-carousel-radius);
  background: #eef3f4;
  color: #fff;
  isolation: isolate;
  opacity: 0;
  transform: translateX(calc(-50% + 202%));
  pointer-events: none;
  transition:
    opacity 280ms ease,
    transform 280ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.home-carousel-card[data-slot="hidden-prev"] {
  transform: translateX(calc(-50% - 202%));
}

.home-carousel-card[data-slot="hidden-next"] {
  transform: translateX(calc(-50% + 202%));
}

.home-carousel-card[data-slot="current"] {
  pointer-events: auto;
}

.home-carousel-card[data-slot="prev"] {
  z-index: 1;
  opacity: 1;
  transform: translateX(calc(-50% - 101%));
}

.home-carousel-card[data-slot="current"] {
  z-index: 3;
  opacity: 1;
  transform: translateX(-50%);
}

.home-carousel-card[data-slot="next"] {
  z-index: 1;
  opacity: 1;
  transform: translateX(calc(-50% + 101%));
}

.home-carousel.is-switching-next .home-carousel-card[data-slot="current"] {
  animation: none;
}

.home-carousel.is-switching-next .home-carousel-card[data-slot="prev"] {
  animation: none;
}

.home-carousel.is-switching-next .home-carousel-card[data-slot="next"] {
  animation: none;
}

.home-carousel.is-switching-prev .home-carousel-card[data-slot="current"] {
  animation: none;
}

.home-carousel.is-switching-prev .home-carousel-card[data-slot="prev"] {
  animation: none;
}

.home-carousel.is-switching-prev .home-carousel-card[data-slot="next"] {
  animation: none;
}

@keyframes homeCarouselCurrentIn {
  from {
    opacity: 0.42;
    transform: scale(0.985);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes homeCarouselSideInLeft {
  from {
    opacity: 0.3;
    transform: translateX(-18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes homeCarouselSideInRight {
  from {
    opacity: 0.3;
    transform: translateX(18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.home-carousel-card img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 520ms ease;
}

.home-carousel-card:hover img,
.home-carousel-card:focus-visible img {
  transform: none;
}

.home-carousel-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: transparent;
  pointer-events: none;
}

.home-carousel-card[data-slot="prev"] .home-carousel-shade,
.home-carousel-card[data-slot="next"] .home-carousel-shade {
  background: transparent;
}

.home-carousel-copy {
  position: absolute;
  left: clamp(24px, 4vw, 72px);
  bottom: clamp(24px, 4vw, 70px);
  z-index: 2;
  display: grid;
  gap: 12px;
  max-width: min(520px, 70%);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.34);
  display: none;
}

.home-carousel-card[data-slot="prev"] .home-carousel-copy,
.home-carousel-card[data-slot="next"] .home-carousel-copy {
  left: 26px;
  bottom: 28px;
  max-width: calc(100% - 52px);
}

.home-carousel-copy span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-carousel-copy strong {
  font-size: clamp(1.6rem, 3vw, 3.2rem);
  line-height: 1.18;
}

.home-carousel-card[data-slot="prev"] .home-carousel-copy strong,
.home-carousel-card[data-slot="next"] .home-carousel-copy strong {
  font-size: clamp(1.18rem, 1.4vw, 1.65rem);
}

.home-carousel-copy small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.65;
}

.home-carousel-card[data-slot="prev"] .home-carousel-copy small,
.home-carousel-card[data-slot="next"] .home-carousel-copy small {
  display: none;
}

.home-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 12px;
}

.home-carousel-arrow {
  position: absolute;
  top: calc(50% - 20px);
  z-index: 5;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(223, 228, 231, 0.92);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) scale(0.96);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.home-carousel:hover .home-carousel-arrow,
.home-carousel:focus-within .home-carousel-arrow {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%) scale(1);
}

.home-carousel-arrow:hover,
.home-carousel-arrow:focus-visible {
  background: #fff;
}

.home-carousel-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  border-top: 3px solid var(--ink);
  border-right: 3px solid var(--ink);
  content: "";
}

.home-carousel-arrow-prev {
  left: max(20px, calc(50% - min(27.5vw, 560px) - 210px));
}

.home-carousel-arrow-prev::before {
  transform: translate(-36%, -50%) rotate(-135deg);
}

.home-carousel-arrow-next {
  right: max(20px, calc(50% - min(27.5vw, 560px) - 210px));
}

.home-carousel-arrow-next::before {
  transform: translate(-64%, -50%) rotate(45deg);
}

.home-carousel-dots {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.home-carousel-dots button {
  position: relative;
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #e3e6e8;
  cursor: pointer;
  overflow: hidden;
  transition: width 180ms ease, background-color 180ms ease;
}

.home-carousel-dots button.active {
  width: 24px;
  background: #d8dcdf;
}

.home-carousel-dots button::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
}

.home-carousel-dots button.active::before {
  transform: scaleX(var(--carousel-progress, 0));
}

.home-carousel-toggle {
  position: relative;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid #dfe4e7;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.home-carousel-toggle::before,
.home-carousel-toggle::after {
  position: absolute;
  top: 8px;
  width: 3px;
  height: 10px;
  border-radius: 999px;
  background: var(--ink);
  content: "";
}

.home-carousel-toggle::before {
  left: 8px;
}

.home-carousel-toggle::after {
  right: 8px;
}

.home-carousel-toggle.paused::before {
  top: 7px;
  left: 10px;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--ink);
  border-radius: 0;
  background: transparent;
}

.home-carousel-toggle.paused::after {
  display: none;
}

.hero-showcase-content {
  display: grid;
  align-content: center;
}

.home-hero-copy {
  max-width: 820px;
}

.home-hero-copy .hero-lead {
  margin-top: 24px;
  margin-bottom: 34px;
}

.hero-showcase h1 {
  max-width: 820px;
  font-size: clamp(2.65rem, 5.2vw, 4rem);
  line-height: 1.08;
}

.home-search-form {
  position: relative;
  width: min(760px, 100%);
  margin: 0 0 38px;
}

.home-search-form input {
  width: 100%;
  min-height: 64px;
  padding: 0 64px 0 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-size: 1.05rem;
  box-shadow: none;
}

.home-search-form input::placeholder {
  color: #a0a6aa;
}

.home-search-form button {
  position: absolute;
  top: 50%;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}

.home-search-form button::before {
  position: absolute;
  top: 50%;
  left: 5px;
  width: 16px;
  height: 16px;
  border: 3px solid #9aa1a6;
  border-radius: 50%;
  content: "";
  transform: translateY(-56%);
}

.home-search-form button::after {
  position: absolute;
  top: calc(50% + 8px);
  left: 22px;
  width: 9px;
  height: 3px;
  border-radius: 999px;
  background: #9aa1a6;
  transform: rotate(45deg);
  transform-origin: left center;
  content: "";
}

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

.home-category-card {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 142px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: border-color 160ms ease, transform 160ms ease;
}

.home-category-card:hover,
.home-category-card:focus-visible {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.home-category-card span {
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 700;
}

.home-category-card strong {
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1.35;
}

.home-category-card small {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.hero-product-card {
  display: grid;
  grid-template-rows: minmax(220px, 34vh) auto auto auto;
  min-height: 430px;
  padding: 18px;
  border: 1px solid rgba(32, 37, 43, 0.08);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hero-product-card:hover,
.hero-product-card:focus-visible {
  border-color: rgba(22, 120, 189, 0.4);
  box-shadow: 0 20px 54px rgba(22, 31, 39, 0.12);
  transform: translateY(-3px);
}

.hero-product-card img {
  width: 100%;
  height: 100%;
  margin-bottom: 18px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--warm);
}

.hero-product-card span {
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-product-card h2 {
  margin: 6px 0 8px;
  font-size: 1.48rem;
}

.hero-product-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

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

h1 {
  max-width: 540px;
  margin-bottom: 18px;
  font-size: 4.4rem;
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 2.25rem;
  line-height: 1.18;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
  line-height: 1.35;
  letter-spacing: 0;
}

h1,
h2,
h3,
p,
.brand-mark span:last-child,
.product-body,
.brand-card,
.news-item {
  overflow-wrap: break-word;
}

.hero-lead {
  max-width: 510px;
  margin-bottom: 28px;
  color: #3b444c;
  font-size: 1.2rem;
}

.hero-actions,
.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button::after,
.text-link::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

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

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

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

.section {
  padding: 86px 32px;
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.intro-band {
  padding-top: 48px;
  padding-bottom: 48px;
  background: var(--paper);
  border-bottom: 0;
}

.home-shortcuts {
  padding-top: 56px;
  padding-bottom: 56px;
  background: #f3f4f4;
}

.home-products-section {
  background: #f3f4f4;
}

.news-band {
  background: #f3f4f4;
}

.shortcut-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.shortcut-row a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
  font-weight: 500;
  transition: background-color 160ms ease, color 160ms ease;
}

.shortcut-row a:hover,
.shortcut-row a:focus-visible {
  background: #e9ebec;
  color: #46525b;
}

.intro-grid,
.feature-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 52px;
  align-items: center;
}

.intro-grid > *,
.feature-grid > *,
.contact-grid > *,
.section-heading > * {
  min-width: 0;
}

.intro-grid p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.trust-band {
  background: var(--paper);
}

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

.trust-item,
.support-card,
.download-table article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.trust-item,
.support-card,
.download-table article {
  padding: 26px;
}

.trust-item span,
.support-card span {
  display: inline-grid;
  place-items: center;
  min-width: 44px;
  min-height: 32px;
  margin-bottom: 18px;
  border-radius: 4px;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
}

.trust-item p,
.support-card p,
.download-table p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.home-products-heading,
.home-brands-heading {
  align-items: flex-start;
}

.home-products-heading .filter-bar,
.home-brands-heading .filter-bar {
  margin-top: 22px;
}

.filter-button,
.home-brand-filter-button {
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.filter-button.active,
.home-brand-filter-button.active {
  background: var(--ink);
  color: #fff;
}

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

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

.home-brand-panel {
  display: grid;
  gap: 28px;
}

.home-brand-panel .brand-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.home-brand-logo-card {
  min-height: 112px;
  padding: 20px;
}

.home-brand-logo-card:hover,
.home-brand-logo-card:focus-visible {
  background: #fff;
}

.product-card,
.brand-card,
.news-item,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  border-color: rgba(32, 37, 43, 0.08);
  overflow: hidden;
  box-shadow: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card[hidden] {
  display: none;
}

.product-card:hover,
.product-card:focus-within {
  border-color: rgba(32, 37, 43, 0.12);
  box-shadow: 0 16px 42px rgba(22, 31, 39, 0.08);
  transform: translateY(-2px);
}

.product-media {
  display: grid;
  place-items: center;
  height: 190px;
  background: var(--warm);
  overflow: hidden;
}

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

.product-card-variants {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 12px 14px 0;
}

.product-card-variant {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid transparent;
  border-radius: 4px;
  background: #fff;
}

.product-card-variant.is-active {
  border-color: rgba(32, 37, 43, 0.42);
}

.product-card-variant-image {
  width: 34px;
  height: 34px;
  padding: 2px;
}

.product-card-variant-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-card-variant-text {
  min-height: 26px;
  max-width: 88px;
  padding: 0 8px;
  color: #5f6b74;
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 14px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 8px;
  border-radius: 4px;
  background: var(--panel);
  color: #46525b;
  font-size: 0.78rem;
  font-weight: 700;
}

.product-body p,
.brand-card p,
.news-item p,
.feature-copy p,
.contact-grid p {
  color: var(--muted);
}

.product-body .text-link {
  margin-top: auto;
}

.product-open {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.text-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--blue-dark);
  font-weight: 700;
}

.feature-band {
  background: var(--warm);
}

.support-preview {
  background: #fff;
}

.support-card {
  display: grid;
  align-content: start;
  min-height: 220px;
  transition: border-color 160ms ease, transform 160ms ease;
}

.support-card:hover,
.support-card:focus-visible {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.feature-image {
  width: 100%;
  min-height: 320px;
  border-radius: 8px;
  object-fit: cover;
  border: 0;
}

.brand-card {
  padding: 22px;
}

.brand-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease;
}

.brand-card-link:hover,
.brand-card-link:focus-visible {
  border-color: rgba(32, 37, 43, 0.18);
  transform: translateY(-2px);
}

.brand-logo-text {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 108px;
  margin-bottom: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 1.35rem;
  font-weight: 800;
}

.brand-logo-text img {
  display: block;
  width: auto;
  max-width: 84%;
  max-height: 66px;
  object-fit: contain;
}

.brand-detail-logo {
  object-fit: contain;
  background: #fff;
  padding: 34px;
}

.news-band {
  background: #f3f4f4;
}

.news-list {
  display: grid;
  gap: 14px;
}

.news-item {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  column-gap: 28px;
  padding: 26px;
}

.news-item time {
  color: var(--green);
  font-weight: 800;
}

.news-item p {
  margin-bottom: 0;
}

.contact-band {
  background: var(--paper);
  color: var(--ink);
}

.contact-band .eyebrow,
.contact-band .mail-link {
  color: var(--blue-dark);
}

.contact-band p {
  color: var(--muted);
}

.contact-page-title {
  font-size: 2.25rem;
  line-height: 1.18;
}

.standard-page-hero h1,
.standard-page-section .section-heading h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: 2.25rem;
  line-height: 1.18;
}

.standard-page-hero p,
.standard-page-section .entry-content p,
.standard-page-section .news-item p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.standard-page-section .entry-content h2 {
  margin-top: 36px;
  margin-bottom: 16px;
  font-size: 1.55rem;
  line-height: 1.28;
}

.standard-page-section .entry-content h2:first-child {
  margin-top: 0;
}

.standard-page-section .entry-content h3 {
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 1.12rem;
  line-height: 1.35;
}

.standard-page-section .entry-content ul,
.standard-page-section .entry-content ol {
  margin-top: 0;
  margin-bottom: 22px;
  padding-left: 1.35em;
  color: var(--muted);
  line-height: 1.75;
}

.standard-page-section .entry-content li + li {
  margin-top: 6px;
}

.standard-page-hero .eyebrow,
.standard-page-section .eyebrow,
.contact-band .eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.mail-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 26px;
  background: #fff;
  color: var(--ink);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #46525b;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 11px 12px;
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
}

.contact-form textarea {
  resize: vertical;
}

.message-field,
.form-submit {
  grid-column: 1 / -1;
}

.form-submit {
  justify-self: start;
}

.form-submit:disabled {
  cursor: progress;
  opacity: 0.72;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(246, 248, 249, 0.72);
  backdrop-filter: blur(5px);
}

.contact-modal-panel {
  width: min(440px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
  background: #fff;
  color: var(--ink);
  text-align: center;
  box-shadow: 0 16px 38px rgba(22, 31, 39, 0.12);
  outline: 0;
}

.contact-modal-panel .eyebrow {
  margin-bottom: 10px;
}

.contact-modal-panel h2 {
  margin: 0 0 12px;
  font-size: 1.55rem;
  line-height: 1.28;
}

.contact-modal-panel p:not(.eyebrow) {
  margin: 0 0 22px;
  color: var(--muted);
}

.contact-modal.is-error .contact-modal-panel {
  border-color: #e2b6b6;
}

.sample-contact-modal[hidden] {
  display: none;
}

.sample-contact-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(246, 248, 249, 0.74);
  backdrop-filter: blur(5px);
  overscroll-behavior: contain;
}

.sample-contact-panel {
  position: relative;
  width: min(720px, 100%);
  max-height: min(86vh, 820px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(22, 31, 39, 0.12);
  outline: 0;
  overscroll-behavior: contain;
}

html.sample-modal-open,
body.sample-modal-open {
  overflow: hidden;
}

body.sample-modal-open {
  padding-right: var(--wyt-scrollbar-compensation, 0px);
}

.sample-contact-panel h2 {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.28;
}

.sample-contact-product {
  margin: 10px 0 20px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.sample-contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.sample-contact-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}

.sample-contact-close::before,
.sample-contact-close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #68737d;
  content: "";
}

.sample-contact-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.sample-contact-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-footer {
  padding: 26px 32px;
  color: #cbd3d8;
  background: #15191e;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.footer-inner p {
  margin: 0;
  font-weight: 800;
}

.footer-left {
  display: grid;
  gap: 10px;
}

.footer-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.footer-page-links a {
  color: #d8e0e5;
}

.footer-page-links a:hover,
.footer-page-links a:focus-visible {
  color: #fff;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.product-dialog {
  width: min(960px, calc(100% - 32px));
  border: 0;
  border-radius: 8px;
  padding: 0;
  color: var(--ink);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.24);
}

.product-dialog::backdrop {
  background: rgba(9, 14, 18, 0.52);
}

.dialog-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  padding: 34px;
}

.product-dialog h2 {
  font-size: 1.9rem;
  line-height: 1.24;
}

.dialog-layout img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 8px;
  object-fit: cover;
  background: var(--warm);
}

.dialog-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}

.dialog-close::before,
.dialog-close::after {
  position: absolute;
  top: 18px;
  left: 10px;
  width: 16px;
  height: 2px;
  background: var(--ink);
  content: "";
}

.dialog-close::before {
  transform: rotate(45deg);
}

.dialog-close::after {
  transform: rotate(-45deg);
}

.spec-list {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  margin: 22px 0 26px;
  border-top: 1px solid var(--line);
}

.spec-list dt,
.spec-list dd {
  margin: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.spec-list dt {
  color: var(--muted);
  font-weight: 700;
}

.product-commerce-hero {
  padding-top: 72px;
  background: #fff;
}

.single-wyt_product .section {
  padding-top: 64px;
  padding-bottom: 64px;
}

.single-wyt_product .product-commerce-hero {
  padding-top: 56px;
}

.product-commerce-inner {
  margin-bottom: 24px;
}

.breadcrumb-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.45;
}

.breadcrumb-nav a:hover,
.breadcrumb-nav a:focus-visible {
  color: var(--blue);
  outline: 0;
}

.breadcrumb-nav [aria-current="page"] {
  color: var(--ink);
}

.product-commerce-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 48px;
  align-items: start;
}

.product-commerce-grid > * {
  min-width: 0;
}

.product-media-viewer {
  --product-thumb-size: 88px;
  --product-thumb-gap: 12px;
  --product-visible-thumbs: 5;
  --product-gallery-height: calc((var(--product-thumb-size) * var(--product-visible-thumbs)) + (var(--product-thumb-gap) * (var(--product-visible-thumbs) - 1)));
  position: sticky;
  top: 92px;
  display: grid;
  grid-template-columns: var(--product-thumb-size) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  -webkit-user-select: none;
  user-select: none;
}

.product-thumbs {
  display: grid;
  gap: var(--product-thumb-gap);
  grid-auto-rows: var(--product-thumb-size);
  align-content: start;
  height: var(--product-gallery-height);
  max-height: min(var(--product-gallery-height), calc(100vh - 132px));
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.product-thumbs::-webkit-scrollbar {
  display: none;
}

.product-thumb {
  appearance: none;
  -webkit-tap-highlight-color: transparent;
  width: var(--product-thumb-size);
  height: var(--product-thumb-size);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  outline: 0;
  box-shadow: none;
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
  transition: border-color 160ms ease;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.product-thumb:hover,
.product-thumb:focus,
.product-thumb:focus-visible {
  border-color: var(--blue);
  outline: 0 !important;
  box-shadow: none !important;
}

.product-thumb.is-active {
  border-color: var(--blue);
  outline: 0 !important;
  box-shadow: none !important;
}

.product-main-image-wrap {
  position: relative;
  display: grid;
  height: var(--product-gallery-height);
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
}

.product-main-image {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: #fff;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  user-select: none;
}

.product-gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(32, 37, 43, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
  cursor: pointer;
  opacity: 1;
  -webkit-user-select: none;
  user-select: none;
  transform: translateY(-50%) scale(1);
  transition: opacity 160ms ease, transform 160ms ease, border-color 160ms ease;
}

.product-gallery-arrow:hover,
.product-gallery-arrow:focus-visible {
  border-color: var(--blue);
  outline: 0;
}

.product-gallery-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
  content: "";
}

.product-gallery-arrow-prev {
  left: 14px;
}

.product-gallery-arrow-prev::before {
  transform: translate(-35%, -50%) rotate(-45deg);
}

.product-gallery-arrow-next {
  right: 14px;
}

.product-gallery-arrow-next::before {
  transform: translate(-65%, -50%) rotate(135deg);
}

@media (hover: none) {
  .product-gallery-arrow {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

.product-gallery-arrow[hidden] {
  display: none;
}

.product-purchase-panel {
  padding-top: 0;
}

.product-purchase-panel h1 {
  max-width: 560px;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: clamp(1.48rem, 1.62vw, 2rem);
  line-height: 1.18;
}

.product-title-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.product-purchase-panel .hero-lead {
  max-width: 620px;
}

.product-key-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0;
}

.product-key-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--paper);
}

.product-variant-panel {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
}

.product-variant-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.product-variant-panel > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-variant {
  display: inline-grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
}

.product-variant-image {
  width: 54px;
  height: 54px;
  padding: 4px;
  cursor: pointer;
}

.product-variant-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-variant-text {
  padding: 0 14px;
}

.product-variant:hover,
.product-variant:focus-visible,
.product-variant.is-active {
  border-color: var(--ink);
  outline: 0;
}

.product-buying-panel,
.product-option-panel,
.product-attribute-list {
  margin: 24px 0;
}

.product-buying-panel {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 28px;
  margin-top: 0;
  margin-bottom: 22px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #fff;
}

.product-price-line {
  display: grid;
  gap: 4px;
  justify-items: start;
}

.product-price-line span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.product-price-line strong {
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.2;
}

.product-sample-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
}

.product-sample-row .button {
  flex: 1 1 180px;
}

.product-sample-panel {
  margin-bottom: 46px;
}

.product-option-panel {
  display: grid;
  gap: 16px;
}

.product-option-group p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

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

.product-option {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
}

.product-option:hover,
.product-option:focus-visible,
.product-option.is-selected {
  border-color: var(--ink);
  outline: 0;
}

.product-option.is-selected {
  background: var(--ink);
  color: #fff;
}

.product-attribute-list {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  border-top: 1px solid var(--line);
}

.product-attribute-list dt,
.product-attribute-list dd {
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.product-attribute-list dt {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.product-attribute-list dd {
  color: var(--ink);
  font-weight: 700;
}

.related-products-section {
  padding-top: 36px;
}

.related-products-heading {
  margin-bottom: 32px;
}

.related-products-heading h2 {
  margin-bottom: 0;
}

.related-products-frame {
  position: relative;
  padding: 0;
}

.related-products-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  box-shadow: none;
  cursor: pointer;
  opacity: 1;
  transform: translateY(-50%) scale(1);
  transition: opacity 160ms ease, transform 160ms ease, border-color 160ms ease;
}

@media (hover: none) {
  .related-products-arrow {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

.related-products-prev {
  left: -70px;
}

.related-products-next {
  right: -70px;
}

.related-products-arrow:hover,
.related-products-arrow:focus-visible {
  border-color: var(--blue);
  outline: 0;
}

.related-products-arrow.is-disabled {
  opacity: 0.28;
  pointer-events: none;
}

.related-products-arrow[hidden] {
  display: none;
}

.related-products-arrow::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
  content: "";
}

.related-products-prev::before {
  transform: translate(-35%, -50%) rotate(-45deg);
}

.related-products-next::before {
  transform: translate(-65%, -50%) rotate(135deg);
}

.related-products-carousel {
  display: grid;
  grid-auto-columns: minmax(220px, 250px);
  grid-auto-flow: column;
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding-bottom: 6px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.related-products-carousel::-webkit-scrollbar {
  display: none;
}

.related-products-carousel .product-card {
  scroll-snap-align: start;
}

.related-product-card {
  scroll-snap-align: start;
  border: 1px solid rgba(32, 37, 43, 0.08);
  border-radius: 8px;
  background: var(--paper);
  overflow: hidden;
  transition: border-color 160ms ease, transform 160ms ease;
}

.related-product-card:hover,
.related-product-card:focus-within {
  border-color: rgba(32, 37, 43, 0.16);
  transform: translateY(-2px);
}

.related-product-media {
  display: block;
  background: var(--warm);
}

.related-product-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.related-product-body {
  padding: 18px;
}

.related-product-body h3 {
  margin: 12px 0 8px;
}

.related-product-body p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.related-product-card.is-placeholder {
  pointer-events: none;
}

.related-product-card.is-placeholder .related-product-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(90deg, #f4f5f5, #eef1f2, #f4f5f5);
}

.related-product-placeholder {
  pointer-events: none;
}

.related-product-placeholder .product-media {
  background: linear-gradient(90deg, #f4f5f5, #eef1f2, #f4f5f5);
}

.product-comparison-section {
  background: #fff;
}

.product-comparison-shell {
  position: relative;
}

.comparison-scroll-button {
  position: absolute;
  top: 328px;
  z-index: 8;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  cursor: pointer;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    opacity 160ms ease;
}

.comparison-scroll-button:hover,
.comparison-scroll-button:focus-visible {
  border-color: rgba(27, 130, 200, 0.45);
  background: #fff;
  color: var(--blue);
  outline: 0;
}

.comparison-scroll-button.is-disabled {
  opacity: 0.28;
  pointer-events: none;
}

.comparison-scroll-button[hidden] {
  display: none;
}

.comparison-scroll-button::before {
  width: 11px;
  height: 11px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
}

.comparison-scroll-button-prev {
  left: -72px;
}

.comparison-scroll-button-prev::before {
  transform: translateX(2px) rotate(-135deg);
}

.comparison-scroll-button-next {
  right: -72px;
}

.comparison-scroll-button-next::before {
  transform: translateX(-2px) rotate(45deg);
}

.home-carousel-arrow,
.product-gallery-arrow,
.related-products-arrow,
.comparison-scroll-button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(32, 37, 43, 0.14);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: none;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    opacity 160ms ease,
    transform 160ms ease;
}

.home-carousel-arrow:hover,
.home-carousel-arrow:focus-visible,
.product-gallery-arrow:hover,
.product-gallery-arrow:focus-visible,
.related-products-arrow:hover,
.related-products-arrow:focus-visible,
.comparison-scroll-button:hover,
.comparison-scroll-button:focus-visible {
  border-color: rgba(27, 130, 200, 0.46);
  background: #fff;
  color: var(--blue);
  outline: 0;
}

.home-carousel-arrow::before,
.product-gallery-arrow::before,
.related-products-arrow::before,
.comparison-scroll-button::before {
  width: 10px;
  height: 10px;
  border-width: 2px;
  border-color: currentColor;
}

.product-comparison-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 8px;
  background: #fff;
  scrollbar-width: thin;
  scrollbar-color: rgba(32, 38, 45, 0.42) rgba(32, 38, 45, 0.08);
}

.product-comparison-scroll::-webkit-scrollbar {
  height: 12px;
}

.product-comparison-scroll::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(32, 38, 45, 0.08);
}

.product-comparison-scroll::-webkit-scrollbar-thumb {
  min-width: 96px;
  border: 3px solid rgba(0, 0, 0, 0);
  border-radius: 999px;
  background: rgba(32, 38, 45, 0.42);
  background-clip: padding-box;
}

.product-comparison-scroll::-webkit-scrollbar-thumb:hover {
  background: rgba(32, 38, 45, 0.55);
  background-clip: padding-box;
}

.product-comparison-shell.is-collapsed .product-comparison-table tbody tr:nth-child(n + 7) {
  display: none;
}

.product-comparison-table {
  --comparison-label-width: 208px;
  width: 100%;
  min-width: max(100%, calc(var(--comparison-label-width) + (var(--comparison-product-count) * 280px)));
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--ink);
  font-size: 0.9rem;
}

.product-comparison-table th,
.product-comparison-table td {
  padding: 12px 16px;
  vertical-align: middle;
  text-align: left;
}

.product-comparison-table tbody th,
.product-comparison-table tbody td {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.product-comparison-table thead th {
  padding-top: 14px;
  padding-bottom: 16px;
  vertical-align: bottom;
  background: #fff;
}

.product-comparison-table th:first-child,
.product-comparison-table td:first-child {
  width: var(--comparison-label-width);
}

.product-comparison-table thead th:first-child,
.product-comparison-table tbody th {
  position: sticky;
  left: 0;
  z-index: 3;
  background: inherit;
}

.product-comparison-table thead th:first-child {
  background: #fff;
}

.product-comparison-table thead th:nth-child(2),
.product-comparison-table tbody td:nth-child(2) {
  position: sticky;
  left: var(--comparison-label-width);
  z-index: 2;
  background: inherit;
}

.product-comparison-table thead th:nth-child(2) {
  z-index: 4;
  background: #fff;
}

.product-comparison-table tbody th {
  color: var(--ink);
  font-weight: 700;
}

.product-comparison-table tbody tr:nth-child(odd) {
  background: #f4f6f7;
}

.product-comparison-table tbody tr:nth-child(even) {
  background: #fff;
}

.comparison-product-head {
  display: grid;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.comparison-product-image {
  display: grid;
  place-items: center;
  height: 180px;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.comparison-product-image img {
  width: 100%;
  max-width: 240px;
  height: 100%;
  max-height: 168px;
  object-fit: contain;
}

.comparison-product-title {
  display: -webkit-box;
  overflow: hidden;
  min-height: 2.72em;
  font-weight: 800;
  line-height: 1.36;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.comparison-product-meta {
  display: flex;
  gap: 12px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.comparison-product-meta span {
  flex: 0 1 auto;
  min-width: 0;
}

.comparison-link-row th,
.comparison-link-row td {
  padding-top: 14px;
  padding-bottom: 14px;
}

.comparison-detail-link {
  display: inline-flex;
  align-items: center;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: color 160ms ease;
}

.comparison-detail-link:hover,
.comparison-detail-link:focus-visible {
  color: #57a9df;
}

.comparison-detail-link::after {
  width: 8px;
  height: 8px;
  margin-left: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.comparison-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  margin: 16px auto 0;
  padding: 6px 14px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.comparison-toggle[hidden] {
  display: none;
}

.comparison-toggle::after {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.placeholder-line {
  height: 12px;
  border-radius: 999px;
  background: #e8ecee;
}

.placeholder-tag {
  width: 42%;
  height: 22px;
}

.placeholder-title {
  width: 78%;
  height: 18px;
  margin-top: 16px;
}

.placeholder-copy {
  width: 92%;
  margin-top: 12px;
}

.product-brand-link {
  margin-top: 22px;
}

.product-story-inner {
  max-width: var(--max);
}

.product-feature-content {
  display: grid;
  gap: 22px;
}

.product-feature-content > * {
  margin-top: 0;
  margin-bottom: 0;
}

.product-feature-content img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: var(--warm);
}

.product-video-embed video,
.product-video-embed iframe {
  width: 100%;
  min-height: 460px;
  border: 0;
  border-radius: 8px;
  background: #000;
}

.narrow-section {
  max-width: 980px;
}

.product-section-rail {
  position: fixed;
  top: 50%;
  right: 28px;
  z-index: 28;
  --section-rail-item-height: 48px;
  transform: translateY(-50%);
}

.product-section-rail::before {
  position: absolute;
  top: -12px;
  right: 52px;
  bottom: -12px;
  z-index: 0;
  width: 36px;
  content: "";
  pointer-events: none;
}

.product-section-rail:hover::before,
.product-section-rail:focus-within::before {
  pointer-events: auto;
}

.product-section-dots {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 4px;
}

.product-section-dot {
  position: relative;
  display: grid;
  place-items: center;
  width: 58px;
  min-height: var(--section-rail-item-height);
  border-radius: 999px;
  background: transparent;
  transition: transform 160ms ease;
}

.product-section-dot::after {
  display: block;
  width: 30px;
  height: 7px;
  border-radius: 999px;
  background: #e2e4e5;
  transition: background-color 160ms ease;
  content: "";
}

.product-section-dot.is-active::after {
  background: var(--blue);
}

.product-section-dot:hover,
.product-section-dot:focus-visible {
  transform: translateX(-2px);
  outline: 0;
}

.product-section-card {
  position: absolute;
  top: 50%;
  right: 72px;
  z-index: 2;
  display: grid;
  gap: 4px;
  min-width: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 5px 14px rgba(9, 14, 18, 0.055);
  opacity: 0;
  pointer-events: none;
  transform: translate(10px, -50%);
  transition: opacity 160ms ease, transform 160ms ease;
}

.product-section-rail:hover .product-section-card,
.product-section-rail:focus-within .product-section-card {
  opacity: 1;
  pointer-events: auto;
  transform: translate(0, -50%);
}

.product-section-card-link {
  display: grid;
  place-items: center;
  min-height: var(--section-rail-item-height);
  border-radius: 6px;
  padding: 6px 12px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: background-color 140ms ease, color 140ms ease;
}

.product-section-card-link.is-active {
  color: var(--blue);
}

.product-section-card-link.is-hovered,
.product-section-card-link:hover,
.product-section-card-link:focus-visible {
  color: var(--blue);
  background: rgba(28, 132, 199, 0.08);
  outline: 0;
}

.mega-panel {
  position: fixed;
  top: calc(var(--site-header-height) + 1px);
  left: 0;
  right: 0;
  z-index: 50;
  display: block;
  height: calc(100vh - var(--site-header-height) - 1px);
  border-top: 0;
  border-bottom: 1px solid rgba(215, 222, 228, 0.9);
  background: #fff;
  backdrop-filter: none;
  box-shadow: 0 12px 18px rgba(31, 41, 49, 0.04);
  min-height: 390px;
  overflow-y: auto;
  overscroll-behavior: contain;
  opacity: 0;
  pointer-events: none;
  transform: none;
  visibility: hidden;
  transition:
    opacity 320ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 320ms;
}

body.admin-bar .mega-panel {
  top: calc(var(--site-header-height) + 33px);
  height: calc(100vh - var(--site-header-height) - 33px);
}

body.mega-menu-open {
  overflow: hidden;
}

.has-mega.is-open .mega-panel {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
  transition-delay: 0s;
}

.has-mega.is-current .mega-panel {
  z-index: 31;
}

.mega-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr)) minmax(360px, 0.95fr);
  gap: 34px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 44px 32px 54px;
}

.category-mega {
  grid-template-columns: minmax(220px, 0.78fr) repeat(2, minmax(170px, 0.82fr)) minmax(360px, 1.12fr);
}

.category-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink);
}

.category-nav-link::after {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.has-mega.is-open > .category-nav-link::after {
  transform: translateY(2px) rotate(225deg);
}

.category-full-panel {
  min-height: calc(100vh - var(--site-header-height));
  overflow-y: auto;
}

body.admin-bar .category-full-panel {
  min-height: calc(100vh - var(--site-header-height) - 33px);
}

.category-full-mega {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 42px 46px;
  padding-top: 56px;
  padding-bottom: 70px;
}

.category-full-group {
  display: grid;
  gap: 18px;
  min-width: 0;
  padding-bottom: 34px;
  border-bottom: 1px solid #e7ecef;
}

.category-full-group:last-child {
  border-bottom: 0;
}

.category-full-heading {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 38px;
  margin-left: -10px;
  padding: 0 10px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
}

.category-full-heading::after,
.category-parent-link::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.category-full-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 34px;
}

.category-full-column {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
}

.category-full-column a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 32px;
  padding: 0 9px;
  border-radius: 6px;
  color: var(--muted);
  line-height: 1.45;
}

.category-full-column .category-parent-link {
  gap: 8px;
  margin-left: -9px;
  color: var(--ink);
  font-weight: 750;
}

.site-nav .category-full-heading:hover,
.site-nav .category-full-heading:focus-visible,
.site-nav .category-full-column a:hover,
.site-nav .category-full-column a:focus-visible {
  color: var(--ink);
  background: #f1f3f4;
  outline: 0;
}

.mega-lead {
  display: grid;
  align-content: start;
}

.mega-lead p:not(.mega-title) {
  color: var(--muted);
}

.mega-overview {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 10px;
  color: var(--blue-dark);
  font-weight: 800;
}

.mega-column,
.mega-brand-card,
.mega-note {
  display: grid;
  align-content: start;
  gap: 8px;
}

.mega-title,
.mega-brand-name {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 800;
}

.mega-column a,
.mega-brand-card a {
  color: var(--muted);
  line-height: 1.55;
}

.mega-column a:hover,
.mega-brand-card a:hover {
  color: var(--blue-dark);
}

.mega-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-content: start;
}

.mega-feature {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-align: center;
}

.mega-feature img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  object-fit: cover;
  background: var(--warm);
}

.brand-mega {
  grid-template-columns: repeat(3, minmax(180px, 1fr)) minmax(260px, 0.8fr);
}

.brand-logo-mega {
  grid-template-columns: 1fr;
  gap: 20px;
  padding-top: 52px;
  padding-bottom: 52px;
}

.brand-logo-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.brand-logo-filter-button {
  appearance: none;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: #edf1f3;
  color: var(--muted);
  font: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease;
}

.brand-logo-filter-button:hover,
.brand-logo-filter-button:focus-visible {
  background: #e1e7eb;
  color: var(--ink);
  outline: 0;
}

.brand-logo-filter-button.active {
  background: var(--ink);
  color: #fff;
}

.brand-logo-menu-wall {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 16px;
}

.home-brand-panel .brand-logo-menu-wall {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.brand-logo-group {
  display: grid;
  gap: 14px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(32, 37, 43, 0.08);
}

.brand-logo-group:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.brand-logo-group h3 {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.brand-logo-group-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 16px;
}

.brand-logo-menu-card {
  display: grid;
  place-items: center;
  min-height: 112px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.brand-logo-menu-card[hidden],
.brand-logo-empty[hidden] {
  display: none;
}

.brand-logo-empty {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.brand-logo-menu-card:hover,
.brand-logo-menu-card:focus-visible {
  border-color: #cfd8de;
  background: #f8fafb;
  outline: 0;
  transform: translateY(-2px);
}

.home-brand-panel .home-brand-logo-card:hover,
.home-brand-panel .home-brand-logo-card:focus-visible {
  background: #fff;
  transform: translateY(-2px);
}

.brand-logo-menu-card img {
  display: block;
  width: auto;
  max-width: min(100%, 210px);
  max-height: 70px;
  object-fit: contain;
}

.brand-archive-logo-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.brand-archive-hero {
  padding-bottom: 34px;
}

.brand-archive-section {
  padding-top: 28px;
}

.brand-archive-logo-card {
  color: var(--ink);
  text-decoration: none;
}

.brand-archive-logo-card:hover,
.brand-archive-logo-card:focus-visible {
  background: #fff;
}

.brand-detail-hero-inner {
  display: grid;
  align-items: start;
}

.brand-detail-heading {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  max-width: 980px;
}

.brand-detail-hero-logo {
  width: 100%;
  min-height: 112px;
  pointer-events: none;
  transform: none;
}

.brand-detail-hero-logo:hover,
.brand-detail-hero-logo:focus-visible {
  border-color: var(--line);
  background: #fff;
  transform: none;
}

.brand-detail-lead {
  display: grid;
  gap: 18px;
  justify-items: start;
}

.brand-detail-lead p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.brand-detail-content-section {
  padding-top: 28px;
}

.mega-brand-card {
  padding: 20px;
  border-radius: 8px;
  background: #f7f8f8;
}

.mega-note {
  padding: 20px;
  border-radius: 8px;
  background: var(--warm);
}

.mega-note p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.page-hero,
.catalog-hero {
  padding: 86px 32px;
  background: var(--warm);
}

.page-hero-grid,
.catalog-hero-grid,
.two-column,
.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  align-items: center;
}

.page-hero-grid > *,
.catalog-hero-grid > *,
.two-column > *,
.product-detail-grid > * {
  min-width: 0;
}

.page-hero h1,
.catalog-hero h1 {
  max-width: 720px;
}

.archive-hero h1 {
  max-width: none;
}

.page-hero p,
.catalog-hero p,
.section-copy,
.stat-card p,
.category-card p,
.timeline-item p,
.product-detail-copy p,
.brand-row p {
  color: var(--muted);
}

.page-visual,
.catalog-visual,
.detail-visual {
  width: 100%;
  min-height: 340px;
  border: 0;
  border-radius: 8px;
  object-fit: cover;
  background: var(--warm);
}

.catalog-archive-hero {
  min-height: 0;
}

.catalog-archive-hero .hero-lead {
  max-width: 600px;
  margin-bottom: 0;
}

.catalog-archive-section {
  padding-top: 54px;
  background: #f3f4f4;
}

.catalog-archive-section .section-inner {
  width: min(100%, 1480px);
}

.archive-list-heading {
  margin-bottom: 32px;
}

.catalog-filter-nav {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.catalog-filter-nav::-webkit-scrollbar {
  display: none;
}

.catalog-filter-nav .filter-button {
  flex: 0 0 auto;
  border: 1px solid transparent;
  white-space: nowrap;
}

.catalog-filter-nav .filter-button:not(.active) {
  border-color: var(--line);
  background: #fff;
}

.archive-grid {
  align-items: stretch;
}

.archive-grid .product-card {
  border: 0;
  min-height: 0;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  box-shadow: none;
  transform: none;
}

.related-products-carousel.archive-grid .product-card {
  border: 1px solid rgba(32, 37, 43, 0.14);
}

.related-products-carousel.archive-grid .product-card:hover,
.related-products-carousel.archive-grid .product-card:focus-within {
  border-color: rgba(32, 37, 43, 0.2);
}

.archive-grid .product-media {
  height: auto;
  aspect-ratio: 1.05;
  padding: 16px;
  background: #fff;
}

.archive-grid .product-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 220ms ease;
}

.archive-grid .product-card:hover,
.archive-grid .product-card:focus-within {
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.archive-grid .product-media:hover img,
.archive-grid .product-media:focus-visible img {
  transform: scale(1.08);
}

.archive-grid .product-body {
  gap: 12px;
  padding: 12px 14px 16px;
}

.archive-grid .tag-row,
.archive-grid .text-link,
.archive-grid .product-body > p:not(.product-card-price) {
  display: none;
}

.archive-grid .product-body h3 {
  display: -webkit-box;
  margin: 0;
  min-height: calc(1rem * 1.38 * 2);
  overflow: hidden;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.38;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.archive-grid .product-body h3 a {
  font-weight: inherit;
}

.archive-grid .product-card-price {
  display: block;
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 500;
}

.archive-grid .text-link {
  margin-top: auto;
}

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

.stat-card,
.category-card,
.timeline-item,
.brand-row,
.download-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.stat-card,
.category-card,
.timeline-item,
.download-card {
  padding: 26px;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 2rem;
  line-height: 1;
}

.category-card {
  display: grid;
  gap: 16px;
}

.category-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  object-fit: cover;
  background: var(--warm);
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  margin-bottom: 24px;
}

.catalog-toolbar h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.catalog-filter-link {
  appearance: none;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #e9ebec;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-weight: 500;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.catalog-filter-link:hover {
  background: #d9dddf;
  color: #46525b;
}

.catalog-filter-link.active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.catalog-filter-link.active:hover {
  background: var(--ink);
  color: #fff;
}

.catalog-filter-panel {
  display: grid;
  gap: 14px;
  margin: 0 0 28px;
  padding: 0;
  border: 0;
  background: transparent;
}

.catalog-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.catalog-filter-row > span,
.catalog-search-label span {
  width: 96px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
}

.catalog-filter-button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: #e9ebec;
  color: var(--muted);
  cursor: pointer;
  font-weight: 500;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.catalog-filter-button:hover {
  background: #d9dddf;
  color: #46525b;
}

.catalog-filter-button[hidden] {
  display: none;
}

.catalog-filter-button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.catalog-filter-button.active:hover {
  background: var(--ink);
  color: #fff;
}

.catalog-filter-row-primary {
  padding-bottom: 0;
}

.catalog-search-label {
  position: relative;
  display: flex;
  align-items: center;
  width: min(760px, 100%);
  margin: 0;
}

.catalog-search-label::after {
  position: absolute;
  top: 50%;
  right: 25px;
  width: 16px;
  height: 16px;
  border: 3px solid #9aa1a6;
  border-radius: 50%;
  pointer-events: none;
  content: "";
  transform: translateY(-56%);
}

.catalog-search-label::before {
  position: absolute;
  top: calc(50% + 8px);
  right: 18px;
  width: 9px;
  height: 3px;
  border-radius: 999px;
  background: #9aa1a6;
  transform: rotate(45deg);
  transform-origin: left center;
  pointer-events: none;
  content: "";
}

.catalog-search {
  width: 100%;
  min-height: 64px;
  padding: 0 64px 0 24px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-size: 1.05rem;
}

.catalog-search::placeholder {
  color: #a0a6aa;
}

.catalog-result-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.catalog-spec-wrap {
  position: relative;
  z-index: 5;
  display: inline-flex;
  width: fit-content;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.catalog-spec-shell {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  margin-top: 8px;
  padding: 0 16px;
  border: 1px solid rgba(32, 37, 43, 0.08);
  border-radius: 8px;
  background: #fff;
  font-size: 0.9rem;
}

.catalog-spec-groups {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 42px;
  align-items: center;
}

.catalog-spec-filter {
  position: relative;
}

.catalog-spec-filter summary {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  cursor: pointer;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  list-style: none;
}

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

.catalog-spec-filter summary::after {
  display: inline-block;
  margin-left: 8px;
  border: solid currentColor;
  border-width: 0 1px 1px 0;
  padding: 3px;
  transform: rotate(45deg) translateY(-2px);
  content: "";
}

.catalog-spec-filter[open] {
  z-index: 20;
}

.catalog-spec-filter[open]::after {
  position: absolute;
  top: 100%;
  left: -8px;
  right: -8px;
  height: 10px;
  content: "";
}

.catalog-spec-filter[open] summary::after {
  transform: rotate(225deg) translateY(-2px);
}

.catalog-spec-popover {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 10;
  display: grid;
  min-width: 180px;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(32, 37, 43, 0.08);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(22, 31, 39, 0.12);
}

.catalog-spec-popover .catalog-filter-row {
  display: grid;
  width: min(180px, calc(100vw - 64px));
  max-width: min(180px, calc(100vw - 64px));
  gap: 6px;
}

.catalog-spec-popover .catalog-filter-button {
  justify-content: flex-start;
  min-height: 34px;
  width: 100%;
  padding: 0 12px;
  border-color: transparent;
  background: #fff;
  color: var(--muted);
  border-radius: 6px;
  font-size: 0.88rem;
  transition: none;
}

.catalog-spec-popover .catalog-filter-button:hover {
  background: #e9ebec;
  color: var(--muted);
}

.catalog-spec-popover .catalog-filter-button.active,
.catalog-spec-popover .catalog-filter-button.active:hover {
  border-color: transparent !important;
  background: #d9dddf !important;
  color: #46525b !important;
  transition: none;
}

.catalog-reset-button {
  min-height: 38px;
  border: 0;
  padding: 0 12px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 160ms ease, background-color 160ms ease;
}

.catalog-reset-button:hover {
  color: var(--ink);
}

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

.catalog-archive-section .product-list-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.home-product-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.catalog-empty-message {
  grid-column: 1 / -1;
  white-space: nowrap;
}

.product-list-section + .product-list-section {
  margin-top: 72px;
}

.product-list-section.is-empty {
  display: none;
}

.brand-row {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) minmax(260px, 0.65fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
}

.brand-row + .brand-row {
  margin-top: 18px;
}

.brand-chip-list,
.small-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.brand-chip-list a,
.small-link-list a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 4px;
  background: var(--panel);
  color: #46525b;
  font-size: 0.86rem;
  font-weight: 700;
}

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

.product-local-nav {
  position: sticky;
  top: 68px;
  z-index: 12;
  border-top: 1px solid rgba(32, 37, 43, 0.08);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.product-local-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 52px;
}

.product-local-inner strong {
  font-size: 0.94rem;
}

.product-local-inner div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.product-local-inner a:hover {
  color: var(--blue-dark);
}

.story-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: start;
  margin: 34px 0;
  padding: 28px;
  border-radius: 8px;
  background: var(--warm);
}

.spec-table {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  margin: 0;
  border-top: 1px solid var(--line);
}

.spec-table dt,
.spec-table dd {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.spec-table dt {
  color: var(--muted);
  font-weight: 800;
}

.side-panel {
  position: sticky;
  top: 92px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.side-panel .button {
  width: 100%;
  margin-top: 12px;
}

.company-hero-stack,
.company-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  align-items: start;
}

.company-hero-stack {
  gap: 28px;
}

.company-hero-stack > div:first-child {
  max-width: 940px;
}

.company-stack .company-copy {
  max-width: 980px;
}

.company-hero,
.support-hero {
  padding-bottom: 34px;
}

.company-section {
  padding-top: 42px;
}

.company-profile-panel {
  position: static;
  width: 100%;
}

.company-copy h2,
.support-copy h2 {
  margin-top: 36px;
}

.company-copy h2:first-child,
.support-copy h2:first-child {
  margin-top: 0;
}

.company-profile-panel h2,
.support-contact-panel h2 {
  margin-bottom: 18px;
  font-size: 1.35rem;
}

.company-table {
  grid-template-columns: 180px minmax(0, 1fr);
}

.support-contact-panel {
  align-self: start;
}

.support-contact-panel .text-link {
  margin-top: 14px;
}

.support-page-section {
  padding-top: 42px;
}

.support-page-inner {
  max-width: 1180px;
}

.support-copy {
  max-width: 1120px;
}

.support-contact-block {
  margin-top: 72px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}

.support-contact-block h2 {
  margin-top: 0;
  margin-bottom: 18px;
}

.support-contact-block p {
  max-width: 860px;
}

.support-contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  margin-top: 26px;
}

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

.download-table {
  display: grid;
  gap: 12px;
}

.download-table article {
  display: grid;
  grid-template-columns: 110px minmax(0, 0.9fr) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.download-table h3,
.download-table p {
  margin-bottom: 0;
}

.support-link-list {
  margin-top: 20px;
}

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

.download-list li + li {
  margin-top: 10px;
}

.support-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 0 20px;
  }

  body::before {
    display: none;
  }

  .nav-toggle {
    display: block;
    grid-column: 2;
  }

  .header-action {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: var(--site-header-height);
    right: 16px;
    display: none;
    grid-column: 1 / -1;
    justify-self: stretch;
    width: min(300px, calc(100vw - 32px));
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(24, 32, 38, 0.14);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
    color: var(--ink);
  }

  .header-search-form {
    width: 100%;
    min-width: 0;
    margin: 6px 0;
  }

  .nav-contact-link {
    display: block;
  }

  .nav-item {
    display: block;
    min-height: 0;
  }

  .category-nav-link::after {
    display: none;
  }

  .mega-panel {
    position: static;
    display: none;
    height: auto;
    min-height: 0;
    overflow: visible;
    overscroll-behavior: auto;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .has-mega.is-open .mega-panel,
  .has-mega:focus-within .mega-panel {
    display: none;
  }

  .hero {
    min-height: 520px;
    height: calc(100svh - 112px);
    padding: 42px 22px;
    background-size: auto 100%;
    background-position: 62% center;
  }

  .hero::before {
    position: absolute;
    inset: 0;
    background: rgba(247, 247, 244, 0.72);
    content: "";
  }

  .hero-content {
    position: relative;
  }

  .hero-showcase {
    min-height: 0;
    height: auto;
    padding: 10px 16px 22px;
    background-position: center;
  }

  .hero-showcase::before {
    display: none;
  }

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

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

  .home-carousel-track {
    display: block;
    height: clamp(330px, 64vw, 430px);
  }

  .home-carousel-card[data-slot="prev"],
  .home-carousel-card[data-slot="next"] {
    display: none;
  }

  .home-carousel-card[data-slot="current"] {
    display: block;
    width: 100%;
  }

  .home-carousel-arrow {
    display: none;
  }

  .home-carousel-copy {
    right: 24px;
    left: 24px;
    bottom: 28px;
    max-width: none;
  }

  .related-products-prev {
    left: 10px;
  }

  .related-products-next {
    right: 10px;
  }

  .hero-product-card {
    grid-template-rows: minmax(190px, 38vw) auto auto auto;
    min-height: 0;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .intro-grid,
  .feature-grid,
  .contact-grid,
  .page-hero-grid,
  .catalog-hero-grid,
  .two-column,
  .product-detail-grid,
  .brand-detail-heading,
  .product-commerce-grid,
  .detail-summary,
  .dialog-layout {
    grid-template-columns: 1fr;
  }

  .product-media-viewer {
    position: static;
  }

  .product-section-rail {
    display: none;
  }

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

  .product-grid,
  .brand-grid,
  .category-grid,
  .stat-grid,
  .value-grid,
  .timeline,
  .trust-grid,
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-brand-panel .brand-logo-menu-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .download-table article,
  .story-band {
    grid-template-columns: 1fr;
  }

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

  .side-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 62px;
    padding: 0 16px;
  }

  .brand-mark span:last-child {
    max-width: 150px;
    line-height: 1.1;
  }

  .site-nav {
    top: 62px;
  }

  .hero {
    min-height: 470px;
    height: calc(100svh - 104px);
    padding: 34px 18px;
    background-position: 58% center;
  }

  h1 {
    max-width: 330px;
    font-size: 2.45rem;
  }

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

  .hero-showcase h1 {
    max-width: 340px;
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .hero-lead {
    max-width: 330px;
    font-size: 1.04rem;
  }

  .section {
    padding: 62px 18px;
  }

  .catalog-archive-hero {
    padding-top: 54px;
    padding-bottom: 26px;
  }

  .catalog-archive-hero h1 {
    max-width: none;
    font-size: 3.2rem;
  }

  .catalog-archive-section {
    padding-top: 24px;
  }

  .catalog-toolbar {
    gap: 16px;
  }

  .catalog-search {
    min-height: 56px;
  }

  .catalog-filter-nav {
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .home-brand-panel .brand-logo-menu-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .single-wyt_product .section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .single-wyt_product .product-commerce-hero {
    padding-top: 36px;
  }

  .intro-band {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .product-grid,
  .brand-grid,
  .product-list-grid,
  .category-grid,
  .stat-grid,
  .value-grid,
  .timeline,
  .trust-grid,
  .support-grid,
  .news-item,
  .contact-form,
  .spec-list,
  .spec-table {
    grid-template-columns: 1fr;
  }

  .catalog-filter-row,
  .catalog-search-label,
  .product-local-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .catalog-filter-row > span,
  .catalog-search-label span {
    width: auto;
  }

  .catalog-search {
    width: 100%;
  }

  .catalog-archive-section .product-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .archive-grid .product-body {
    padding: 0 12px 12px;
  }

  .archive-grid .product-body h3 {
    font-size: 0.95rem;
  }

  .product-media-viewer {
    --product-thumb-size: 72px;
    grid-template-columns: 1fr;
  }

  .product-thumbs {
    display: flex;
    order: 2;
    height: auto;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 0 6px;
  }

  .product-thumb {
    flex: 0 0 72px;
    width: 72px;
  }

  .product-main-image-wrap {
    height: auto;
    min-height: 0;
    aspect-ratio: 1;
  }

  .product-main-image {
    min-height: 0;
  }

  .product-purchase-panel h1 {
    font-size: 1.6rem;
  }

  .product-price-line {
    align-items: flex-start;
  }

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

  .product-sample-row {
    justify-content: stretch;
  }

  .product-sample-row .button {
    flex: 1 1 180px;
  }

  .product-attribute-list {
    grid-template-columns: 92px minmax(0, 1fr);
  }

  .product-local-nav {
    position: static;
  }

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

  .news-item {
    row-gap: 4px;
  }

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

  .dialog-layout {
    padding: 24px;
  }

  .dialog-layout img {
    min-height: 220px;
  }
}
