:root {
  --colorBg: #f4f5f7;
  --colorSurface: #ffffff;
  --colorInk: #121417;
  --colorMuted: #69717d;
  --colorLine: #d9dee5;
  --colorPrimary: #121417;
  --colorPrimaryMuted: #2b3037;
  --colorAccent: #c03354;
  --colorAccentSoft: #fff0f3;
  --colorInfo: #0f6b87;
  --colorSoft: #eef1f4;
  --colorBandHero: #ffffff;
  --colorBandStats: #f1f8f3;
  --colorBandDecision: #edf7f4;
  --colorBandOffers: #fff6e8;
  --colorBandGuide: #eef5fb;
  --colorBandDetails: #f6f3ee;
  --shadowCard: 0 18px 42px rgba(18, 20, 23, 0.08);
  --shadowMenu: 0 18px 44px rgba(18, 20, 23, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--colorBg);
  color: var(--colorInk);
  display: flex;
  flex-direction: column;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  margin: 0;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

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

.skipLink {
  background: var(--colorSurface);
  border: 2px solid var(--colorInk);
  color: var(--colorInk);
  font-weight: 900;
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  text-decoration: none;
  top: 12px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
  z-index: 200;
}

.skipLink:focus {
  transform: translateY(0);
}

.siteHeader {
  background: var(--colorSurface);
  border-bottom: 1px solid rgba(18, 20, 23, 0.1);
  box-shadow: 0 10px 28px rgba(18, 20, 23, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.siteHeader__top {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1320px;
  padding: 14px clamp(16px, 4vw, 48px) 10px;
}

.siteHeader__brand {
  align-items: center;
  color: var(--colorInk);
  display: inline-flex;
  font-size: 18px;
  font-weight: 900;
  gap: 10px;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.siteHeader__logo {
  align-items: center;
  background: var(--colorInk);
  border-radius: 4px;
  color: #fff;
  display: inline-flex;
  font-size: 10px;
  font-weight: 900;
  height: 22px;
  justify-content: center;
  line-height: 1;
  width: 22px;
}

.siteHeader__audiences {
  background: #f7f8fa;
  border: 1px solid rgba(18, 20, 23, 0.12);
  border-radius: 8px;
  display: inline-flex;
  min-height: 36px;
  overflow: hidden;
}

.siteHeader__audienceLink {
  align-items: center;
  color: var(--colorMuted);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  min-width: 76px;
  padding: 7px 13px;
  text-decoration: none;
  text-transform: uppercase;
}

.siteHeader__audienceLink--active {
  background: var(--colorInk);
  color: #fff;
}

.siteHeader__nav {
  align-items: center;
  display: flex;
  gap: 6px;
  margin: 0 auto;
  max-width: 1320px;
  overflow: visible;
  padding: 0 clamp(16px, 4vw, 48px) 12px;
  scrollbar-width: none;
}

.siteHeader__nav::-webkit-scrollbar {
  display: none;
}

.siteHeader__navLink {
  color: var(--colorPrimaryMuted);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  min-height: 36px;
  padding: 9px 12px;
  text-decoration: none;
  white-space: nowrap;
}

.siteHeader__navLink:hover,
.siteHeader__navLink--active,
.siteHeader__navItem:focus-within .siteHeader__navLink,
.siteHeader__navItem:hover .siteHeader__navLink {
  background: var(--colorInk);
  border-radius: 6px;
  color: #fff;
}

.siteHeader__navItem {
  position: relative;
}

.siteHeader__flyout {
  background: var(--colorSurface);
  border: 1px solid rgba(18, 20, 23, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadowMenu);
  display: none;
  gap: 28px;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  left: 0;
  max-width: min(840px, calc(100vw - 32px));
  min-width: min(680px, calc(100vw - 32px));
  padding: 20px;
  position: absolute;
  top: 100%;
  z-index: 40;
}

.siteHeader__navItem:focus-within .siteHeader__flyout,
.siteHeader__navItem:hover .siteHeader__flyout {
  display: grid;
}

.siteHeader__flyoutSection h2 {
  color: var(--colorMuted);
  font-size: 12px;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.siteHeader__flyoutSection ul {
  display: grid;
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.siteHeader__flyoutSection a {
  color: var(--colorInk);
  font-size: 14px;
  text-decoration: none;
}

.siteHeader__flyoutSection a:hover {
  color: var(--colorAccent);
}

.eyebrow {
  color: var(--colorAccent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.button,
.productCard__cta {
  align-items: center;
  background: var(--colorPrimary);
  border-radius: 6px;
  border: 0;
  color: #fff;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  text-decoration: none;
}

.button:hover,
.productCard__cta:hover {
  background: var(--colorAccent);
}

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

.section,
.pageHeader,
.contentPage,
.productPage,
.catalogPage {
  margin: 0 auto;
  max-width: 1320px;
  padding: clamp(28px, 5vw, 58px) clamp(16px, 4vw, 48px);
}

.productPage,
.productStats,
.productOffers,
.productIntelligence,
.productDetails {
  background: var(--sectionBg, transparent);
  box-shadow: 0 0 0 100vmax var(--sectionBg, transparent);
  clip-path: inset(0 -100vmax);
}

.section--narrow,
.contentPage {
  max-width: 900px;
}

.pageHeader {
  background: var(--colorSurface);
  border-bottom: 1px solid var(--colorLine);
  max-width: none;
}

.pageHeader--home {
  min-height: clamp(420px, 34vw, 540px);
  overflow: hidden;
  padding: 0;
  position: relative;
}

.pageHeader.pageHeader--home > * {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.homeHero__media {
  inset: 0;
  position: absolute;
}

.homeHero__media::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 29%, rgba(255, 255, 255, 0.32) 56%, rgba(255, 255, 255, 0) 76%);
  content: "";
  inset: 0;
  position: absolute;
}

.homeHero__media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.homeHero__inner {
  align-items: center;
  display: flex;
  margin: 0 auto !important;
  min-height: clamp(420px, 34vw, 540px);
  padding: clamp(38px, 5vw, 68px) clamp(16px, 4vw, 48px);
  position: relative;
  width: min(100%, 1320px);
  z-index: 1;
}

.homeHero__content {
  max-width: 570px;
  width: 46%;
}

.homeHero__content h1 {
  max-width: none;
}

.homeHero__content > p:not(.eyebrow) {
  color: var(--colorPrimaryMuted);
  max-width: 560px;
}

.homeBenefits {
  background: var(--colorInk);
  color: #fff;
}

.homeBenefits__inner {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1320px;
  padding: 0 clamp(16px, 4vw, 48px);
}

.homeBenefits article {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 20px clamp(0px, 2vw, 26px);
}

.homeBenefits article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.homeBenefits strong {
  font-size: 14px;
}

.homeBenefits span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.pageHeader > * {
  margin-left: auto;
  margin-right: auto;
  max-width: 1320px;
}

.pageHeader h1,
.catalogHeader h1,
.contentPage h1 {
  font-size: clamp(34px, 5vw, 66px);
  line-height: 0.98;
  margin: 0 0 14px;
  max-width: 760px;
}

.pageHeader p,
.catalogHeader p {
  color: var(--colorMuted);
  font-size: 17px;
  margin-bottom: 22px;
  max-width: 720px;
}

.section__header {
  align-items: end;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 18px;
}

.section__header h2 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.05;
  margin: 0;
}

.section__header a {
  color: var(--colorInfo);
  font-weight: 900;
  text-decoration: none;
}

.breadcrumbs {
  align-items: center;
  color: var(--colorMuted);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 8px;
  margin-bottom: 18px;
}

.breadcrumbs a {
  color: var(--colorPrimaryMuted);
  font-weight: 800;
  text-decoration: none;
}

.categoryStrip {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.categoryPill {
  background: var(--colorSurface);
  border: 1px solid var(--colorLine);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 92px;
  padding: 18px;
  position: relative;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.categoryPill::after {
  color: var(--colorAccent);
  content: "→";
  font-size: 22px;
  font-weight: 900;
  position: absolute;
  right: 18px;
  top: 14px;
}

.categoryPill:hover {
  border-color: rgba(18, 20, 23, 0.32);
  box-shadow: var(--shadowCard);
  transform: translateY(-2px);
}

.categoryPill span {
  font-weight: 900;
}

.categoryPill small {
  color: var(--colorMuted);
}

.catalogHeader {
  margin-bottom: 28px;
}

.catalogToolbar {
  align-items: center;
  background: var(--colorSurface);
  border-bottom: 1px solid var(--colorLine);
  border-top: 1px solid var(--colorLine);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin: 0 calc(clamp(16px, 4vw, 48px) * -1) 24px;
  padding: 14px clamp(16px, 4vw, 48px);
  position: sticky;
  top: 105px;
  z-index: 20;
}

.catalogToolbar__count {
  color: var(--colorMuted);
  font-size: 14px;
  font-weight: 800;
  margin: 0;
}

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

.catalogToolbar__filterButton {
  background: var(--colorInk);
  border: 1px solid var(--colorInk);
  color: #fff;
  display: none;
  font-weight: 900;
  min-height: 40px;
  padding: 8px 14px;
}

.catalogSort {
  align-items: center;
  color: var(--colorMuted);
  display: flex;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
}

.catalogSort select {
  background: #fff;
  border: 1px solid var(--colorLine);
  color: var(--colorInk);
  min-height: 40px;
  padding: 7px 36px 7px 10px;
}

.catalogLayout {
  align-items: start;
  display: grid;
  gap: 26px;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
}

.catalogFilters {
  background: var(--colorSurface);
  border: 1px solid var(--colorLine);
  overflow: hidden;
  position: sticky;
  top: 178px;
}

.catalogFilters__form {
  display: block;
}

.catalogFilters__header {
  align-items: center;
  border-bottom: 1px solid var(--colorLine);
  display: flex;
  justify-content: space-between;
  padding: 14px;
}

.catalogFilters__header h2 {
  font-size: 16px;
  margin: 0;
}

.catalogFilters__header button,
.catalogFacet button {
  background: none;
  border: 0;
  color: var(--colorInfo);
  font-size: 13px;
  font-weight: 900;
  padding: 0;
}

.catalogFilters__empty {
  color: var(--colorMuted);
  font-size: 14px;
  margin: 0;
  padding: 14px;
}

.catalogFacet {
  border: 0;
  border-bottom: 1px solid var(--colorLine);
  margin: 0;
  min-inline-size: 0;
  padding: 0;
}

.catalogFacet:last-child {
  border-bottom: 0;
}

.catalogFacet legend {
  display: block;
  float: left;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
  padding: 12px 14px 8px;
  text-transform: uppercase;
  width: 100%;
}

.catalogFacet__options {
  clear: both;
  display: grid;
  gap: 2px;
  max-height: 260px;
  overflow: auto;
  padding: 0 14px 14px;
}

.catalogFacet label {
  align-items: center;
  color: var(--colorPrimaryMuted);
  display: grid;
  font-size: 14px;
  gap: 8px;
  grid-template-columns: 14px minmax(0, 1fr) minmax(2ch, auto);
  min-height: 28px;
  padding: 2px 0;
}

.catalogFacet input[type="checkbox"] {
  height: 13px;
  margin: 0;
  width: 13px;
}

.catalogFacet span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.catalogFacet small {
  color: var(--colorMuted);
  font-size: 13px;
  line-height: 1;
  text-align: right;
}

.catalogResults {
  min-width: 0;
}

.catalogEmptyState {
  background: var(--colorSurface);
  border: 1px solid var(--colorLine);
  border-radius: 8px;
  box-shadow: var(--shadowCard);
  margin: 36px auto 0;
  max-width: 720px;
  padding: clamp(28px, 5vw, 52px);
  text-align: center;
}

.catalogEmptyState h2 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
  margin: 0 0 12px;
}

.catalogEmptyState > p:not(.eyebrow) {
  color: var(--colorMuted);
  margin: 0 auto 22px;
  max-width: 520px;
}

.productGrid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.productGrid--featured {
  grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
  justify-content: start;
}

.productGrid--catalog {
  align-items: stretch;
  grid-template-columns: repeat(auto-fit, minmax(240px, 280px));
  justify-content: start;
}

.productGrid .emptyState {
  grid-column: 1 / -1;
}

.productCard {
  background: var(--colorSurface);
  border: 1px solid var(--colorLine);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.productCard:hover {
  border-color: rgba(18, 20, 23, 0.28);
  box-shadow: var(--shadowCard);
  transform: translateY(-2px);
}

.productCard__imageLink {
  aspect-ratio: 3 / 4;
  background: var(--colorSoft);
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  position: relative;
}

.productCard__imageLink img,
.productDetail__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.productCard__imageLink img,
.productCard__imageLink .imagePlaceholder {
  inset: 0;
  position: absolute;
}

.productCard__imageLink .imagePlaceholder {
  min-height: 0;
}

.productCard__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
}

.productCard h3 {
  font-size: 16px;
  line-height: 1.28;
  margin: 0;
  overflow-wrap: anywhere;
}

.productCard h3 a {
  text-decoration: none;
}

.productCard p {
  color: var(--colorMuted);
  font-size: 14px;
  margin: 0;
}

.productCard__brand,
.productDetail__brand,
.updatedAt {
  color: var(--colorMuted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.productCard__price,
.productDetail__price {
  color: var(--colorInk);
  font-weight: 900;
}

.price {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.price__sale {
  color: var(--colorAccent);
}

.price__was {
  color: var(--colorMuted);
  font-weight: 700;
  text-decoration: line-through;
}

.productCard__scales {
  border-top: 1px solid rgba(18, 20, 23, 0.08);
  display: grid;
  gap: 9px;
  margin-top: 2px;
  padding-top: 10px;
}

.productCardScale {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.productCardScale__topline {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.productCardScale__label {
  align-items: center;
  display: flex;
  gap: 6px;
  min-width: 0;
}

.productCardScale__icon {
  color: #0c806c;
  flex: 0 0 16px;
  height: 16px;
  width: 16px;
}

.productCardScale__label span,
.productCardScale__topline strong {
  color: var(--colorPrimaryMuted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.productCardScale__label span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.productCardScale__meter {
  background: #dce4e1;
  border-radius: 999px;
  height: 6px;
  overflow: hidden;
}

.productCardScale__meter span {
  background: #0c806c;
  border-radius: inherit;
  display: block;
  height: 100%;
}

.productCard__cta {
  margin-top: auto;
}

.pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 30px;
}

.pagination a,
.pagination span {
  align-items: center;
  background: var(--colorSurface);
  border: 1px solid var(--colorLine);
  color: var(--colorInk);
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  justify-content: center;
  min-height: 40px;
  min-width: 40px;
  padding: 8px 12px;
  text-decoration: none;
}

.pagination__page--active {
  background: var(--colorInk) !important;
  border-color: var(--colorInk) !important;
  color: #fff !important;
}

.pagination__control--disabled {
  color: var(--colorMuted) !important;
  opacity: 0.5;
}

.productPage {
  --sectionBg: var(--colorBandHero);
  padding-bottom: clamp(34px, 5vw, 64px);
  padding-top: clamp(24px, 4vw, 46px);
}

.productDetail {
  display: grid;
  column-gap: clamp(24px, 5vw, 56px);
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  row-gap: clamp(18px, 3vw, 32px);
}

.productDetail__header {
  grid-column: 1 / -1;
  max-width: 1180px;
}

.productDetail__header h1 {
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.02;
  margin: 0;
  overflow-wrap: anywhere;
}

.productDetail__media {
  min-width: 0;
}

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

.productGallery--single {
  grid-template-columns: minmax(0, 1fr);
}

.productGallery__item {
  aspect-ratio: 3 / 4;
  background: var(--colorSoft);
  border: 1px solid rgba(18, 20, 23, 0.08);
  border-radius: 8px;
  margin: 0;
  overflow: hidden;
}

.productGallery__item img {
  height: 100%;
  width: 100%;
}

.productGallery--single .productGallery__item {
  aspect-ratio: 1 / 1;
  background: #fff;
}

.productGallery--single img {
  object-fit: contain;
}

.productDetail__content {
  align-self: start;
  background: var(--colorSurface);
  border: 1px solid rgba(18, 20, 23, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadowCard);
  padding: clamp(18px, 3vw, 28px);
  position: sticky;
  top: 132px;
}

.productDetail__brand {
  margin: 0 0 10px;
}

.productDetail__price {
  font-size: 20px;
  margin: 0 0 16px;
}

.categoryLinks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.categoryLinks a {
  background: var(--colorSoft);
  border: 1px solid var(--colorLine);
  color: var(--colorPrimaryMuted);
  font-size: 13px;
  font-weight: 900;
  padding: 5px 10px;
  text-decoration: none;
}

.productOptions {
  display: grid;
  gap: 16px;
  margin: 18px 0;
}

.productOptions__group h2 {
  align-items: baseline;
  display: flex;
  font-size: 13px;
  gap: 8px;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.productOptions__group h2 span {
  color: var(--colorMuted);
  font-size: 12px;
  text-transform: none;
}

.productOptions__values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.productOptions__values > span {
  border: 1px solid var(--colorLine);
  font-size: 13px;
  font-weight: 800;
  min-width: 42px;
  padding: 7px 10px;
  text-align: center;
}

.productOptions__values--buttons {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-height: min(384px, 52vh);
  overflow-y: auto;
  padding: 2px 4px 2px 2px;
  scrollbar-gutter: stable;
}

.productVariantButton {
  background: var(--colorSurface);
  border: 1px solid var(--colorLine);
  border-radius: 8px;
  color: var(--colorInk);
  cursor: pointer;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  font: inherit;
  gap: 10px;
  min-height: 74px;
  padding: 7px;
  text-align: left;
  width: 100%;
}

.productVariantButton__image {
  aspect-ratio: 1;
  background: var(--colorSoft);
  border-radius: 6px;
  display: block;
  overflow: hidden;
  width: 100%;
}

.productVariantButton__image img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.productVariantButton__label {
  display: block;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.productVariantButton:hover,
.productVariantButton--active {
  background: #fff;
  border-color: var(--colorInk);
  box-shadow: 0 0 0 1px var(--colorInk);
}

.productVariantMoreButton {
  background: var(--colorInk);
  border: 1px solid var(--colorInk);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  grid-column: 1 / -1;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  min-height: 42px;
  padding: 8px 12px;
}

.productVariantButton:focus-visible,
.productVariantMoreButton:focus-visible {
  outline: 2px solid var(--colorInfo);
  outline-offset: 2px;
}

.productStats {
  --sectionBg: var(--colorBandStats);
  border-bottom: 1px solid rgba(18, 20, 23, 0.07);
  border-top: 1px solid rgba(18, 20, 23, 0.07);
  padding-bottom: clamp(28px, 4vw, 46px);
  padding-top: clamp(28px, 4vw, 46px);
}

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

.productStats .section__header h2 {
  font-size: clamp(22px, 2.5vw, 30px);
}

.productStat {
  background: var(--colorSurface);
  border: 1px solid rgba(18, 20, 23, 0.08);
  border-radius: 8px;
  display: grid;
  gap: 6px;
  min-height: 98px;
  padding: 14px;
}

.productStat span,
.productOffer span {
  color: var(--colorMuted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.productStat strong {
  align-self: end;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.12;
  overflow-wrap: anywhere;
}

.productDecision {
  --sectionBg: var(--colorBandDecision);
  border-bottom: 1px solid rgba(18, 20, 23, 0.07);
  padding-bottom: clamp(32px, 5vw, 56px);
  padding-top: clamp(32px, 5vw, 56px);
}

.productDecision__header {
  align-items: flex-end;
}

.productDecision__header p:not(.eyebrow) {
  color: var(--colorMuted);
  margin: 6px 0 0;
  max-width: 760px;
}

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

.productDecisionScale {
  background: var(--colorSurface);
  border: 1px solid rgba(12, 128, 108, 0.16);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(12, 128, 108, 0.07);
  min-width: 0;
  padding: 16px;
}

.productDecisionScale__topline {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.productDecisionScale__title {
  align-items: center;
  display: flex;
  gap: 10px;
  min-width: 0;
}

.productDecisionScale__icon {
  background: #e4f4f0;
  border: 1px solid rgba(12, 128, 108, 0.18);
  border-radius: 8px;
  color: #0c806c;
  flex: 0 0 34px;
  height: 34px;
  padding: 7px;
  width: 34px;
}

.productDecisionScale h3 {
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
  overflow-wrap: anywhere;
}

.productDecisionScale strong {
  color: #0c6f5f;
  font-size: 15px;
  line-height: 1.2;
  white-space: nowrap;
}

.productDecisionScale__meter {
  background: linear-gradient(90deg, #dce4e1, #d6ece6);
  border-radius: 999px;
  height: 12px;
  margin: 16px 0 8px;
  overflow: hidden;
  position: relative;
}

.productDecisionScale__fill {
  background: linear-gradient(90deg, #0f6b87, #0c806c);
  border-radius: inherit;
  display: block;
  height: 100%;
}

.productDecisionScale__marker {
  background: var(--colorSurface);
  border: 2px solid #0c806c;
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(18, 20, 23, 0.22);
  height: 18px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
}

.productDecisionScale__labels {
  color: var(--colorMuted);
  display: flex;
  font-size: 12px;
  font-weight: 800;
  gap: 12px;
  justify-content: space-between;
}

.productDecisionScale__labels span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.productDecisionScale p {
  color: var(--colorPrimaryMuted);
  margin: 12px 0 0;
}

.productOffers {
  --sectionBg: var(--colorBandOffers);
  border-bottom: 1px solid rgba(18, 20, 23, 0.07);
  padding-bottom: clamp(30px, 4vw, 48px);
  padding-top: clamp(30px, 4vw, 48px);
}

.productOffers__header {
  align-items: flex-end;
}

.productOffers__header p {
  color: var(--colorMuted);
  margin: 6px 0 0;
  max-width: 620px;
}

.productOffers__list {
  display: grid;
  gap: 10px;
}

.productOffer {
  align-items: center;
  background: var(--colorSurface);
  border: 1px solid rgba(154, 90, 0, 0.16);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(154, 90, 0, 0.08);
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(160px, 1fr) minmax(160px, 1fr) minmax(150px, auto);
  padding: 14px;
}

.productOffer--single {
  grid-template-columns: minmax(160px, 1fr) minmax(150px, auto);
}

.productOffer__merchant,
.productOffer__price {
  display: grid;
  gap: 4px;
}

.productOffer strong {
  font-size: 18px;
}

.productOffer small {
  color: var(--colorMuted);
  font-size: 13px;
}

.productOffer__button {
  min-width: 150px;
}

.productIntelligence {
  --sectionBg: var(--colorBandGuide);
  border-bottom: 1px solid rgba(18, 20, 23, 0.07);
  padding-bottom: clamp(34px, 5vw, 62px);
  padding-top: clamp(34px, 5vw, 62px);
}

.productIntelligence__header {
  align-items: flex-end;
}

.productIntelligence__header p:not(.eyebrow) {
  color: var(--colorMuted);
  margin: 6px 0 0;
  max-width: 760px;
}

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

.productScore,
.productUseCase,
.productFitList,
.buyerCheck {
  background: var(--colorSurface);
  border: 1px solid rgba(15, 107, 135, 0.14);
  border-radius: 8px;
  min-width: 0;
  padding: 16px;
}

.iconList__icon {
  color: #0c806c;
  flex: 0 0 18px;
  height: 18px;
  margin-top: 2px;
  width: 18px;
}

.iconList__icon--alert {
  color: var(--colorAccent);
}

.iconList__icon--sparkle {
  color: var(--colorInfo);
}

.productScore__topline {
  align-items: baseline;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.productScore h3,
.productUseCase strong,
.productFitList h3,
.buyerChecks > h3,
.buyerCheck h3 {
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
}

.productScore strong {
  font-size: 24px;
  line-height: 1;
}

.productScore__meter {
  background: #dbe8ee;
  border-radius: 999px;
  height: 8px;
  margin: 14px 0 10px;
  overflow: hidden;
}

.productScore__meter span {
  background: var(--colorInfo);
  border-radius: inherit;
  display: block;
  height: 100%;
}

.productScore p,
.productUseCase p,
.buyerCheck p {
  color: var(--colorPrimaryMuted);
  margin: 0;
}

.productUseCaseGrid,
.productFitGrid,
.buyerChecks__grid {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

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

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

.productUseCase {
  display: grid;
  gap: 8px;
}

.productUseCase span {
  color: var(--colorMuted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.productFitList ul {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.productFitList li,
.featureList li {
  align-items: start;
  display: flex;
  gap: 9px;
  min-width: 0;
}

.productFitList li span,
.featureList li span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.buyerChecks {
  margin-top: 18px;
}

.buyerCheck {
  display: grid;
  gap: 10px;
}

.buyerCheck__title {
  align-items: center;
  display: flex;
  gap: 9px;
  min-width: 0;
}

.buyerCheck__icon {
  background: #e4f4f0;
  border: 1px solid rgba(12, 128, 108, 0.18);
  border-radius: 999px;
  color: #0c806c;
  flex: 0 0 28px;
  height: 28px;
  padding: 6px;
  width: 28px;
}

.customerSignals {
  border-top: 1px solid rgba(15, 107, 135, 0.18);
  margin-top: 24px;
  padding-top: 20px;
}

.customerSignals__header {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}

.customerSignals__header h3,
.customerSignal h3 {
  font-size: 16px;
  line-height: 1.2;
  margin: 0;
}

.customerSignals__header small {
  color: var(--colorMuted);
  font-weight: 800;
}

.customerSignals > p {
  color: var(--colorMuted);
  margin: 8px 0 0;
  max-width: 760px;
}

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

.customerSignal {
  background: var(--colorSurface);
  border: 1px solid rgba(15, 107, 135, 0.14);
  border-radius: 8px;
  min-width: 0;
  padding: 16px;
}

.customerSignal span {
  background: #e4f0e7;
  border-radius: 999px;
  color: #2f6f4e;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
  padding: 3px 8px;
  text-transform: uppercase;
}

.customerSignal p {
  color: var(--colorPrimaryMuted);
  margin: 10px 0 0;
}

.productDetails {
  --sectionBg: var(--colorBandDetails);
  border-bottom: 1px solid rgba(18, 20, 23, 0.07);
  border-top: 1px solid rgba(18, 20, 23, 0.07);
  display: grid;
  gap: 10px;
  padding-bottom: clamp(30px, 4vw, 48px);
  padding-top: clamp(30px, 4vw, 48px);
}

.productDetails__item {
  background: var(--colorSurface);
  border: 1px solid rgba(18, 20, 23, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.productDetails__item summary {
  cursor: pointer;
  font-weight: 900;
  padding: 16px;
}

.productDetails__body {
  border-top: 1px solid var(--colorLine);
  color: var(--colorPrimaryMuted);
  padding: 0 16px 16px;
}

.featureList {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 14px 0 0;
}

.imagePlaceholder {
  align-items: center;
  color: var(--colorMuted);
  display: flex;
  font-size: 42px;
  font-weight: 900;
  height: 100%;
  justify-content: center;
  min-height: 240px;
  text-transform: uppercase;
}

.imagePlaceholder--asset {
  min-height: 0;
  object-fit: cover;
  text-transform: none;
  width: 100%;
}

.emptyState {
  background: var(--colorSurface);
  border: 1px dashed var(--colorLine);
  color: var(--colorMuted);
  margin: 0;
  padding: 20px;
}

.siteFooter {
  background: var(--colorInk);
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  padding: 46px clamp(16px, 4vw, 48px) 30px;
}

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

.siteFooter a:hover {
  color: #fff;
}

.siteFooter__inner {
  display: grid;
  gap: clamp(30px, 6vw, 72px);
  grid-template-columns: minmax(260px, 1.1fr) minmax(0, 2fr);
  margin: 0 auto;
  max-width: 1320px;
}

.siteFooter__brand p {
  margin: 16px 0 0;
  max-width: 440px;
}

.siteFooter__brandLink {
  align-items: center;
  color: #fff;
  display: inline-flex;
  gap: 12px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.siteFooter__logo {
  align-items: center;
  background: #fff;
  border-radius: 6px;
  color: var(--colorInk);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  line-height: 1;
  width: 34px;
}

.siteFooter__contact {
  display: grid;
  font-style: normal;
  gap: 8px;
  margin-top: 22px;
}

.siteFooter__contactItem {
  display: grid;
  gap: 4px;
}

.siteFooter__contactItem > span:first-child {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.siteFooter__contactItem a,
.siteFooter__contactItem span:last-child {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.siteFooter__columns {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
}

.siteFooter__column h2 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.siteFooter__column ul {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.siteFooter__column a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}

.siteFooter__bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin: 36px auto 0;
  max-width: 1320px;
  padding-top: 20px;
}

.siteFooter__bottom p {
  margin: 0;
  max-width: 760px;
}

@media (max-width: 900px) {
  .catalogToolbar {
    top: 104px;
  }

  .catalogToolbar__filterButton {
    display: inline-flex;
  }

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

  .catalogFilters {
    box-shadow: var(--shadowMenu);
    display: none;
    left: 16px;
    max-height: min(70vh, 620px);
    overflow: auto;
    position: fixed;
    right: 16px;
    top: 148px;
    z-index: 50;
  }

  .catalogPage--filtersOpen .catalogFilters {
    display: block;
  }

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

  .productDetail__content {
    position: static;
  }

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

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

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

  .productOffer__button {
    width: 100%;
  }

  .productScoreGrid,
  .productUseCaseGrid,
  .productFitGrid,
  .buyerChecks__grid,
  .customerSignals__grid,
  .productDecision__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .siteHeader__top {
    align-items: center;
    flex-direction: row;
    gap: 10px;
    padding-bottom: 8px;
  }

  .siteHeader__audiences {
    margin-left: auto;
    min-height: 44px;
    width: auto;
  }

  .siteHeader__audienceLink {
    flex: 1;
    min-height: 44px;
    min-width: 64px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .siteHeader__brand {
    font-size: 16px;
    min-height: 44px;
  }

  .siteHeader__navLink {
    align-items: center;
    min-height: 44px;
  }

  .siteHeader__nav {
    overflow-x: auto;
    overflow-y: hidden;
  }

  .siteHeader__nav:has(.siteHeader__navItem:focus-within),
  .siteHeader__nav:has(.siteHeader__navItem:hover) {
    overflow: visible;
  }

  .siteHeader__navItem {
    position: static;
  }

  .siteHeader__flyout {
    grid-template-columns: 1fr;
    left: 16px;
    max-height: 70vh;
    min-width: 0;
    overflow: auto;
    right: 16px;
  }

  .homeHero__media::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.88) 58%, rgba(255, 255, 255, 0.38) 100%);
  }

  .homeHero__media img {
    object-position: 66% center;
  }

  .homeHero__content {
    max-width: 520px;
    width: 82%;
  }

  .catalogToolbar {
    align-items: stretch;
    flex-direction: column;
    position: static;
  }

  .catalogToolbar__actions {
    justify-content: space-between;
  }

  .catalogSort {
    flex: 1;
    justify-content: flex-end;
  }

  .catalogSort select {
    min-width: 0;
    width: 100%;
  }

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

  .homeBenefits__inner {
    grid-template-columns: 1fr;
    padding-bottom: 8px;
    padding-top: 8px;
  }

  .homeBenefits article {
    padding: 12px 0;
  }

  .homeBenefits article + article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

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

  .siteFooter__columns {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }

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

@media (max-width: 520px) {
  .pageHeader--home,
  .homeHero__inner {
    min-height: 460px;
  }

  .homeHero__content {
    width: 100%;
  }

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

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

  .productCard__body {
    padding: 10px;
  }

  .productCard h3 {
    font-size: 14px;
  }

  .productCard p {
    font-size: 13px;
  }

  .productCard__cta {
    min-height: 44px;
    padding: 8px 10px;
  }

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

  .productOptions__values--buttons {
    grid-template-columns: 1fr;
    max-height: 420px;
  }

  .productVariantButton {
    grid-template-columns: 64px minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
