:root {
  --milk: #f2f0e9;
  --graphite: #101310;
  --forest: #26382d;
  --stone: #a6a59e;
  --orange: #f26430;
  --white: #fff;
  --line: rgba(16, 19, 16, 0.18);
  --mono: "SFMono-Regular", "Roboto Mono", "Cascadia Code", "Courier New", monospace;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
  color: var(--graphite);
  background: var(--milk);
  font-family: Arial, Helvetica, sans-serif;
  font-synthesis: none;
  text-rendering: geometricPrecision;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--milk);
}

body.panel-open {
  overflow: hidden;
}

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

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

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

button {
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

fieldset,
figure {
  margin: 0;
  padding: 0;
  border: 0;
}

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

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

.mono {
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.announcement {
  min-height: 30px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--white);
  background: var(--graphite);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.announcement p {
  margin: 0;
}

.announcement a,
.announcement button {
  color: #c7c9c3;
  border-bottom: 1px solid currentColor;
  font: inherit;
  letter-spacing: inherit;
  line-height: 1.35;
  text-transform: inherit;
  transition: color 180ms ease, border-color 180ms ease;
}

.announcement a:hover,
.announcement button:hover {
  color: var(--white);
  border-color: var(--orange);
}

[data-site-header] {
  display: contents;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 74px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 190px 1fr 330px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(242, 240, 233, 0.94);
  backdrop-filter: blur(16px);
  transition: transform 320ms var(--ease), box-shadow 220ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(16, 19, 16, 0.07);
}

.site-header.is-hidden {
  transform: translateY(-105%);
}

.nord-logo {
  width: max-content;
  font-size: 27px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.055em;
}

.nord-logo span {
  color: var(--orange);
}

.nord-logo sup {
  margin-left: 3px;
  font-family: var(--mono);
  font-size: 6px;
  font-weight: 400;
  letter-spacing: 0;
  vertical-align: top;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 2.5vw, 44px);
}

.desktop-nav a {
  position: relative;
  padding: 27px 0 26px;
  font-size: 13px;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.header-actions button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.header-actions i {
  min-width: 18px;
  font-size: 20px;
  font-style: normal;
  line-height: 1;
  text-align: center;
}

.header-actions .cart-count,
.header-actions .favorite-count {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid var(--graphite);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 9px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-actions .cart-count.has-items,
.header-actions .favorite-count.has-items {
  border-color: var(--orange);
  color: var(--white);
  background: var(--orange);
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-content: center;
  gap: 6px;
}

.menu-button i {
  width: 21px;
  height: 1px;
  display: block;
  background: currentColor;
}

.button {
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 220ms var(--ease);
}

.button:not(:has(> span)) {
  justify-content: center;
}

.button span {
  font-size: 17px;
  font-weight: 400;
  transition: transform 220ms var(--ease);
}

.button:hover span {
  transform: translateX(4px);
}

.button--accent {
  color: var(--white);
  background: var(--orange);
}

.button--accent:hover {
  background: #db4c1e;
}

.button--glass {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: rgba(16, 19, 16, 0.12);
  backdrop-filter: blur(8px);
}

.button--glass:hover {
  border-color: var(--white);
  background: rgba(16, 19, 16, 0.38);
}

.button--dark {
  color: var(--white);
  background: var(--graphite);
}

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

.button--border {
  border-color: var(--graphite);
}

.button--border:hover {
  color: var(--white);
  background: var(--graphite);
}

.eyebrow {
  margin: 0 0 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--orange);
}

.eyebrow--light {
  color: rgba(255, 255, 255, 0.67);
}

.section {
  padding: 128px 32px;
}

.section-heading {
  margin-bottom: 56px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(54px, 5.1vw, 76px);
  font-weight: 650;
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
  gap: 64px;
  align-items: end;
}

.section-heading--split > p {
  max-width: 400px;
  margin: 0 0 4px auto;
  color: #4f534e;
  font-size: 15px;
  line-height: 1.55;
}

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

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
}

.text-link span {
  font-size: 16px;
  transition: transform 220ms var(--ease);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.route-hero {
  position: relative;
  min-height: min(850px, calc(100svh - 104px));
  overflow: hidden;
  color: var(--white);
  background: #313834;
}

.route-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: hero-settle 1.5s var(--ease) both;
}

.route-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 13, 10, 0.64) 0%, rgba(9, 13, 10, 0.2) 48%, rgba(9, 13, 10, 0.05) 76%), linear-gradient(0deg, rgba(8, 11, 9, 0.65), transparent 45%);
}

.route-hero__top {
  position: absolute;
  top: 28px;
  right: 32px;
  left: 32px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.68);
}

.route-hero__copy {
  position: absolute;
  top: 50%;
  left: 32px;
  width: min(720px, 58vw);
  transform: translateY(-45%);
}

.route-hero__copy h1 {
  margin: 0;
  font-size: clamp(66px, 7.25vw, 108px);
  font-weight: 650;
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.route-hero__lead {
  max-width: 470px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.45;
}

.button-row {
  margin-top: 34px;
  display: flex;
  gap: 10px;
}

.route-hero__data {
  position: absolute;
  right: 32px;
  bottom: 28px;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.36);
}

.route-hero__data div {
  padding: 15px 14px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.route-hero__data div:not(:first-child) {
  padding-left: 14px;
}

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

.route-hero__data dt {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.53);
  font-size: 8px;
}

.route-hero__data dd {
  margin: 0;
  color: var(--white);
  font-size: 10px;
}

.route-hero__scroll {
  position: absolute;
  bottom: 25px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.68);
}

.route-hero__scroll span {
  animation: scroll-hint 1.8s ease-in-out infinite;
}

.category-section {
  padding-bottom: 144px;
}

.category-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 0.65fr 1.35fr;
  gap: 12px;
}

.category-card {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.category-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #cbc9c1;
  background-size: cover;
  background-position: center;
  transition: transform 700ms var(--ease), filter 350ms ease;
}

.category-card__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 13, 10, 0.75), transparent 55%);
  content: "";
}

.category-card__image--apparel {
  background-image: url("./assets/nord-apparel-route.jpg");
  background-position: 72% center;
}

.category-card__image--boots {
  background-image: url("./assets/nord-boots-trail.jpg");
  background-position: 58% center;
}

.category-card__image--pack {
  background-image: url("./assets/nord-pack-route.jpg");
  background-position: 36% center;
}

.category-card__image--gear {
  background-image: url("./assets/nord-camp-system.jpg");
  background-position: 64% center;
}

.category-card__index {
  position: absolute;
  top: 18px;
  left: 18px;
  color: rgba(255, 255, 255, 0.65);
}

.category-card__title {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
}

.category-card__title i {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  transition: transform 220ms var(--ease);
}

.category-card:hover .category-card__image {
  filter: saturate(1.06);
  transform: scale(1.035);
}

.category-card:hover .category-card__title i {
  transform: translate(3px, -3px);
}

.sheet-photo {
  display: block;
  background-color: #ebe8df;
  background-image: var(--product-main-image, url("./assets/nord-shell-gallery-1-v3.jpg"));
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.sheet-photo--alt {
  background-image: var(--product-detail-image, url("./assets/nord-shell-gallery-4-v3.jpg"));
  background-size: cover;
}

[data-sheet="1"], [data-category-card="1"] {
  --product-main-image: url("./assets/nord-shell-gallery-1-v3.jpg");
  --product-detail-image: url("./assets/nord-shell-gallery-4-v3.jpg");
}

[data-sheet="2"] {
  --product-main-image: url("./assets/nord-product-warm-main-v3.jpg");
  --product-detail-image: url("./assets/nord-product-warm-detail-v3.jpg");
}

[data-sheet="3"] {
  --product-main-image: url("./assets/nord-product-trail-main-v3.jpg");
  --product-detail-image: url("./assets/nord-product-trail-detail-v3.jpg");
}

[data-sheet="4"], [data-category-card="4"] {
  --product-main-image: url("./assets/nord-product-pack35-main-v3.jpg");
  --product-detail-image: url("./assets/nord-product-pack35-detail-v3.jpg");
}

[data-sheet="5"] {
  --product-main-image: url("./assets/nord-product-puff-main-v3.jpg");
  --product-detail-image: url("./assets/nord-product-puff-detail-v3.jpg");
}

[data-sheet="6"] {
  --product-main-image: url("./assets/nord-product-base-main-v3.jpg");
  --product-detail-image: url("./assets/nord-product-base-detail-v3.jpg");
}

[data-sheet="7"] {
  --product-main-image: url("./assets/nord-product-air-main-v3.jpg");
  --product-detail-image: url("./assets/nord-product-air-detail-v3.jpg");
}

[data-sheet="8"] {
  --product-main-image: url("./assets/nord-product-storm-main-v3.jpg");
  --product-detail-image: url("./assets/nord-product-storm-detail-v3.jpg");
}

[data-sheet="9"] {
  --product-main-image: url("./assets/nord-product-wind-main-v3.jpg");
  --product-detail-image: url("./assets/nord-product-wind-detail-v3.jpg");
}

[data-sheet="10"] {
  --product-main-image: url("./assets/nord-product-core-main-v3.jpg");
  --product-detail-image: url("./assets/nord-product-core-detail-v3.jpg");
}

[data-sheet="11"] {
  --product-main-image: url("./assets/nord-product-ridge-main-v3.jpg");
  --product-detail-image: url("./assets/nord-product-ridge-detail-v3.jpg");
}

[data-sheet="12"] {
  --product-main-image: url("./assets/nord-product-rain-main-v3.jpg");
  --product-detail-image: url("./assets/nord-product-rain-detail-v3.jpg");
}

[data-visual="boots"] {
  --product-main-image: url("./assets/nord-boots-trail.jpg");
  --product-detail-image: url("./assets/nord-route-khibiny.jpg");
}

[data-visual="pack"] {
  --product-main-image: url("./assets/nord-product-pack35-main-v3.jpg");
  --product-detail-image: url("./assets/nord-product-pack35-detail-v3.jpg");
}

[data-visual="camp"] {
  --product-main-image: url("./assets/nord-camp-system.jpg");
  --product-detail-image: url("./assets/nord-route-lovozero.jpg");
}

[data-visual="boots"] .sheet-photo,
.sheet-photo[data-visual="boots"],
[data-visual="camp"] .sheet-photo,
.sheet-photo[data-visual="camp"] {
  background-position: center;
  background-size: cover;
}

.popular-section {
  padding-top: 0;
}

.product-grid {
  display: grid;
}

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

.product-card {
  position: relative;
  min-width: 0;
}

.product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  display: block;
  overflow: hidden;
  background: #e9e7df;
}

.product-card__media .sheet-photo {
  position: absolute;
  inset: 0;
  transition: opacity 420ms var(--ease), transform 650ms var(--ease);
}

.product-card__media .sheet-photo--alt {
  opacity: 0;
  transform: scale(1.035);
}

.product-card:hover .sheet-photo--main {
  opacity: 0;
  transform: scale(1.025);
}

.product-card:hover .sheet-photo--alt {
  opacity: 1;
  transform: scale(1);
}

.product-card[data-visual] .sheet-photo--alt {
  opacity: 0;
}

.product-card[data-visual]:hover .sheet-photo--main {
  opacity: 1;
  transform: scale(1.035);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 7px 9px 6px;
  color: var(--white);
  background: var(--orange);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.product-badge--dark {
  background: var(--graphite);
}

.product-badge--light {
  color: var(--graphite);
  background: var(--white);
}

.product-badge--sale {
  background: #ba3d22;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 22px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.favorite-button {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  border-color: transparent;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.favorite-button:hover,
.favorite-button.is-active,
.product-favorite.is-active {
  border-color: var(--orange);
  color: var(--orange);
  transform: scale(1.04);
}

.product-card__body {
  position: relative;
  padding: 15px 0 0;
  border-top: 1px solid rgba(16, 19, 16, 0.12);
}

.product-card__category {
  margin: 0 0 9px;
  color: #70736e;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.product-card__description {
  min-height: 44px;
  margin: 11px 0 0;
  color: #626660;
  font-size: 13px;
  line-height: 1.48;
}

.product-card__meta {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-card__meta strong {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 16px;
}

.product-card__meta s {
  color: #8b8d88;
  font-size: 11px;
  font-weight: 400;
}

.swatches {
  display: flex;
  align-items: center;
  gap: 5px;
}

.swatch {
  width: 13px;
  height: 13px;
  display: block;
  border: 1px solid rgba(16, 19, 16, 0.23);
  border-radius: 50%;
}

.swatch--green,
.swatch--forest { background: #26382d; }
.swatch--graphite { background: #2b2e2d; }
.swatch--orange { background: #bf542e; }
.swatch--stone { background: #aaa9a3; }
.swatch--milk { background: #f5f2e9; }

.product-card__sizes {
  min-height: 28px;
  padding-top: 10px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid rgba(16, 19, 16, 0.11);
  color: #5f635d;
  font-size: 10px;
  font-weight: 560;
}

.product-card__sizes span {
  color: #878a84;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.product-card__field-specs {
  margin: 14px 0 0;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  border-top: 1px solid rgba(16, 19, 16, 0.13);
}

.product-card__field-specs div {
  min-width: 0;
  padding: 11px 8px 10px 0;
}

.product-card__field-specs div + div {
  padding-left: 10px;
  border-left: 1px solid rgba(16, 19, 16, 0.13);
}

.product-card__field-specs dt {
  margin-bottom: 6px;
  color: #888b85;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.product-card__field-specs dd {
  margin: 0;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.3;
}

.quick-add {
  width: 100%;
  min-height: 42px;
  margin-top: 13px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--white);
  background: var(--graphite);
  font-size: 11px;
  transition: color 180ms ease, background 180ms ease;
}

.quick-add:hover {
  background: var(--orange);
}

.quick-add:not(:has(span)) {
  justify-content: center;
}

.quick-size-picker {
  margin-top: 7px;
  padding: 13px;
  color: var(--white);
  background: var(--forest);
}

.quick-size-picker[hidden] {
  display: none;
}

.quick-size-picker__head {
  margin-bottom: 11px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quick-size-picker__head p {
  margin: 0;
  font-size: 12px;
  font-weight: 650;
}

.quick-size-picker__head > button {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.68);
  font-size: 20px;
}

.quick-size-picker__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(42px, 1fr));
  gap: 5px;
}

.quick-size-picker__options button {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  font-family: var(--mono);
  font-size: 10px;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.quick-size-picker__options button:hover,
.quick-size-picker__options button:focus-visible {
  border-color: var(--orange);
  color: var(--white);
  background: var(--orange);
}

.season-section {
  position: relative;
  min-height: 980px;
  padding: 108px 32px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 76px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.season-section::before {
  position: absolute;
  top: -25%;
  right: -8%;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 48% 52% 45% 55%;
  content: "";
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.02), 0 0 0 160px rgba(255, 255, 255, 0.018);
}

.season-section__copy {
  position: relative;
  z-index: 2;
  padding-top: 6px;
}

.season-section__code {
  margin: 60px 0 44px;
  color: rgba(255, 255, 255, 0.5);
}

.season-section h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(58px, 5.8vw, 86px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.067em;
}

.season-section__copy > p:not(.eyebrow, .season-section__code) {
  max-width: 440px;
  margin: 34px 0 30px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 15px;
  line-height: 1.6;
}

.season-section figure {
  overflow: hidden;
}

.season-section figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.season-section__main {
  position: relative;
  z-index: 1;
  height: 690px;
}

.season-section__main img {
  object-position: 30% center;
}

.season-section__detail {
  position: absolute;
  z-index: 3;
  width: 230px;
  height: 280px;
  border: 8px solid var(--forest);
}

.season-section__detail--one {
  right: 25%;
  bottom: 38px;
}

.season-section__detail--one img {
  object-position: 61% center;
}

.season-section__detail--two {
  right: 32px;
  bottom: 92px;
  width: 280px;
  height: 190px;
}

.season-section__detail--two img {
  object-position: 69% center;
}

.season-section__line {
  position: absolute;
  right: 32px;
  bottom: 38px;
  left: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
}

.route-journal {
  padding: 128px 32px 96px;
  color: var(--white);
  background: var(--graphite);
}

.route-journal__heading {
  margin-bottom: 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.52fr);
  gap: 80px;
  align-items: end;
}

.route-journal__heading h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(58px, 6vw, 90px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.068em;
}

.route-journal__heading > p {
  max-width: 480px;
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.65;
}

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

.route-note {
  min-width: 0;
  display: flex;
  flex-direction: column;
  color: var(--graphite);
  background: #e4e2da;
}

.route-note__image {
  position: relative;
  aspect-ratio: 4 / 3;
  display: block;
  overflow: hidden;
  background: #252b28;
}

.route-note__image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(16, 19, 16, 0.58));
  content: "";
}

.route-note__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 500ms ease;
}

.route-note--rybachy .route-note__image img {
  object-position: 63% center;
}

.route-note--khibiny .route-note__image img {
  object-position: 58% center;
}

.route-note--lovozero .route-note__image img {
  object-position: 64% center;
}

.route-note:hover .route-note__image img {
  filter: saturate(1.08);
  transform: scale(1.025);
}

.route-note__image > span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.74);
  font-size: 8px;
}

.route-note__body {
  min-height: 390px;
  padding: 26px 26px 24px;
  display: flex;
  flex-direction: column;
}

.route-note__meta {
  margin: 0 0 32px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #777a75;
  font-size: 9px;
}

.route-note h3 {
  max-width: 390px;
  margin: 0 0 18px;
  font-size: clamp(28px, 2.4vw, 36px);
  font-weight: 620;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.route-note__body > p:not(.route-note__meta) {
  margin: 0;
  color: #5a5e58;
  font-size: 14px;
  line-height: 1.62;
}

.route-note dl {
  margin: 32px 0 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(16, 19, 16, 0.16);
  border-bottom: 1px solid rgba(16, 19, 16, 0.16);
}

.route-note dl div {
  min-width: 0;
  padding: 15px 10px 15px 0;
}

.route-note dl div + div {
  padding-left: 12px;
  border-left: 1px solid rgba(16, 19, 16, 0.16);
}

.route-note dt {
  margin-bottom: 8px;
  color: #888b85;
  font-family: var(--mono);
  font-size: 8px;
  line-height: 1.25;
  text-transform: uppercase;
}

.route-note dd {
  margin: 0;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.3;
}

.route-note__link {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 650;
}

.route-note__link span {
  color: var(--orange);
  font-size: 17px;
  transition: transform 180ms ease;
}

.route-note__link:hover span {
  transform: translate(2px, -2px);
}

.look-builder {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(300px, 0.38fr);
  gap: 12px;
}

.look-builder__image {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  background: #d5d8d6;
}

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

.look-hotspot,
.feature-hotspot {
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: 42px;
  height: 42px;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--white);
  background: rgba(16, 19, 16, 0.34);
  font-family: var(--mono);
  font-size: 10px;
  backdrop-filter: blur(8px);
  transform: translate(-50%, -50%);
  transition: color 180ms ease, background 180ms ease, transform 220ms var(--ease);
}

.look-hotspot::before,
.feature-hotspot::before {
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: inherit;
  content: "";
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 200ms ease, transform 300ms var(--ease);
}

.look-hotspot:hover,
.look-hotspot.is-active,
.feature-hotspot:hover,
.feature-hotspot.is-active {
  color: var(--white);
  background: var(--orange);
  transform: translate(-50%, -50%) scale(1.08);
}

.look-hotspot.is-active::before,
.feature-hotspot.is-active::before {
  opacity: 1;
  transform: scale(1);
  animation: hotspot-ring 1.8s ease-in-out infinite;
}

.look-product {
  min-height: 740px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  background: #e4e2da;
}

.look-product__count {
  margin: 0 0 18px;
  color: #777a75;
}

.look-product__thumb {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: auto;
}

.look-product h3 {
  margin: 0;
  font-size: 31px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.look-product > p:not(.look-product__count, .product-card__category) {
  margin: 16px 0 24px;
  color: #5e625d;
  font-size: 13px;
  line-height: 1.55;
}

.look-product__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.look-product__bottom strong {
  font-size: 15px;
}

.circle-link {
  min-height: 44px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--graphite);
  font-size: 10px;
  font-weight: 650;
  transition: color 180ms ease, background 180ms ease;
}

.circle-link:hover {
  color: var(--white);
  background: var(--graphite);
}

.technology-section {
  padding: 128px 32px;
  display: grid;
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1.2fr);
  gap: 96px;
  color: var(--white);
  background: var(--graphite);
}

.technology-section__intro h2 {
  margin: 0;
  font-size: clamp(56px, 5.5vw, 82px);
  font-weight: 600;
  line-height: 0.91;
  letter-spacing: -0.066em;
}

.technology-section__intro > p:not(.eyebrow) {
  max-width: 380px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 15px;
  line-height: 1.55;
}

.technology-section__material {
  position: relative;
  height: 290px;
  margin: 54px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.technology-section__material::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(10, 13, 10, 0.72));
  content: "";
}

.technology-section__material img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 61% center;
  transition: transform 800ms var(--ease);
}

.technology-section__material:hover img {
  transform: scale(1.035);
}

.technology-section__material figcaption {
  position: absolute;
  right: 17px;
  bottom: 15px;
  left: 17px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  line-height: 1.7;
}

.technology-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.technology-card {
  min-height: 320px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.technology-card > p {
  margin: 24px 0 11px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 9px;
}

.technology-card h3 {
  margin: 0 0 8px;
  font-size: 25px;
  letter-spacing: -0.05em;
}

.technology-card > span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}

.technology-diagram {
  position: relative;
  height: 160px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 7px);
}

.technology-diagram i {
  position: absolute;
  display: block;
}

.technology-diagram--shell i {
  right: 14%;
  left: 14%;
  height: 1px;
  background: rgba(255, 255, 255, 0.38);
}

.technology-diagram--shell i:nth-child(1) { top: 32%; }
.technology-diagram--shell i:nth-child(2) { top: 50%; background: var(--orange); }
.technology-diagram--shell i:nth-child(3) { top: 68%; }

.technology-diagram--warm i {
  top: 50%;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  transform: translateY(-50%);
}

.technology-diagram--warm i:nth-child(1) { left: 16%; }
.technology-diagram--warm i:nth-child(2) { left: calc(50% - 36px); border-color: var(--orange); }
.technology-diagram--warm i:nth-child(3) { right: 16%; }

.technology-diagram--dry i {
  top: 22%;
  width: 1px;
  height: 72%;
  background: linear-gradient(var(--orange), transparent);
}

.technology-diagram--dry i::after {
  position: absolute;
  top: -3px;
  left: -3px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.technology-diagram--dry i:nth-child(1) { left: 27%; }
.technology-diagram--dry i:nth-child(2) { left: 50%; height: 52%; }
.technology-diagram--dry i:nth-child(3) { left: 73%; height: 62%; }

.technology-diagram--light i {
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.technology-diagram--light i:nth-child(1) { width: 120px; height: 120px; }
.technology-diagram--light i:nth-child(2) { width: 78px; height: 78px; border-color: var(--orange); }
.technology-diagram--light i:nth-child(3) { width: 8px; height: 8px; background: var(--orange); }

.brand-section {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(380px, 0.55fr);
  gap: 76px;
  align-items: center;
}

.brand-section__image {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

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

.brand-section__stamp {
  position: absolute;
  bottom: 18px;
  left: 18px;
  padding: 11px 13px;
  color: var(--white);
  background: rgba(16, 19, 16, 0.72);
  backdrop-filter: blur(8px);
}

.brand-section__copy h2 {
  margin: 0;
  font-size: clamp(42px, 4vw, 61px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.brand-section__copy > p:not(.eyebrow) {
  margin: 32px 0 28px;
  color: #565a55;
  font-size: 15px;
  line-height: 1.62;
}

.newsletter {
  padding: 90px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 80px;
  align-items: end;
  border-top: 1px solid var(--line);
  background: #dfddd4;
}

.newsletter h2 {
  margin: 0;
  font-size: clamp(42px, 4.6vw, 68px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.newsletter-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
}

.newsletter-form input {
  width: 100%;
  height: 60px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--graphite);
  outline: 0;
  background: transparent;
  font-size: 20px;
}

.newsletter-form > button {
  height: 60px;
  padding: 0 18px;
  border-bottom: 1px solid var(--graphite);
  font-size: 10px;
  font-weight: 700;
  transition: color 180ms ease, background 180ms ease;
}

.newsletter-form > button:hover {
  color: var(--white);
  background: var(--orange);
}

.newsletter-form p {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  color: #737670;
  font-size: 10px;
  line-height: 1.4;
}

.newsletter-form output {
  grid-column: 1 / -1;
  margin-top: 8px;
  color: var(--forest);
  font-size: 12px;
}

.site-footer {
  padding: 72px 32px 24px;
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 48px;
  color: var(--white);
  background: var(--graphite);
}

.nord-logo--light {
  color: var(--white);
}

.site-footer__brand > p {
  margin: 34px 0 24px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.5;
}

.site-footer__brand > span {
  color: rgba(255, 255, 255, 0.35);
}

.site-footer h3 {
  margin: 3px 0 24px;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__nav,
.site-footer__social {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.site-footer__nav a,
.site-footer__social a {
  width: max-content;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.site-footer__nav a:hover,
.site-footer__social a:hover {
  color: var(--orange);
}

.site-footer__bottom {
  grid-column: 1 / -1;
  margin-top: 54px;
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
}

.site-footer__bottom a {
  justify-self: center;
}

.site-footer__bottom span:last-child {
  justify-self: end;
  font-size: 8px;
}

.page-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(16, 19, 16, 0.55);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(3px);
  transition: opacity 250ms ease;
}

.page-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.side-panel {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  width: min(510px, 100vw);
  height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--milk);
  box-shadow: -30px 0 60px rgba(16, 19, 16, 0.14);
  transform: translateX(105%);
  transition: transform 420ms var(--ease);
}

.side-panel.is-open {
  transform: translateX(0);
}

.delivery-panel {
  width: min(600px, 100vw);
}

.delivery-panel__body {
  min-height: 0;
  overflow-y: auto;
}

.delivery-panel__intro {
  min-height: 270px;
  padding: 34px 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
  background: var(--forest);
}

.delivery-panel__intro .mono {
  margin: 0 auto auto 0;
  color: rgba(255, 255, 255, 0.45);
}

.delivery-panel__intro h3 {
  margin: 0 0 18px;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.delivery-panel__intro > p:last-child {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.55;
}

.delivery-threshold {
  padding: 26px 34px 28px;
  border-bottom: 1px solid var(--line);
}

.delivery-threshold > div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
}

.delivery-threshold > div:first-child span {
  color: #72746f;
}

.delivery-threshold > div:first-child strong {
  font-size: 25px;
  letter-spacing: -0.04em;
}

.delivery-threshold__meter {
  height: 4px;
  margin: 18px 0 14px;
  overflow: hidden;
  background: rgba(16, 19, 16, 0.12);
}

.delivery-threshold__meter i {
  width: 0;
  height: 100%;
  display: block;
  background: var(--orange);
  transition: width 420ms var(--ease);
}

.delivery-threshold p {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.45;
}

.delivery-threshold > .mono {
  color: #82847f;
  font-size: 8px;
}

.delivery-panel.has-free-delivery .delivery-threshold__meter i {
  background: var(--forest);
}

.delivery-routes {
  padding: 30px 34px 10px;
}

.delivery-routes > .mono,
.delivery-sequence > .mono {
  margin-bottom: 14px;
  color: #898b86;
  font-size: 8px;
}

.delivery-routes dl {
  margin: 0;
}

.delivery-routes dl > div {
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 145px;
  gap: 20px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.delivery-routes dt {
  font-size: 13px;
  line-height: 1.35;
}

.delivery-routes dt span {
  margin-right: 12px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 8px;
}

.delivery-routes dd {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.delivery-routes dd strong {
  font-size: 17px;
  letter-spacing: -0.035em;
}

.delivery-routes dd small {
  color: #777a75;
  font-size: 9px;
  line-height: 1.35;
}

.delivery-policies {
  margin: 18px 34px 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.delivery-policies article {
  min-height: 205px;
  padding: 22px;
  display: flex;
  flex-direction: column;
}

.delivery-policies article + article {
  border-left: 1px solid var(--line);
}

.delivery-policies .mono {
  color: var(--orange);
  font-size: 8px;
}

.delivery-policies h3 {
  margin: auto 0 10px;
  font-size: 21px;
  line-height: 1;
  letter-spacing: -0.045em;
}

.delivery-policies p {
  margin: 0;
  color: #72746f;
  font-size: 10px;
  line-height: 1.45;
}

.delivery-sequence {
  padding: 38px 34px 8px;
}

.delivery-sequence ol {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  border-top: 1px solid var(--line);
}

.delivery-sequence li {
  min-height: 122px;
  padding: 15px 14px 15px 0;
  display: flex;
  flex-direction: column;
}

.delivery-sequence li + li {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.delivery-sequence li span {
  margin-bottom: auto;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 8px;
}

.delivery-sequence li strong {
  margin-bottom: 5px;
  font-size: 13px;
}

.delivery-sequence li small {
  color: #777a75;
  font-size: 8px;
  line-height: 1.35;
}

.delivery-panel__actions {
  padding: 24px 34px 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.delivery-panel__actions .button {
  min-height: 54px;
}

.delivery-panel__note {
  margin: 0;
  padding: 0 34px 30px;
  color: #979994;
  font-size: 7px;
  text-align: center;
}

.side-panel__head {
  min-height: 76px;
  padding: 0 22px 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.side-panel__head h2 {
  margin: 0;
  font-size: 25px;
  letter-spacing: -0.045em;
}

.side-panel__head sup {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
}

.panel-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 26px;
  font-weight: 300;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease, transform 220ms var(--ease);
}

.panel-close:hover {
  color: var(--white);
  background: var(--graphite);
  transform: rotate(5deg);
}

.mobile-menu {
  left: 0;
  right: auto;
  color: var(--white);
  background: var(--forest);
  transform: translateX(-105%);
}

.mobile-menu .side-panel__head {
  border-color: rgba(255, 255, 255, 0.18);
}

.mobile-menu .panel-close {
  border-color: rgba(255, 255, 255, 0.35);
}

.mobile-menu nav {
  padding: 26px;
  display: flex;
  flex-direction: column;
}

.mobile-menu nav a,
.mobile-menu nav button {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.045em;
  text-align: left;
}

.mobile-menu nav button small {
  margin-left: auto;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
}

.mobile-menu nav span {
  color: var(--orange);
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 400;
}

.mobile-menu__footer {
  margin-top: auto;
  padding: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-menu__footer p {
  max-width: 310px;
  margin: 0 0 24px;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.mobile-menu__footer > div {
  margin-bottom: 30px;
  display: flex;
  gap: 22px;
  font-size: 12px;
}

.mobile-menu__footer > span {
  color: rgba(255, 255, 255, 0.4);
}

.cart-drawer__body {
  min-height: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow-y: auto;
}

.cart-items {
  padding: 10px 26px;
}

.cart-item {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 104px 1fr auto;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.cart-item__thumb {
  width: 104px;
  aspect-ratio: 1;
}

.cart-item__info > p {
  margin: 0 0 6px;
  color: #777a75;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.cart-item__info h3 {
  margin: 0 0 8px;
  font-size: 15px;
  letter-spacing: -0.035em;
}

.cart-item__info > span {
  color: #666963;
  font-size: 11px;
}

.cart-item__side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.cart-item__side strong {
  font-size: 12px;
  white-space: nowrap;
}

.cart-item__side button {
  color: #777a75;
  font-size: 9px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quantity-control {
  width: 92px;
  height: 30px;
  margin-top: 15px;
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  border: 1px solid var(--line);
}

.quantity-control button,
.quantity-control b {
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 400;
}

.cart-summary {
  margin-top: auto;
  padding: 22px 26px 26px;
  border-top: 1px solid var(--line);
  background: #e7e5dd;
}

.cart-summary > div {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  color: #666963;
  font-size: 11px;
}

.cart-summary__total {
  margin: 20px 0 !important;
  padding-top: 18px;
  align-items: flex-end;
  border-top: 1px solid var(--line);
  color: var(--graphite) !important;
}

.cart-summary__total span {
  font-size: 15px;
}

.cart-summary__total strong {
  font-size: 22px;
  letter-spacing: -0.04em;
}

.cart-summary .button {
  width: 100%;
}

.cart-summary > p {
  margin: 13px 0 0;
  color: #898b86;
  font-size: 8px;
  text-align: center;
}

.empty-cart {
  margin: auto;
  padding: 40px;
  text-align: center;
}

.empty-cart > span {
  width: 70px;
  height: 70px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--orange);
  font-size: 30px;
}

.empty-cart h3 {
  margin: 0 0 12px;
  font-size: 30px;
  letter-spacing: -0.05em;
}

.empty-cart p {
  max-width: 280px;
  margin: 0 auto 26px;
  color: #6b6f69;
  font-size: 13px;
  line-height: 1.5;
}

.favorites-drawer__body {
  min-height: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  overflow-y: auto;
}

.favorite-items {
  padding: 8px 26px 20px;
}

.favorite-item {
  position: relative;
  padding: 16px 36px 16px 0;
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.favorite-item__thumb {
  width: 108px;
  aspect-ratio: 1;
}

.favorite-item > div {
  align-self: center;
}

.favorite-item p {
  margin: 0 0 7px;
  color: #777a75;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.favorite-item h3 {
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: -0.035em;
}

.favorite-item strong,
.favorite-item > div > span {
  display: block;
}

.favorite-item strong {
  margin-bottom: 7px;
  font-size: 12px;
}

.favorite-item > div > span {
  color: #777a75;
  font-size: 9px;
}

.favorite-item > button {
  position: absolute;
  top: 16px;
  right: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 18px;
}

.favorites-drawer__catalog {
  width: calc(100% - 52px);
  min-height: 54px;
  margin: auto 26px 26px;
}

.search-panel {
  width: min(680px, 100vw);
  padding-bottom: 40px;
  overflow-y: auto;
}

.search-field {
  height: 82px;
  margin: 20px 26px 8px;
  display: grid;
  grid-template-columns: 1fr 38px 44px;
  border-bottom: 1px solid var(--graphite);
}

.search-field input {
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.search-field i {
  display: grid;
  place-items: center;
  font-size: 28px;
  font-style: normal;
}

.search-field button {
  align-self: center;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #777a75;
  font-size: 18px;
}

.search-field button[hidden] {
  display: none;
}

.search-suggestions,
.search-results {
  padding: 28px 26px 0;
}

.search-suggestions > p,
.search-results > p:first-child {
  color: #888a85;
  font-size: 8px;
}

.search-suggestions a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.search-results > a {
  padding: 10px 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  border-bottom: 1px solid var(--line);
}

.search-results .sheet-photo {
  width: 80px;
  aspect-ratio: 1;
}

.search-results a > span:last-child {
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 6px 15px;
}

.search-results small {
  grid-column: 1 / -1;
  color: #787b76;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.search-results b,
.search-results strong {
  font-size: 12px;
}

.search-empty {
  padding: 56px 20px;
  text-align: center;
}

.search-empty > span {
  width: 60px;
  height: 60px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--orange);
  font-size: 25px;
}

.search-empty h3 {
  margin: 0 0 9px;
  font-size: 25px;
  letter-spacing: -0.045em;
}

.search-empty p {
  margin: 0;
  color: #737670;
  font-size: 12px;
}

.toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 140;
  max-width: min(390px, calc(100vw - 32px));
  padding: 14px 18px;
  border-left: 3px solid var(--orange);
  color: var(--white);
  background: var(--graphite);
  box-shadow: 0 14px 38px rgba(16, 19, 16, 0.22);
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 280ms var(--ease);
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

dialog {
  color: var(--graphite);
}

dialog::backdrop {
  background: rgba(16, 19, 16, 0.62);
  backdrop-filter: blur(4px);
}

.demo-modal {
  width: min(550px, calc(100vw - 32px));
  padding: 52px;
  border: 0;
  background: var(--milk);
}

.demo-modal .panel-close,
.size-guide .panel-close,
.gallery-lightbox .panel-close {
  position: absolute;
  top: 16px;
  right: 16px;
}

.demo-modal__mark {
  width: 72px;
  height: 72px;
  margin-bottom: 38px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  font-size: 34px;
  font-weight: 800;
}

.demo-modal h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.demo-modal > p:not(.eyebrow) {
  margin: 22px 0 28px;
  color: #666963;
  font-size: 14px;
  line-height: 1.55;
}

/* Catalog */
.breadcrumbs {
  padding: 24px 32px 0;
  display: flex;
  gap: 10px;
  color: #777a75;
  font-size: 10px;
}

.breadcrumbs a:hover {
  color: var(--orange);
}

.catalog-intro {
  min-height: 530px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background: #e3e1d8;
}

.catalog-intro__copy {
  min-width: 0;
  padding: 72px 0 54px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.catalog-intro h1 {
  max-width: 100%;
  margin: 42px 0 34px;
  font-size: clamp(68px, 7vw, 112px);
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: -0.075em;
}

.catalog-intro__copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 0;
  color: #5c605a;
  font-size: 17px;
  line-height: 1.6;
}

.catalog-intro__facts {
  width: min(560px, 100%);
  margin: 34px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(16, 19, 16, 0.16);
  border-bottom: 1px solid rgba(16, 19, 16, 0.16);
}

.catalog-intro__facts div {
  min-width: 0;
  padding: 15px 12px 15px 0;
}

.catalog-intro__facts div + div {
  padding-left: 15px;
  border-left: 1px solid rgba(16, 19, 16, 0.16);
}

.catalog-intro__facts dt {
  margin-bottom: 8px;
  color: #7a7e78;
  font-family: var(--mono);
  font-size: 9px;
  line-height: 1.25;
  text-transform: uppercase;
}

.catalog-intro__facts dd {
  margin: 0;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.3;
}

.catalog-intro__meta {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  gap: 26px;
  color: #777a75;
  font-size: 11px;
}

.catalog-intro__meta b {
  color: var(--graphite);
}

.catalog-intro .eyebrow b {
  font-weight: 400;
}

.catalog-intro__visual {
  position: relative;
  min-width: 0;
  min-height: 530px;
  margin: 0 -32px 0 0;
  overflow: hidden;
  background: #d4d3cc;
}

.catalog-intro__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(16, 19, 16, 0.34));
  content: "";
}

.catalog-intro__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 240ms ease;
}

body[data-catalog-context="new"] .catalog-intro__visual img { object-position: 58% center; }
body[data-catalog-context="clothing"] .catalog-intro__visual img { object-position: 68% center; }
body[data-catalog-context="shoes"] .catalog-intro__visual img { object-position: 66% center; }
body[data-catalog-context="gear"] .catalog-intro__visual img { object-position: 70% center; }
body[data-catalog-context="backpacks"] .catalog-intro__visual img { object-position: 38% center; }

.catalog-intro__visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 9px;
}

.category-tabs {
  min-height: 82px;
  padding: 0;
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  overflow-x: auto;
  scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar {
  display: none;
}

.category-tabs button {
  position: relative;
  min-width: 0;
  padding: 0 12px;
  flex: 1 1 0;
  border-right: 1px solid var(--line);
  font-size: 14px;
  font-weight: 580;
  white-space: nowrap;
}

.category-tabs button:last-child {
  border-right: 0;
}

.category-tabs button::after {
  position: absolute;
  right: 20px;
  bottom: -1px;
  left: 20px;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transition: transform 200ms var(--ease);
}

.category-tabs button.is-active::after {
  transform: scaleX(1);
}

.category-tabs sup {
  margin-left: 5px;
  color: #888b85;
  font-family: var(--mono);
  font-size: 10px;
}

.catalog-toolbar {
  min-height: 82px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 270px 1fr auto;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.catalog-toolbar__result {
  margin: 0;
  color: #777a75;
  font-size: 13px;
}

.catalog-toolbar__result b {
  color: var(--graphite);
}

.sort-control {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
}

.sort-control span {
  color: #777a75;
}

.sort-control select {
  min-width: 182px;
  padding: 9px 26px 9px 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 13px;
}

.filter-mobile-button {
  display: none;
}

.active-filters {
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  background: #e8e6df;
}

.active-filters[hidden] {
  display: none;
}

.active-filters > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.active-filters [data-remove-filter] {
  min-height: 34px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  background: var(--milk);
  font-size: 11px;
}

.active-filters [data-remove-filter] span {
  font-size: 14px;
}

.active-filters > button {
  color: #656862;
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.catalog-layout {
  padding: 28px 32px 120px;
  display: grid;
  grid-template-columns: 270px minmax(0, 1fr);
  gap: 24px;
}

.filter-panel {
  position: relative;
}

.filter-panel__head {
  min-height: 44px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--graphite);
}

.filter-panel__head h2 {
  margin: 0;
  font-size: 20px;
}

.filter-panel__head button {
  color: #777a75;
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.filter-group {
  border-bottom: 1px solid var(--line);
}

.filter-group[hidden],
.filter-group label[hidden] {
  display: none;
}

.filter-group summary {
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

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

.filter-group summary span {
  font-size: 14px;
  font-weight: 400;
}

.filter-group > div {
  padding: 0 0 20px;
  display: grid;
  gap: 13px;
}

.filter-group label {
  min-height: 24px;
  display: grid;
  grid-template-columns: 16px 1fr auto;
  gap: 9px;
  align-items: center;
  color: #4f534e;
  font-size: 13px;
  cursor: pointer;
}

.filter-group input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--orange);
}

.filter-group small {
  color: #999b96;
  font-family: var(--mono);
  font-size: 10px;
}

.size-filter {
  grid-template-columns: repeat(auto-fit, minmax(42px, 1fr));
  gap: 5px !important;
}

.size-filter label {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
}

.size-filter input {
  position: absolute;
  opacity: 0;
}

.size-filter label:has(input:checked) {
  border-color: var(--graphite);
  color: var(--white);
  background: var(--graphite);
}

.color-filter label {
  grid-template-columns: 16px 14px 1fr auto;
}

.color-filter .swatch {
  width: 12px;
  height: 12px;
}

.catalog-editorial-card {
  position: relative;
  min-height: 600px;
  margin-bottom: 68px;
  overflow: hidden;
  color: var(--white);
  background: var(--forest);
}

.catalog-editorial-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12, 16, 13, 0.8) 0%, rgba(12, 16, 13, 0.18) 62%, rgba(12, 16, 13, 0.06));
  content: "";
}

.catalog-editorial-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% center;
  transition: transform 900ms var(--ease);
}

.catalog-editorial-card:hover > img {
  transform: scale(1.025);
}

.catalog-editorial-card > div {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: min(64%, 650px);
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.catalog-editorial-card > div > p.mono {
  margin: 0 auto auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
}

.catalog-editorial-card h2 {
  margin: 0 0 22px;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 600;
  line-height: 0.91;
  letter-spacing: -0.064em;
}

.catalog-editorial-card__copy {
  max-width: 560px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.58;
}

.catalog-editorial-card a {
  width: fit-content;
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.catalog-editorial-card a span {
  margin-left: 16px;
}

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

.catalog-filler-card {
  min-width: 0;
  min-height: 100%;
}

.catalog-filler-card--guide {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
  color: var(--white);
  background: var(--forest);
}

.catalog-filler-card--guide > p,
.catalog-filler-card--guide > span {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 9px;
}

.catalog-filler-card--guide h3 {
  margin: 0 0 18px;
  font-size: clamp(32px, 3.1vw, 48px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.catalog-filler-card--guide div > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.55;
}

.catalog-filler-card--visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  color: var(--white);
  background: #252a26;
}

.catalog-filler-card--visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 19, 16, 0.72), transparent 68%);
  content: "";
}

.catalog-filler-card--visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.catalog-filler-card--visual:hover img {
  transform: scale(1.03);
}

.catalog-filler-card--visual > div {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 1;
}

.catalog-filler-card--visual p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
}

.catalog-filler-card--visual h3 {
  margin: 0;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
}

.empty-results {
  min-height: 540px;
  padding: 70px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid var(--line);
  text-align: center;
}

.empty-results[hidden] {
  display: none;
}

.empty-results__mark {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--orange);
  font-size: 36px;
}

.empty-results h2 {
  max-width: 600px;
  margin: 30px 0 14px;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.055em;
}

.empty-results p {
  margin: 0 0 25px;
  color: #6b6e68;
  font-size: 13px;
}

.catalog-route-banner {
  position: relative;
  min-height: 570px;
  margin: 0 32px 120px;
  overflow: hidden;
  color: var(--white);
}

.catalog-route-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.catalog-route-banner::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 19, 16, 0.72), rgba(16, 19, 16, 0.08));
  content: "";
}

.catalog-route-banner > div {
  position: relative;
  z-index: 1;
  padding: 64px;
}

.catalog-route-banner > div > p.mono {
  margin: 0 0 40px;
  color: rgba(255, 255, 255, 0.56);
}

.catalog-route-banner h2 {
  max-width: 900px;
  margin: 0 0 36px;
  font-size: clamp(52px, 5.6vw, 82px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.064em;
}

.catalog-route-banner__copy {
  max-width: 620px;
  margin: -12px 0 32px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.6;
}

.mobile-filter-drawer__body {
  min-height: 0;
  padding: 0 26px;
  flex: 1;
  overflow-y: auto;
}

.mobile-filter-drawer__footer {
  min-height: 82px;
  padding: 12px 18px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 8px;
  border-top: 1px solid var(--line);
  background: var(--milk);
}

.mobile-filter-drawer__footer > button:first-child {
  border: 1px solid var(--line);
  font-size: 11px;
}

/* Product */
.mobile-buy-dock {
  display: none;
}

.product-overview {
  padding: 30px 32px 90px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(420px, 0.8fr);
  gap: clamp(50px, 6vw, 100px);
  align-items: start;
}

.product-gallery__stage {
  position: relative;
  aspect-ratio: 1 / 1;
  background-color: #e6e3da;
}

.gallery-shot {
  background-image: url("./assets/nord-shell-gallery-1-v3.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

[data-shot="1"], [data-gallery-thumb="1"] { background-image: url("./assets/nord-shell-gallery-1-v3.jpg"); }
[data-shot="2"], [data-gallery-thumb="2"] { background-image: url("./assets/nord-shell-gallery-2-v3.jpg"); }
[data-shot="3"], [data-gallery-thumb="3"] { background-image: url("./assets/nord-shell-gallery-3-v3.jpg"); }
[data-shot="4"], [data-gallery-thumb="4"] { background-image: url("./assets/nord-shell-gallery-4-v3.jpg"); }
[data-shot="5"], [data-gallery-thumb="5"] { background-image: url("./assets/nord-shell-gallery-5-v3.jpg"); }
[data-shot="6"], [data-gallery-thumb="6"] { background-image: url("./assets/nord-shell-gallery-6-v3.jpg"); }

.product-gallery__index {
  position: absolute;
  bottom: 14px;
  left: 14px;
  padding: 8px 10px;
  background: rgba(242, 240, 233, 0.9);
}

.product-gallery__zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(242, 240, 233, 0.9);
  font-size: 18px;
}

.product-gallery__thumbs {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.product-gallery__thumbs button {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid transparent;
  opacity: 0.64;
  transition: opacity 180ms ease, border-color 180ms ease;
}

.product-gallery__thumbs button.is-active {
  border-color: var(--graphite);
  opacity: 1;
}

.product-buy {
  position: sticky;
  top: 98px;
  padding-top: 4px;
}

.product-buy__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-buy__top > p {
  margin: 0;
  color: #757873;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-buy h1 {
  margin: 26px 0 24px;
  font-size: clamp(66px, 6.4vw, 94px);
  font-weight: 650;
  line-height: 0.79;
  letter-spacing: -0.08em;
}

.product-buy__identity {
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-buy__identity span {
  color: #797c77;
  font-size: 8px;
}

.product-buy__identity strong {
  font-size: 22px;
  letter-spacing: -0.04em;
}

.product-buy__intro {
  max-width: 520px;
  margin: 22px 0 28px;
  color: #555954;
  font-size: 14px;
  line-height: 1.55;
}

.product-option {
  margin-top: 26px;
}

.product-option legend,
.size-option__legend {
  margin-bottom: 13px;
  font-size: 11px;
}

.product-option legend b {
  font-weight: 400;
}

.color-option > div {
  display: flex;
  gap: 9px;
}

.color-choice {
  width: 40px;
  height: 40px;
  position: relative;
  border: 6px solid var(--milk);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}

.color-choice.is-active {
  box-shadow: 0 0 0 1px var(--graphite);
}

.color-choice--forest { background: var(--forest); }
.color-choice--graphite { background: #2b2e2d; }
.color-choice--orange { background: #bd542f; }
.color-choice--stone { background: #b8b8b1; }
.color-choice--milk { background: #eeeae0; }

.size-option__legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.size-option__legend legend {
  margin: 0;
}

.size-option__legend button {
  font-size: 9px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.size-choices {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
}

.size-choices button {
  min-height: 46px;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 9px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.size-choices button:hover:not(:disabled),
.size-choices button.is-active {
  border-color: var(--graphite);
  color: var(--white);
  background: var(--graphite);
}

.size-choices button:disabled {
  position: relative;
  color: #aaa;
  cursor: not-allowed;
}

.size-choices button:disabled::after {
  position: absolute;
  top: 50%;
  left: 16%;
  width: 68%;
  height: 1px;
  background: #aaa;
  content: "";
  transform: rotate(-34deg);
}

.size-error {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--orange);
  font-size: 10px;
  opacity: 0;
  transition: max-height 200ms ease, margin 200ms ease, opacity 200ms ease;
}

.size-option.has-error .size-choices {
  outline: 1px solid var(--orange);
  outline-offset: 4px;
  animation: field-shake 350ms ease;
}

.size-option.has-error .size-error {
  max-height: 30px;
  margin-top: 10px;
  opacity: 1;
}

.availability {
  margin: 22px 0;
  display: flex;
  align-items: center;
  gap: 11px;
}

.availability > span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #50785f;
  box-shadow: 0 0 0 5px rgba(80, 120, 95, 0.12);
}

.availability strong,
.availability small {
  display: block;
}

.availability strong {
  margin-bottom: 3px;
  font-size: 10px;
}

.availability small {
  color: #797c77;
  font-size: 9px;
}

.product-buy__actions {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 7px;
}

.product-buy__actions .button {
  width: 100%;
}

.delivery-note {
  margin: 13px 0 25px;
  color: #777a75;
  font-size: 7px;
  text-align: center;
}

.quick-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.quick-specs div {
  padding: 13px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-specs dt {
  margin-bottom: 6px;
  color: #7e817c;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.quick-specs dd {
  margin: 0;
  font-size: 11px;
}

.product-anchor-nav {
  min-height: 64px;
  padding: 0 32px;
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-anchor-nav a {
  padding: 0 30px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
  font-size: 8px;
}

.product-anchor-nav a:first-child {
  padding-left: 0;
}

.product-anchor-nav a:hover {
  color: var(--orange);
}

.is-dynamic-product .product-buy h1 {
  font-size: clamp(58px, 5.35vw, 82px);
}

.is-dynamic-product .product-gallery .gallery-shot,
.is-dynamic-product [data-lightbox-shot] {
  background-color: #ebe8df;
  background-image: var(--product-main-image);
  background-position: center;
  background-size: contain;
}

.is-dynamic-product .product-gallery .gallery-shot[data-shot="2"],
.is-dynamic-product .product-gallery .gallery-shot[data-gallery-thumb="2"],
.is-dynamic-product [data-lightbox-shot][data-shot="2"] {
  background-image: var(--product-detail-image);
  background-position: center;
  background-size: cover;
}

.is-dynamic-product .product-gallery .gallery-shot[data-shot="3"],
.is-dynamic-product .product-gallery .gallery-shot[data-gallery-thumb="3"],
.is-dynamic-product [data-lightbox-shot][data-shot="3"] {
  background-image: var(--product-context-image);
  background-position: var(--product-context-position, center);
  background-size: cover;
}

[data-product-id="warm"] {
  --product-context-image: url("./assets/nord-aw26-woman.jpg");
  --product-context-position: 36% center;
}

[data-product-id="trail"] {
  --product-context-image: url("./assets/nord-apparel-route.jpg");
  --product-context-position: 54% center;
}

[data-product-id="pack35"] {
  --product-context-image: url("./assets/nord-scenario-weekend-v2.jpg");
  --product-context-position: center 52%;
}

[data-product-id="ridge-boot"] {
  --product-context-image: url("./assets/nord-boots-trail.jpg");
  --product-context-position: 58% center;
}

[data-product-id="puff"] {
  --product-context-image: url("./assets/nord-scenario-cold-v2.jpg");
  --product-context-position: center 48%;
}

[data-product-id="base"] {
  --product-context-image: url("./assets/nord-field-test.jpg");
  --product-context-position: 62% center;
}

[data-product-id="air"],
[data-product-id="wind"] {
  --product-context-image: url("./assets/nord-scenario-light-v2.jpg");
  --product-context-position: center 42%;
}

[data-product-id="storm"],
[data-product-id="rain"] {
  --product-context-image: url("./assets/nord-scenario-rain-v2.jpg");
  --product-context-position: center 44%;
}

[data-product-id="core"],
[data-product-id="ridge"],
[data-product-id="camp"] {
  --product-context-image: url("./assets/nord-scenario-cold-v2.jpg");
  --product-context-position: center 48%;
}

.is-dynamic-product .product-gallery__thumbs {
  grid-template-columns: repeat(3, 1fr);
}

.is-dynamic-product .product-gallery__thumbs [data-gallery-thumb][hidden] {
  display: none;
}

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

.dynamic-product-story {
  margin: 0 32px;
  padding: 72px;
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(50px, 7vw, 110px);
  align-items: center;
  background: #e5e3da;
}

.dynamic-product-story__copy h2 {
  max-width: 700px;
  margin: 0 0 30px;
  font-size: clamp(54px, 5.4vw, 82px);
  font-weight: 600;
  line-height: 0.91;
  letter-spacing: -0.065em;
}

.dynamic-product-story__copy > p:not(.eyebrow) {
  max-width: 510px;
  margin: 0;
  color: #555954;
  font-size: 15px;
  line-height: 1.65;
}

.dynamic-product-story__facts {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(16, 19, 16, 0.18);
  border-left: 1px solid rgba(16, 19, 16, 0.18);
}

.dynamic-product-story__facts div {
  min-height: 92px;
  padding: 18px;
  border-right: 1px solid rgba(16, 19, 16, 0.18);
  border-bottom: 1px solid rgba(16, 19, 16, 0.18);
}

.dynamic-product-story__facts dt {
  margin-bottom: 12px;
  color: #7d807a;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.dynamic-product-story__facts dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}

.dynamic-product-story__visual {
  position: relative;
  min-height: 660px;
  margin: 0;
  overflow: hidden;
  background: #d9d7ce;
}

.dynamic-product-story__visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dynamic-product-story__visual figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 11px 13px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--white);
  background: rgba(16, 19, 16, 0.66);
  backdrop-filter: blur(10px);
  font-size: 9px;
}

.is-dynamic-product .related-section {
  padding-top: 80px;
}

.product-description {
  display: grid;
  grid-template-columns: 1fr 0.8fr 0.62fr;
  gap: 80px;
  align-items: start;
}

.product-description h2 {
  margin: 0;
  font-size: clamp(54px, 5.3vw, 78px);
  font-weight: 600;
  line-height: 0.91;
  letter-spacing: -0.065em;
}

.product-description__copy {
  padding-top: 42px;
}

.product-description__copy p {
  margin: 0 0 24px;
  color: #555954;
  font-size: 15px;
  line-height: 1.65;
}

.material-stack {
  border-top: 1px solid var(--graphite);
}

.material-stack div {
  min-height: 110px;
  padding: 14px 0;
  display: grid;
  grid-template-columns: 35px 1fr;
  align-content: center;
  border-bottom: 1px solid var(--line);
}

.material-stack span {
  grid-row: 1 / 3;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 8px;
}

.material-stack b {
  font-family: var(--mono);
  font-size: 10px;
}

.material-stack small {
  margin-top: 8px;
  color: #777a75;
  font-size: 9px;
}

.feature-section {
  min-height: 820px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  color: var(--white);
  background: var(--forest);
}

.feature-section__visual {
  position: relative;
  min-width: 0;
  background: #e6e3da;
}

.feature-jacket {
  position: absolute;
  inset: 0;
}

.feature-section__coordinate {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 4;
  padding: 9px 11px;
  color: var(--graphite);
  background: rgba(242, 240, 233, 0.88);
  font-size: 8px;
}

.feature-hotspot {
  border-color: rgba(16, 19, 16, 0.48);
  color: var(--graphite);
  background: rgba(242, 240, 233, 0.82);
}

.feature-hotspot::before {
  border-color: rgba(16, 19, 16, 0.34);
}

.feature-section__copy {
  padding: 90px 52px;
  display: flex;
  flex-direction: column;
}

.feature-section__number {
  margin: auto 0 30px;
  color: rgba(255, 255, 255, 0.45);
}

.feature-section__copy h2 {
  margin: 0;
  font-size: clamp(45px, 4.2vw, 62px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.feature-section__copy > p:not(.eyebrow, .feature-section__number, .mono) {
  margin: 26px 0 38px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.6;
}

.feature-progress {
  height: 1px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.2);
}

.feature-progress i {
  width: 20%;
  height: 100%;
  display: block;
  background: var(--orange);
  transition: width 320ms var(--ease);
}

.feature-section__copy > .mono:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
}

.specs-section {
  background: #e4e2da;
}

.spec-table {
  border-top: 1px solid var(--graphite);
}

.spec-table > div {
  min-height: 70px;
  display: grid;
  grid-template-columns: 1fr 1.4fr 40px;
  gap: 30px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.spec-table span {
  color: #60645e;
  font-size: 12px;
}

.spec-table strong {
  font-size: 13px;
  font-weight: 500;
}

.spec-table em {
  justify-self: end;
  color: #92948f;
  font-family: var(--mono);
  font-size: 8px;
  font-style: normal;
}

.care-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  color: var(--white);
  background: var(--graphite);
}

.care-section__image {
  min-height: 760px;
  margin: 0;
  overflow: hidden;
}

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

.care-section__content {
  padding: 100px 60px;
}

.care-section h2 {
  margin: 0 0 60px;
  font-size: clamp(52px, 5.2vw, 76px);
  font-weight: 600;
  line-height: 0.91;
  letter-spacing: -0.065em;
}

.care-section details {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.care-section details:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.care-section summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  list-style: none;
  cursor: pointer;
}

.care-section summary::-webkit-details-marker {
  display: none;
}

.care-section summary span {
  color: var(--orange);
}

.care-section details p {
  max-width: 520px;
  margin: -2px 0 24px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.6;
}

.related-section {
  padding-bottom: 150px;
}

.size-guide {
  width: min(780px, calc(100vw - 32px));
  padding: 54px;
  border: 0;
  background: var(--milk);
}

.size-guide h2 {
  margin: 0 0 30px;
  font-size: 44px;
  letter-spacing: -0.055em;
}

.size-guide table {
  width: 100%;
  border-collapse: collapse;
}

.size-guide th,
.size-guide td {
  padding: 14px 8px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  text-align: left;
}

.size-guide thead th {
  color: #747772;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 400;
  text-transform: uppercase;
}

.size-guide > p:last-child {
  margin: 24px 0 0;
  color: #6e716c;
  font-size: 12px;
  line-height: 1.5;
}

.gallery-lightbox {
  width: min(92vw, 980px);
  height: min(92vh, 980px);
  padding: 0;
  border: 0;
  overflow: hidden;
  background: #e6e3da;
}

.gallery-lightbox [data-lightbox-shot] {
  width: 100%;
  height: 100%;
}

.gallery-lightbox .panel-close {
  z-index: 2;
  background: rgba(242, 240, 233, 0.9);
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease, transform 800ms var(--ease);
}

@keyframes hero-settle {
  from { opacity: 0; transform: scale(1.04); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes scroll-hint {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

@keyframes hotspot-ring {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes field-shake {
  0%, 100% { transform: translateX(0); }
  30% { transform: translateX(-4px); }
  70% { transform: translateX(4px); }
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 150px 1fr 270px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .header-actions {
    gap: 14px;
  }

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

  .category-card {
    min-height: 560px;
  }

  .technology-section {
    gap: 50px;
  }

  .product-overview {
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 50px;
  }

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

  .product-description {
    gap: 45px;
  }
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto 1fr;
    padding: 0 18px;
  }

  .menu-button {
    display: grid;
    justify-self: start;
  }

  .site-header > .nord-logo {
    justify-self: center;
  }

  .desktop-nav,
  .header-favorite,
  .header-actions [data-open-search] span,
  .header-actions [data-open-cart] span {
    display: none;
  }

  .header-actions {
    justify-self: end;
  }

  .section {
    padding: 96px 22px;
  }

  .route-hero__copy,
  .route-hero__scroll {
    left: 22px;
  }

  .route-hero__top,
  .route-hero__data {
    right: 22px;
    left: 22px;
  }

  .product-grid--four {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 12px;
  }

  .season-section {
    min-height: auto;
    padding: 90px 22px 170px;
    grid-template-columns: 1fr;
  }

  .season-section__main {
    height: 680px;
  }

  .season-section__detail--one {
    right: 34%;
  }

  .season-section__detail--two {
    right: 22px;
  }

  .route-journal {
    padding: 96px 22px 86px;
  }

  .route-journal__heading {
    margin-bottom: 54px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .route-journal__heading > p {
    max-width: 580px;
  }

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

  .route-note--lovozero {
    grid-column: 1 / -1;
  }

  .route-note--lovozero .route-note__image {
    aspect-ratio: 16 / 7;
  }

  .route-note--lovozero .route-note__body {
    min-height: 330px;
  }

  .look-builder {
    grid-template-columns: 1fr;
  }

  .look-product {
    min-height: auto;
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 0 22px;
  }

  .look-product__count {
    grid-column: 1 / -1;
  }

  .look-product__thumb {
    grid-row: 2 / 7;
    margin: 0;
  }

  .look-product__bottom {
    grid-column: 2;
  }

  .technology-section {
    padding: 96px 22px;
    grid-template-columns: 1fr;
  }

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

  .newsletter {
    padding: 80px 22px;
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 2fr repeat(2, 1fr);
  }

  .site-footer__social {
    grid-column: 2;
  }

  .catalog-intro {
    min-height: 470px;
    padding: 0 22px;
    grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
    gap: 28px;
  }

  .catalog-intro__copy {
    padding: 56px 0 44px;
  }

  .catalog-intro h1 {
    margin: 34px 0 28px;
    font-size: clamp(64px, 9vw, 88px);
  }

  .catalog-intro__copy > p:not(.eyebrow) {
    font-size: 15px;
  }

  .catalog-intro__facts {
    margin-top: 28px;
  }

  .catalog-intro__facts div {
    padding-top: 13px;
    padding-bottom: 13px;
  }

  .catalog-intro__visual {
    min-height: 470px;
    margin-right: -22px;
  }

  .category-tabs {
    padding: 10px 22px;
    flex-wrap: wrap;
    gap: 8px;
    overflow: visible;
  }

  .category-tabs button {
    min-height: 44px;
    padding: 0 14px;
    flex: 1 1 132px;
    border: 1px solid var(--line);
    font-size: 12px;
  }

  .category-tabs button.is-active {
    color: var(--white);
    background: var(--graphite);
  }

  .category-tabs button::after {
    display: none;
  }

  .catalog-layout,
  .catalog-toolbar {
    grid-template-columns: 220px 1fr;
  }

  .catalog-toolbar .sort-control {
    grid-column: 2;
  }

  .catalog-toolbar__result {
    display: none;
  }

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

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

  .product-buy {
    position: static;
  }

  .dynamic-product-story {
    padding: 60px 44px 44px;
    grid-template-columns: 1fr;
  }

  .dynamic-product-story__visual {
    min-height: 680px;
  }

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

  .material-stack {
    grid-column: 2;
  }

  .feature-section {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .feature-section__visual {
    min-height: 720px;
  }

  .feature-section__copy {
    min-height: 520px;
  }

  .care-section {
    grid-template-columns: 1fr;
  }

  .care-section__image {
    min-height: 650px;
  }
}

@media (max-width: 700px) {
  body {
    padding-top: 62px;
  }

  .page-overlay {
    z-index: 1100;
  }

  .side-panel {
    z-index: 1200;
  }

  .announcement {
    display: none;
  }

  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    height: 62px;
    padding: 0 12px;
    background: var(--milk);
    backdrop-filter: none;
    transform: none;
  }

  .site-header.is-hidden {
    transform: none;
  }

  .delivery-panel__intro {
    min-height: 235px;
    padding: 26px 18px 24px;
  }

  .delivery-panel__intro h3 {
    font-size: 44px;
  }

  .delivery-threshold,
  .delivery-routes,
  .delivery-sequence {
    padding-right: 18px;
    padding-left: 18px;
  }

  .delivery-routes dl > div {
    grid-template-columns: minmax(0, 1fr) 118px;
  }

  .delivery-policies {
    margin-right: 18px;
    margin-left: 18px;
    grid-template-columns: 1fr;
  }

  .delivery-policies article {
    min-height: 180px;
  }

  .delivery-policies article + article {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .delivery-panel__actions {
    padding-right: 18px;
    padding-left: 18px;
    grid-template-columns: 1fr;
  }

  .delivery-panel__note {
    padding-right: 18px;
    padding-left: 18px;
  }

  .nord-logo {
    font-size: 23px;
  }

  .header-actions {
    gap: 4px;
  }

  .header-actions button {
    width: 38px;
    justify-content: center;
  }

  .header-actions .header-favorite {
    display: none;
  }

  .header-actions .cart-count {
    width: 23px;
    height: 23px;
  }

  .section {
    padding: 80px 16px;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 8px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: 43px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading--split > p {
    margin: 0;
    font-size: 13px;
  }

  .section-heading--with-action {
    align-items: flex-end;
  }

  .section-heading--with-action .text-link {
    min-height: 34px;
    font-size: 9px;
  }

  .route-hero {
    min-height: 730px;
  }

  .route-hero > img {
    object-position: 64% center;
  }

  .route-hero__shade {
    background: linear-gradient(0deg, rgba(8, 11, 9, 0.9) 0%, rgba(8, 11, 9, 0.25) 62%, rgba(8, 11, 9, 0.1) 100%);
  }

  .route-hero__top {
    top: 16px;
    right: 16px;
    left: 16px;
  }

  .route-hero__top span:nth-child(2) {
    display: none;
  }

  .route-hero__copy {
    top: auto;
    right: 16px;
    bottom: 154px;
    left: 16px;
    width: auto;
    transform: none;
  }

  .route-hero__copy h1 {
    font-size: clamp(46px, 13vw, 55px);
    line-height: 0.91;
  }

  .route-hero__lead {
    max-width: 330px;
    margin-top: 20px;
    font-size: 13px;
  }

  .button-row {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button {
    min-height: 48px;
    padding: 0 14px;
    gap: 10px;
    font-size: 9px;
  }

  .route-hero__data {
    right: 16px;
    bottom: 22px;
    left: 16px;
    grid-template-columns: repeat(2, 1fr);
  }

  .route-hero__data div {
    min-height: 45px;
    padding-top: 9px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .route-hero__data div:nth-child(2) {
    border-right: 0;
  }

  .route-hero__data div:nth-child(3),
  .route-hero__data div:nth-child(4) {
    border-bottom: 0;
  }

  .route-hero__scroll {
    display: none;
  }

  .category-section {
    padding-bottom: 90px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .category-card {
    min-height: 250px;
  }

  .category-card:first-child,
  .category-card:last-child {
    min-height: 360px;
    grid-column: 1 / -1;
  }

  .category-card__title {
    right: 12px;
    bottom: 12px;
    left: 12px;
    font-size: 23px;
  }

  .category-card__index {
    top: 12px;
    left: 12px;
    font-size: 7px;
  }

  .popular-section {
    padding-top: 0;
  }

  .product-grid--four,
  .product-grid--catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 38px 8px;
  }

  .product-badge {
    top: 6px;
    left: 6px;
    padding: 6px 7px;
    font-size: 8px;
  }

  .favorite-button {
    top: 5px;
    right: 5px;
    width: 34px;
    height: 34px;
    font-size: 18px;
  }

  .product-card__body {
    padding-top: 11px;
  }

  .product-card__category {
    margin-bottom: 7px;
    font-size: 10px;
  }

  .product-card h3 {
    font-size: 16px;
  }

  .product-card__description {
    min-height: 51px;
    margin-top: 9px;
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.52;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .product-card__meta {
    margin-top: 10px;
  }

  .product-card__meta strong {
    display: block;
    font-size: 14px;
  }

  .product-card__meta s {
    display: block;
    margin-top: 3px;
    font-size: 10px;
  }

  .swatch {
    width: 12px;
    height: 12px;
  }

  .product-card__sizes {
    display: none;
  }

  .quick-add {
    position: static;
    width: 100%;
    min-height: 34px;
    margin-top: 10px;
    justify-content: space-between;
    font-size: 11px;
    opacity: 1;
    transform: none;
  }

  .season-section {
    padding: 76px 16px 150px;
    gap: 45px;
  }

  .season-section__code {
    margin: 42px 0 30px;
  }

  .season-section h2 {
    font-size: 47px;
  }

  .season-section__copy > p:not(.eyebrow, .season-section__code) {
    font-size: 13px;
  }

  .season-section__main {
    height: 540px;
  }

  .season-section__main img {
    object-position: 33% center;
  }

  .season-section__detail--one {
    right: 45%;
    bottom: 36px;
    width: 150px;
    height: 190px;
  }

  .season-section__detail--two {
    right: 16px;
    bottom: 62px;
    width: 190px;
    height: 130px;
  }

  .route-journal {
    padding: 78px 16px 72px;
  }

  .route-journal__heading {
    margin-bottom: 42px;
    gap: 24px;
  }

  .route-journal__heading h2 {
    font-size: 47px;
  }

  .route-journal__heading > p {
    font-size: 13px;
  }

  .route-journal__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .route-note--lovozero {
    grid-column: auto;
  }

  .route-note--lovozero .route-note__image,
  .route-note__image {
    aspect-ratio: 16 / 10;
  }

  .route-note__body,
  .route-note--lovozero .route-note__body {
    min-height: 350px;
    padding: 22px 18px 20px;
  }

  .route-note__meta {
    margin-bottom: 26px;
  }

  .route-note h3 {
    font-size: 30px;
  }

  .route-note__body > p:not(.route-note__meta) {
    font-size: 13px;
  }

  .look-builder__image {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .look-builder__image > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: 32% center;
  }

  .look-hotspot {
    width: 36px;
    height: 36px;
  }

  .look-product {
    padding: 14px;
    grid-template-columns: 112px 1fr;
    gap: 0 14px;
  }

  .look-product h3 {
    font-size: 23px;
  }

  .look-product > p:not(.look-product__count, .product-card__category) {
    margin: 10px 0 14px;
    font-size: 10px;
  }

  .technology-section {
    padding: 80px 16px;
    gap: 45px;
  }

  .technology-section__intro h2 {
    font-size: 47px;
  }

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

  .technology-card {
    min-height: 240px;
    padding: 12px;
  }

  .technology-diagram {
    height: 115px;
  }

  .technology-card h3 {
    font-size: 17px;
  }

  .technology-card > span {
    font-size: 9px;
  }

  .brand-section {
    gap: 42px;
  }

  .brand-section__image {
    min-height: 390px;
  }

  .brand-section__image img {
    object-position: 56% center;
  }

  .brand-section__copy h2 {
    font-size: 39px;
  }

  .brand-section__copy > p:not(.eyebrow) {
    font-size: 13px;
  }

  .newsletter {
    padding: 70px 16px;
    gap: 44px;
  }

  .newsletter h2 {
    font-size: 39px;
  }

  .newsletter-form input {
    font-size: 17px;
  }

  .site-footer {
    padding: 60px 16px 20px;
    grid-template-columns: repeat(2, 1fr);
    gap: 44px 20px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__social {
    grid-column: auto;
  }

  .site-footer__bottom {
    margin-top: 20px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .site-footer__bottom a,
  .site-footer__bottom span:last-child {
    justify-self: start;
  }

  .side-panel__head {
    min-height: 66px;
    padding: 0 14px 0 18px;
  }

  .side-panel__head h2 {
    font-size: 22px;
  }

  .panel-close {
    width: 40px;
    height: 40px;
  }

  .cart-items {
    padding: 8px 16px;
  }

  .cart-item {
    grid-template-columns: 88px 1fr;
    gap: 12px;
  }

  .cart-item__thumb {
    width: 88px;
  }

  .cart-item__side {
    grid-column: 2;
    flex-direction: row;
    align-items: center;
  }

  .cart-summary {
    padding: 18px 16px;
  }

  .favorite-items {
    padding: 8px 16px 18px;
  }

  .favorite-item {
    grid-template-columns: 88px 1fr;
    gap: 12px;
  }

  .favorite-item__thumb {
    width: 88px;
  }

  .favorites-drawer__catalog {
    width: calc(100% - 32px);
    margin-right: 16px;
    margin-left: 16px;
  }

  .search-field {
    height: 68px;
    margin-right: 16px;
    margin-left: 16px;
  }

  .search-field input {
    font-size: 21px;
  }

  .search-suggestions,
  .search-results {
    padding-right: 16px;
    padding-left: 16px;
  }

  .demo-modal {
    padding: 46px 24px 28px;
  }

  .demo-modal__mark {
    width: 58px;
    height: 58px;
    margin-bottom: 30px;
    font-size: 27px;
  }

  .demo-modal h2 {
    font-size: 31px;
  }

  .breadcrumbs {
    padding: 18px 16px 0;
    white-space: nowrap;
    overflow: hidden;
  }

  .catalog-intro {
    min-height: 0;
    padding: 0 16px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .catalog-intro__copy {
    padding: 52px 0 36px;
  }

  .catalog-intro h1 {
    margin: 30px 0 24px;
    font-size: clamp(61px, 20vw, 78px);
  }

  .catalog-intro__copy > p:not(.eyebrow) {
    max-width: 560px;
    font-size: 15px;
    line-height: 1.58;
  }

  .catalog-intro__meta {
    margin-top: 24px;
    padding-top: 0;
    justify-content: flex-start;
    font-size: 10px;
  }

  .catalog-intro__facts {
    margin-top: 28px;
  }

  .catalog-intro__facts div {
    padding: 13px 8px 13px 0;
  }

  .catalog-intro__facts div + div {
    padding-left: 10px;
  }

  .catalog-intro__facts dt {
    min-height: 20px;
    font-size: 8px;
  }

  .catalog-intro__facts dd {
    font-size: 11px;
  }

  .catalog-intro__visual {
    min-height: 390px;
    margin: 0 -16px;
  }

  .catalog-intro__visual figcaption {
    right: 14px;
    bottom: 14px;
    left: 14px;
    font-size: 8px;
  }

  .category-tabs {
    min-height: auto;
    padding: 10px 16px;
    flex-wrap: wrap;
    gap: 8px;
    overflow: visible;
  }

  .category-tabs button,
  .category-tabs button:first-child {
    min-height: 42px;
    padding: 0 12px;
    flex: 1 1 calc(50% - 4px);
    border: 1px solid var(--line);
    font-size: 11px;
  }

  .category-tabs button.is-active {
    color: var(--white);
    background: var(--graphite);
  }

  .category-tabs button::after {
    display: none;
  }

  .catalog-toolbar {
    min-height: 62px;
    padding: 0 16px;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .filter-mobile-button {
    min-height: 42px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--line);
    font-size: 11px;
  }

  .filter-mobile-button span:not(:empty) {
    width: 18px;
    height: 18px;
    margin-left: auto;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--orange);
    font-family: var(--mono);
    font-size: 7px;
  }

  .filter-mobile-button i {
    margin-left: 8px;
    font-style: normal;
  }

  .catalog-toolbar .sort-control {
    grid-column: auto;
    gap: 0;
  }

  .sort-control span {
    display: none;
  }

  .sort-control select {
    width: 100%;
    min-width: 0;
    height: 42px;
    padding: 0 8px;
    border: 1px solid var(--line);
    font-size: 11px;
  }

  .active-filters {
    padding: 9px 16px;
  }

  .active-filters > button {
    display: none;
  }

  .catalog-layout {
    padding: 18px 16px 80px;
    display: block;
  }

  .filter-panel {
    display: none;
  }

  .empty-results {
    min-height: 420px;
    padding: 28px;
  }

  .empty-results h2 {
    font-size: 30px;
  }

  .catalog-route-banner {
    min-height: 520px;
    margin: 0 16px 80px;
  }

  .catalog-route-banner img {
    object-position: 62% center;
  }

  .catalog-route-banner > div {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 24px 18px;
  }

  .catalog-route-banner > div > p.mono {
    margin-bottom: 20px;
  }

  .catalog-route-banner h2 {
    font-size: 39px;
  }

  .catalog-route-banner__copy {
    margin: -2px 0 24px;
    font-size: 14px;
    line-height: 1.55;
  }

  .product-overview {
    padding: 18px 16px 76px;
    gap: 42px;
  }

  .product-gallery__thumbs {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-buy h1 {
    margin-top: 22px;
    font-size: 64px;
  }

  .product-buy__identity strong {
    font-size: 18px;
  }

  .size-choices {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .product-buy__actions .product-add-button {
    min-height: 56px;
    font-size: 11px;
  }

  .dynamic-product-story {
    margin: 0 16px;
    padding: 58px 16px 16px;
    gap: 42px;
  }

  .dynamic-product-story__copy h2 {
    margin-bottom: 22px;
    font-size: 44px;
  }

  .dynamic-product-story__copy > p:not(.eyebrow) {
    font-size: 13px;
  }

  .dynamic-product-story__facts {
    margin-top: 36px;
  }

  .dynamic-product-story__facts div {
    min-height: 82px;
    padding: 13px;
  }

  .dynamic-product-story__visual {
    min-height: 460px;
  }

  .dynamic-product-story__visual figcaption {
    font-size: 8px;
  }

  .is-dynamic-product .related-section {
    padding-top: 64px;
  }

  .mobile-buy-dock {
    position: fixed;
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    left: 8px;
    z-index: 80;
    min-height: 72px;
    padding: 8px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 132px;
    gap: 10px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--white);
    background: rgba(35, 38, 35, 0.96);
    box-shadow: 0 18px 50px rgba(16, 19, 16, 0.3);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(calc(100% + 20px));
    backdrop-filter: blur(14px);
    transition: opacity 220ms ease, transform 360ms var(--ease), visibility 220ms ease;
  }

  .mobile-buy-dock.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-buy-dock__meta {
    min-width: 0;
    padding-left: 5px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4px 8px;
    align-items: baseline;
  }

  .mobile-buy-dock__meta span {
    overflow: hidden;
    font-family: var(--mono);
    font-size: 8px;
    letter-spacing: 0.035em;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-buy-dock__meta strong {
    font-size: 13px;
    letter-spacing: -0.03em;
    white-space: nowrap;
  }

  .mobile-buy-dock__meta small {
    grid-column: 1 / -1;
    color: rgba(255, 255, 255, 0.55);
    font-size: 9px;
  }

  .mobile-buy-dock__meta small.is-selected {
    color: #d9774e;
  }

  .mobile-buy-dock .button {
    width: 100%;
    min-height: 54px;
    padding: 0 13px;
    justify-content: space-between;
    font-size: 9px;
  }

  .product-anchor-nav {
    min-height: auto;
    padding: 8px 16px;
    flex-wrap: wrap;
    gap: 6px;
  }

  .product-anchor-nav a,
  .product-anchor-nav a:first-child {
    min-height: 34px;
    padding: 0 9px;
    border: 1px solid var(--line);
    font-size: 7px;
  }

  .product-description {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .product-description h2 {
    font-size: 44px;
  }

  .product-description__copy {
    padding-top: 0;
  }

  .product-description__copy p {
    font-size: 13px;
  }

  .material-stack {
    grid-column: auto;
  }

  .feature-section__visual {
    min-height: 520px;
  }

  .feature-hotspot {
    width: 34px;
    height: 34px;
  }

  .feature-section__copy {
    min-height: 420px;
    padding: 60px 16px 44px;
  }

  .feature-section__number {
    margin-top: auto;
  }

  .feature-section__copy h2 {
    font-size: 40px;
  }

  .spec-table > div {
    min-height: 84px;
    grid-template-columns: 1fr 1.2fr 22px;
    gap: 10px;
  }

  .spec-table span,
  .spec-table strong {
    font-size: 10px;
    line-height: 1.35;
  }

  .care-section__image {
    min-height: 420px;
  }

  .care-section__content {
    padding: 70px 16px;
  }

  .care-section h2 {
    margin-bottom: 40px;
    font-size: 44px;
  }

  .related-section {
    padding-bottom: 100px;
  }

  .size-guide {
    padding: 48px 14px 20px;
  }

  .size-guide h2 {
    font-size: 32px;
  }

  .size-guide th,
  .size-guide td {
    padding: 11px 4px;
    font-size: 9px;
  }
}

@media (max-width: 700px) {
  .category-card__image--apparel {
    background-position: 69% center;
  }

  .category-card__image--boots {
    background-position: 56% center;
  }

  .category-card__image--pack {
    background-position: 34% center;
  }

  .category-card__image--gear {
    background-position: 66% center;
  }

  .technology-section__material {
    height: 240px;
    margin-top: 38px;
  }

  .catalog-editorial-card {
    min-height: 520px;
    margin-bottom: 48px;
  }

  .catalog-editorial-card::after {
    background: linear-gradient(0deg, rgba(12, 16, 13, 0.84), rgba(12, 16, 13, 0.04) 76%);
  }

  .catalog-editorial-card > img {
    object-position: 35% center;
  }

  .catalog-editorial-card > div {
    width: 100%;
    padding: 24px 18px;
  }

  .catalog-editorial-card h2 {
    margin-bottom: 16px;
    font-size: 40px;
  }

  .catalog-editorial-card__copy {
    margin-bottom: 22px;
    font-size: 13px;
    line-height: 1.5;
  }

  .catalog-editorial-card a {
    font-size: 12px;
  }

  .catalog-filler-card--guide {
    min-height: 340px;
    padding: 20px;
    gap: 38px;
  }

  .catalog-filler-card--guide h3 {
    font-size: 30px;
  }

  .catalog-filler-card--guide div > p {
    font-size: 12px;
  }

  .catalog-filler-card--visual {
    min-height: 340px;
  }

  .catalog-filler-card--visual > div {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .catalog-filler-card--visual h3 {
    font-size: 25px;
  }
}

/* Route journals, route fit and product comparison */
.route-note__image {
  width: 100%;
  padding: 0;
  border: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.route-note__actions {
  margin-top: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.route-note__story,
.route-note__link {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.route-note__story {
  padding: 0 15px;
  justify-content: center;
  color: var(--white);
  background: var(--graphite);
  font-size: 11px;
  font-weight: 650;
  text-align: left;
  transition: background 180ms ease;
}

.route-note__story:hover {
  background: var(--forest);
}

.route-note__link {
  width: auto;
  margin: 0;
  padding: 0 14px;
  justify-content: center;
  border: 1px solid rgba(16, 19, 16, 0.2);
  color: #565a54;
  font-size: 9px;
  font-weight: 650;
  transition: color 180ms ease, background 180ms ease;
}

.route-note__link:hover {
  color: var(--white);
  background: var(--orange);
}

.route-dialog {
  width: min(1380px, calc(100vw - 40px));
  max-width: none;
  height: min(900px, 92dvh);
  max-height: 92dvh;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: var(--milk);
  box-shadow: 0 30px 90px rgba(16, 19, 16, 0.32);
}

.route-dialog[open] {
  display: grid;
  grid-template-columns: minmax(380px, 0.78fr) minmax(0, 1.22fr);
}

.route-dialog > .panel-close,
.compare-dialog > .panel-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 6;
  background: rgba(244, 242, 235, 0.92);
  backdrop-filter: blur(8px);
}

.route-dialog__media {
  position: relative;
  height: min(900px, 92dvh);
  overflow: hidden;
  background: var(--forest);
}

.route-dialog__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(9, 13, 10, 0.58));
  content: "";
}

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

.route-dialog__media > span {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
}

.route-dialog__content {
  height: min(900px, 92dvh);
  padding: 68px 58px 58px;
  overflow-y: auto;
}

.route-dialog__content h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(54px, 5.1vw, 82px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.067em;
}

.route-dialog__lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: #595d57;
  font-size: 15px;
  line-height: 1.65;
}

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

.route-dialog__facts div {
  padding: 17px 14px 17px 0;
}

.route-dialog__facts div + div {
  padding-left: 14px;
  border-left: 1px solid var(--line);
}

.route-dialog__facts dt,
.route-builder__result dt {
  margin-bottom: 8px;
  color: #858882;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.route-dialog__facts dd,
.route-builder__result dd {
  margin: 0;
  font-size: 13px;
  font-weight: 680;
  line-height: 1.25;
}

.route-dialog__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 44px;
}

.route-dialog__grid section > p {
  margin: 0 0 18px;
  color: #858882;
  font-size: 8px;
}

.route-dialog__timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.route-dialog__timeline li {
  padding: 17px 0;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}

.route-dialog__timeline time {
  padding-top: 2px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 9px;
}

.route-dialog__timeline h3 {
  margin: 0 0 7px;
  font-size: 14px;
  line-height: 1.25;
}

.route-dialog__timeline p {
  margin: 0;
  color: #656962;
  font-size: 11px;
  line-height: 1.5;
}

.route-dialog blockquote {
  margin: 0 0 18px;
  padding: 20px;
  border-left: 3px solid var(--orange);
  background: #e8e6df;
  font-size: 13px;
  font-weight: 560;
  line-height: 1.5;
}

.route-dialog__kit {
  border-top: 1px solid var(--line);
}

.route-dialog__kit a {
  min-height: 74px;
  padding: 9px 0;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 13px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.route-dialog__kit .sheet-photo {
  width: 56px;
  aspect-ratio: 1;
}

.route-dialog__kit a > span:nth-child(2) {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 10px;
}

.route-dialog__kit small {
  grid-column: 1 / -1;
  color: #777a75;
  font-family: var(--mono);
  font-size: 7px;
  text-transform: uppercase;
}

.route-dialog__kit b,
.route-dialog__kit strong {
  font-size: 11px;
}

.route-dialog__kit em {
  color: var(--orange);
  font-size: 8px;
  font-weight: 650;
  font-style: normal;
  text-transform: uppercase;
}

.route-dialog__catalog {
  width: 100%;
  min-height: 54px;
  margin-top: 38px;
}

.route-builder-open {
  min-height: 52px;
  padding: 0 15px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  border: 1px solid var(--line);
  text-align: left;
  transition: color 180ms ease, background 180ms ease;
}

.route-builder-open span {
  color: #7a7d77;
  font-size: 7px;
}

.route-builder-open b {
  font-size: 11px;
}

.route-builder-open:hover {
  color: var(--white);
  background: var(--forest);
}

.route-builder-open:hover span {
  color: rgba(255, 255, 255, 0.56);
}

.route-builder-panel {
  width: min(720px, 100vw);
}

.route-builder__body {
  padding: 34px 30px 40px;
  overflow-y: auto;
}

.route-builder__intro {
  margin-bottom: 36px;
}

.route-builder__intro > p:first-child {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 8px;
}

.route-builder__intro h3 {
  margin: 0 0 18px;
  font-size: clamp(38px, 4.2vw, 56px);
  font-weight: 600;
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.route-builder__intro > p:last-child {
  max-width: 550px;
  margin: 0;
  color: #656862;
  font-size: 13px;
  line-height: 1.56;
}

.route-builder__step {
  margin: 0;
  padding: 22px 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.route-builder__step legend {
  width: 100%;
  padding: 0 0 13px;
  display: block;
  font-size: 13px;
  font-weight: 650;
}

.route-builder__step legend span {
  margin-right: 12px;
  color: var(--orange);
  font-family: var(--mono);
  font-size: 8px;
}

.route-builder__step > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.route-builder__step button {
  min-height: 48px;
  padding: 0 10px;
  border: 1px solid var(--line);
  font-size: 11px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.route-builder__step button:hover,
.route-builder__step button.is-active {
  border-color: var(--graphite);
  color: var(--white);
  background: var(--graphite);
}

.route-builder__result {
  margin-top: 18px;
  padding: 26px;
  color: var(--white);
  background: var(--forest);
}

.route-builder__result-head > p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 8px;
}

.route-builder__result-head h3 {
  max-width: 540px;
  margin: 0 0 22px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.05em;
}

.route-builder__item {
  min-height: 84px;
  padding: 9px 0;
  display: grid;
  grid-template-columns: 24px 66px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.route-builder__item-index {
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
}

.route-builder__item-photo {
  width: 66px;
  aspect-ratio: 1;
}

.route-builder__item-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px 12px;
}

.route-builder__item small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--mono);
  font-size: 7px;
  text-transform: uppercase;
}

.route-builder__item b {
  font-size: 13px;
}

.route-builder__item em {
  font-size: 11px;
  font-style: normal;
  font-weight: 650;
}

.route-builder__item-copy > span {
  grid-column: 1 / -1;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  line-height: 1.45;
}

.route-builder__result dl {
  margin: 18px 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.route-builder__result dl div {
  padding: 16px 11px 16px 0;
}

.route-builder__result dl div + div {
  padding-left: 11px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.route-builder__result dt {
  color: rgba(255, 255, 255, 0.46);
}

.route-builder__result dd {
  color: var(--white);
  font-size: 11px;
}

.route-builder__result .button {
  width: 100%;
}

.compare-toggle {
  width: 100%;
  min-height: 38px;
  margin-top: 13px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  color: #626660;
  font-size: 10px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.compare-toggle:hover,
.compare-toggle.is-active {
  border-color: var(--forest);
  color: var(--white);
  background: var(--forest);
}

.compare-toggle span {
  color: var(--orange);
  font-size: 14px;
}

.compare-dock {
  position: fixed;
  right: 50%;
  bottom: 18px;
  z-index: 80;
  width: min(1000px, calc(100vw - 36px));
  min-height: 78px;
  padding: 11px 13px 11px 18px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  color: var(--white);
  background: var(--graphite);
  box-shadow: 0 18px 60px rgba(16, 19, 16, 0.34);
  transform: translateX(50%);
}

.compare-dock[hidden] {
  display: none;
}

.compare-dock__label {
  min-width: 116px;
  display: grid;
  gap: 6px;
}

.compare-dock__label span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 7px;
}

.compare-dock__label strong {
  font-size: 15px;
}

.compare-dock__items {
  min-width: 0;
  display: flex;
  gap: 6px;
  overflow-x: auto;
}

.compare-dock__items button {
  min-height: 40px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 9px;
  white-space: nowrap;
}

.compare-dock__items i {
  color: var(--orange);
  font-size: 14px;
  font-style: normal;
}

.compare-dock__clear {
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.compare-dock__open {
  min-width: 150px;
  min-height: 50px;
}

.compare-dock__open:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.compare-dialog {
  width: min(1320px, calc(100vw - 40px));
  max-width: none;
  max-height: 92dvh;
  padding: 54px 46px 46px;
  border: 0;
  overflow: hidden;
  background: var(--milk);
  box-shadow: 0 30px 90px rgba(16, 19, 16, 0.32);
}

.compare-dialog__head {
  padding-right: 80px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 8px 50px;
  align-items: end;
}

.compare-dialog__head .eyebrow {
  grid-column: 1 / -1;
}

.compare-dialog__head h2 {
  margin: 0;
  font-size: clamp(54px, 5.4vw, 82px);
  font-weight: 600;
  line-height: 0.89;
  letter-spacing: -0.067em;
}

.compare-dialog__head > p:last-child {
  max-width: 450px;
  margin: 0 0 5px;
  color: #656862;
  font-size: 13px;
  line-height: 1.55;
}

.compare-dialog__insights {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.compare-dialog__insights article {
  min-width: 0;
  padding: 16px 18px;
}

.compare-dialog__insights article + article {
  border-left: 1px solid var(--line);
}

.compare-dialog__insights span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 8px;
}

.compare-dialog__insights b {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.compare-dialog__insights p {
  margin: 0;
  color: #666a64;
  font-size: 11px;
  line-height: 1.4;
}

.compare-dialog__table {
  max-height: calc(92dvh - 370px);
  margin-top: 18px;
  overflow: auto;
  border: 1px solid var(--line);
}

.compare-dialog table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  table-layout: fixed;
}

.compare-dialog th,
.compare-dialog td {
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.compare-dialog tr > *:last-child {
  border-right: 0;
}

.compare-dialog tbody tr:last-child > * {
  border-bottom: 0;
}

.compare-dialog thead th:first-child,
.compare-dialog tbody th {
  width: 150px;
  background: #e8e6df;
}

.compare-dialog tbody th {
  position: sticky;
  left: 0;
  z-index: 2;
  color: #686b65;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.compare-dialog thead th {
  padding: 12px;
}

.compare-dialog thead th:first-child {
  color: #858882;
  font-size: 7px;
}

.compare-dialog thead a {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 5px 14px;
  align-items: end;
}

.compare-dialog thead .sheet-photo {
  width: 96px;
  aspect-ratio: 1;
  grid-row: 1 / 4;
}

.compare-dialog thead small {
  color: #777a75;
  font-family: var(--mono);
  font-size: 7px;
  text-transform: uppercase;
}

.compare-dialog thead b {
  font-size: 14px;
}

.compare-dialog thead strong {
  font-size: 11px;
}

.compare-dialog td {
  color: #4f534d;
  font-size: 12px;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .route-dialog {
    height: auto;
    overflow-y: auto;
  }

  .route-dialog[open] {
    display: block;
  }

  .route-dialog__media {
    height: 390px;
  }

  .route-dialog__content {
    height: auto;
    padding: 52px 38px;
    overflow: visible;
  }

  .route-dialog__grid {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar {
    grid-template-columns: 220px 1fr;
  }

  .route-builder-open {
    grid-column: 1;
  }

  .compare-dialog__head {
    grid-template-columns: 1fr;
  }

  .compare-dialog__head > p:last-child {
    max-width: 650px;
    margin-top: 18px;
  }
}

@media (max-width: 700px) {
  .route-note__actions {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .route-note__story,
  .route-note__link {
    min-height: 44px;
  }

  .route-note__link {
    width: auto;
    padding: 0 12px;
  }

  .route-dialog {
    width: calc(100vw - 16px);
    max-height: 96dvh;
  }

  .route-dialog__media {
    height: 280px;
  }

  .route-dialog__media > span {
    right: 16px;
    bottom: 14px;
    left: 16px;
  }

  .route-dialog__content {
    padding: 45px 16px 28px;
  }

  .route-dialog__content h2 {
    font-size: 43px;
  }

  .route-dialog__lead {
    margin-top: 20px;
    font-size: 13px;
  }

  .route-dialog__facts {
    margin: 28px 0 38px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-dialog__facts div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .route-dialog__facts div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .route-dialog__grid {
    gap: 34px;
  }

  .route-dialog__catalog {
    margin-top: 28px;
  }

  .catalog-toolbar {
    min-height: auto;
    padding: 10px 16px;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .route-builder-open {
    min-height: 42px;
    padding: 0 11px;
    grid-template-columns: 1fr;
    grid-column: auto;
    gap: 8px;
  }

  .route-builder-open span {
    display: none;
  }

  .route-builder-open b {
    font-size: 10px;
    text-align: center;
  }

  .catalog-toolbar .sort-control {
    grid-column: 1 / -1;
  }

  .route-builder__body {
    padding: 26px 16px 32px;
  }

  .route-builder__intro h3 {
    font-size: 40px;
  }

  .route-builder__step > div {
    gap: 5px;
  }

  .route-builder__step button {
    min-height: 44px;
    padding: 0 5px;
    font-size: 9px;
  }

  .route-builder__result {
    margin: 10px -2px 0;
    padding: 20px 14px;
  }

  .route-builder__result-head h3 {
    font-size: 25px;
  }

  .route-builder__item {
    grid-template-columns: 19px 52px minmax(0, 1fr);
    gap: 9px;
  }

  .route-builder__item-photo {
    width: 52px;
  }

  .route-builder__item-copy {
    display: block;
  }

  .route-builder__item-copy small,
  .route-builder__item-copy b,
  .route-builder__item-copy em,
  .route-builder__item-copy > span {
    display: block;
  }

  .route-builder__item-copy b {
    margin: 4px 0;
    font-size: 11px;
  }

  .route-builder__item-copy > span {
    margin-top: 7px;
    font-size: 10px;
  }

  .route-builder__result dl {
    grid-template-columns: 1fr;
  }

  .route-builder__result dl div {
    padding: 12px 0;
  }

  .route-builder__result dl div + div {
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .compare-toggle {
    min-height: 34px;
    margin-top: 8px;
    font-size: 9px;
  }

  .compare-dock {
    right: 8px;
    bottom: 8px;
    left: 8px;
    width: auto;
    min-height: 0;
    padding: 10px;
    grid-template-columns: minmax(0, 1fr) 122px;
    gap: 8px;
    transform: none;
  }

  .compare-dock__label {
    min-width: 0;
  }

  .compare-dock__label strong {
    font-size: 13px;
  }

  .compare-dock__items {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .compare-dock__items button {
    min-height: 34px;
    padding: 0 8px;
    font-size: 8px;
  }

  .compare-dock__clear {
    display: none;
  }

  .compare-dock__open {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    min-height: 42px;
  }

  .compare-dialog {
    width: calc(100vw - 16px);
    max-height: 96dvh;
    padding: 48px 12px 18px;
  }

  .compare-dialog__head {
    padding-right: 0;
    gap: 0;
  }

  .compare-dialog__head h2 {
    font-size: 43px;
  }

  .compare-dialog__head > p:last-child {
    margin-top: 16px;
    font-size: 12px;
  }

  .compare-dialog__insights {
    margin-top: 20px;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(190px, 72%);
    overflow-x: auto;
  }

  .compare-dialog__insights article {
    padding: 13px 14px;
  }

  .compare-dialog__table {
    max-height: calc(96dvh - 390px);
    margin-top: 14px;
  }
}

.product-card__secondary-actions {
  margin-top: 13px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 6px;
}

.product-card__secondary-actions .compare-toggle {
  margin-top: 0;
}

.product-card__quick-view {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  color: #626660;
  font-size: 10px;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.product-card__quick-view:hover {
  border-color: var(--graphite);
  color: var(--white);
  background: var(--graphite);
}

.quick-view-dialog {
  width: min(1120px, calc(100vw - 32px));
  max-height: min(900px, calc(100dvh - 32px));
  padding: 0;
  border: 0;
  overflow: hidden;
  background: var(--milk);
}

.quick-view-dialog > .panel-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  background: rgba(242, 240, 233, 0.92);
}

.quick-view {
  max-height: min(900px, calc(100dvh - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, 0.92fr);
  overflow: auto;
}

.quick-view__visual {
  min-height: 760px;
  margin: 0;
  position: sticky;
  top: 0;
  overflow: hidden;
  background: #e8e5dc;
}

.quick-view__visual .sheet-photo {
  position: absolute;
  inset: 0;
}

.quick-view__visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  padding: 10px 12px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(16, 19, 16, 0.72);
  backdrop-filter: blur(8px);
  font-size: 8px;
}

.quick-view__content {
  padding: 58px 46px 42px;
}

.quick-view__content .eyebrow {
  margin-bottom: 30px;
}

.quick-view__category {
  margin: 0 0 12px;
  color: #757873;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.quick-view__content h2 {
  margin: 0;
  font-size: clamp(46px, 4.5vw, 68px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.quick-view__price {
  margin: 24px 0 0;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: 22px;
  font-weight: 700;
}

.quick-view__price s {
  margin-left: 8px;
  color: #8b8d88;
  font-size: 12px;
  font-weight: 400;
}

.quick-view__intro {
  margin: 20px 0;
  color: #5f635d;
  font-size: 14px;
  line-height: 1.55;
}

.quick-view__specs {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.quick-view__specs div {
  min-width: 0;
  padding: 12px 10px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quick-view__specs dt,
.quick-view__decision dt,
.product-decision dt {
  margin-bottom: 6px;
  color: #81847f;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.quick-view__specs dd {
  margin: 0;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.35;
}

.quick-view__decision {
  margin: 20px 0;
  border-top: 1px solid var(--line);
}

.quick-view__decision div {
  padding: 11px 0;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.quick-view__decision dt {
  margin: 1px 0 0;
}

.quick-view__decision dd {
  margin: 0;
  color: #545852;
  font-size: 11px;
  line-height: 1.45;
}

.quick-view__size legend {
  margin-bottom: 10px;
  font-size: 11px;
}

.quick-view__size > div {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(44px, 1fr));
  gap: 5px;
}

.quick-view__size button {
  min-height: 42px;
  border: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 9px;
}

.quick-view__size button:hover,
.quick-view__size button.is-active {
  border-color: var(--graphite);
  color: var(--white);
  background: var(--graphite);
}

.quick-view__size > p {
  display: none;
  margin: 9px 0 0;
  color: var(--orange);
  font-size: 10px;
}

.quick-view__size.has-error > div {
  outline: 1px solid var(--orange);
  outline-offset: 4px;
}

.quick-view__size.has-error > p {
  display: block;
}

.quick-view__actions {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 7px;
}

.quick-view__actions .button {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.product-decision {
  margin-top: 14px;
  border: 1px solid var(--line);
}

.product-decision__head {
  min-height: 45px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.product-decision__head span {
  color: var(--orange);
  font-size: 7px;
}

.product-decision__head h2 {
  margin: 0;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.product-decision dl {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-decision dl div {
  min-width: 0;
  padding: 12px;
}

.product-decision dl div + div {
  border-left: 1px solid var(--line);
}

.product-decision dt {
  color: #8a8d87;
  font-size: 8px;
}

.product-decision dd {
  margin: 0;
  color: #535751;
  font-size: 11px;
  line-height: 1.45;
}

.size-guide {
  max-height: calc(100dvh - 32px);
  overflow: auto;
}

.size-assistant {
  margin: 0 0 28px;
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(150px, 0.9fr);
  gap: 12px;
  color: var(--white);
  background: var(--forest);
}

.size-assistant__intro {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 8px 18px;
}

.size-assistant__intro span {
  grid-row: 1 / span 2;
  padding-top: 4px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 7px;
}

.size-assistant__intro h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.04em;
}

.size-assistant__intro p {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.5;
}

.size-assistant label {
  display: grid;
  gap: 7px;
}

.size-assistant label span {
  font-size: 9px;
}

.size-assistant input {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  background: transparent;
  font: inherit;
  font-size: 12px;
}

.size-assistant input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.size-assistant > .button {
  min-height: 46px;
  align-self: end;
  border-color: rgba(255, 255, 255, 0.25);
  background: var(--graphite);
}

.size-assistant__result {
  grid-column: 1 / -1;
  padding: 15px;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  gap: 8px 16px;
  align-items: center;
  color: var(--graphite);
  background: var(--milk);
}

.size-assistant__result:empty {
  display: none;
}

.size-assistant__result > span {
  color: var(--orange);
  font-size: 7px;
}

.size-assistant__result strong {
  font-size: 18px;
  white-space: nowrap;
}

.size-assistant__result p {
  margin: 0;
  color: #5f635d;
  font-size: 11px;
  line-height: 1.45;
}

.size-assistant__result button {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid var(--graphite);
  font-size: 9px;
}

.size-assistant__result button:hover {
  color: var(--white);
  background: var(--graphite);
}

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

  .quick-view__visual {
    min-height: 0;
    position: relative;
    aspect-ratio: 1 / 0.74;
  }
}

@media (max-width: 700px) {
  .product-card__secondary-actions {
    margin-top: 8px;
    gap: 5px;
  }

  .product-card__quick-view,
  .product-card__secondary-actions .compare-toggle {
    min-height: 34px;
    margin-top: 0;
    padding: 0 8px;
    font-size: 10px;
  }

  .quick-view-dialog {
    width: calc(100vw - 12px);
    max-height: 96dvh;
  }

  .quick-view-dialog > .panel-close {
    top: 10px;
    right: 10px;
  }

  .quick-view {
    max-height: 96dvh;
    grid-template-columns: 1fr;
  }

  .quick-view__visual {
    min-height: 0;
    position: relative;
    aspect-ratio: 1 / 0.86;
  }

  .quick-view__visual figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    font-size: 7px;
  }

  .quick-view__content {
    padding: 28px 16px 18px;
  }

  .quick-view__content .eyebrow {
    margin-bottom: 22px;
  }

  .quick-view__content h2 {
    font-size: 43px;
  }

  .quick-view__price {
    margin-top: 18px;
    font-size: 18px;
  }

  .quick-view__intro {
    font-size: 13px;
  }

  .quick-view__decision div {
    grid-template-columns: 70px 1fr;
  }

  .quick-view__size button {
    font-size: 10px;
  }

  .quick-view__actions {
    grid-template-columns: 1fr 1fr;
  }

  .quick-view__actions .button {
    min-height: 50px;
    padding: 0 8px;
    font-size: 10px;
  }

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

  .product-decision dl div {
    padding: 13px;
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 12px;
  }

  .product-decision dl div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .product-decision dt {
    margin: 1px 0 0;
  }

  .product-decision dd {
    font-size: 11px;
  }

  .size-guide {
    max-height: 96dvh;
  }

  .size-assistant {
    padding: 18px 14px;
    grid-template-columns: 1fr;
  }

  .size-assistant__intro {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .size-assistant__intro span {
    grid-row: auto;
  }

  .size-assistant__intro h3 {
    font-size: 23px;
  }

  .size-assistant__result {
    grid-column: auto;
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
  }

  .size-assistant__result p,
  .size-assistant__result button {
    grid-column: 1 / -1;
  }

  .size-assistant__result button {
    min-height: 42px;
    font-size: 10px;
  }
}

.catalog-use-cases {
  padding: 30px 32px;
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 1fr);
  gap: 28px;
  border-bottom: 1px solid var(--line);
  background: #e7e4dc;
}

.catalog-use-cases__intro {
  padding: 6px 26px 6px 0;
  border-right: 1px solid rgba(16, 19, 16, 0.16);
}

.catalog-use-cases__intro > p.mono {
  margin: 0 0 24px;
  color: var(--orange);
  font-size: 8px;
}

.catalog-use-cases__intro h2 {
  margin: 0;
  font-size: clamp(33px, 3vw, 46px);
  font-weight: 620;
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.catalog-use-cases__intro > p:last-child {
  max-width: 430px;
  margin: 24px 0 0;
  color: #5d615b;
  font-size: 13px;
  line-height: 1.55;
}

.catalog-use-cases__options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.catalog-use-cases__options button {
  min-width: 0;
  min-height: 172px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(16, 19, 16, 0.17);
  text-align: left;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 220ms var(--ease);
}

.catalog-use-cases__options button:hover {
  border-color: var(--graphite);
  transform: translateY(-3px);
}

.catalog-use-cases__options button.is-active {
  border-color: var(--forest);
  color: var(--white);
  background: var(--forest);
}

.catalog-use-cases__options span {
  margin-bottom: auto;
  color: #8b8e88;
  font-size: 7px;
}

.catalog-use-cases__options button.is-active span,
.catalog-use-cases__options button.is-active small {
  color: rgba(255, 255, 255, 0.56);
}

.catalog-use-cases__options strong {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.catalog-use-cases__options small {
  margin-top: 9px;
  color: #6f726d;
  font-size: 11px;
  line-height: 1.4;
}

.product-kit {
  margin: 0 32px 100px;
  padding: 68px;
  display: grid;
  grid-template-columns: minmax(310px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(50px, 6vw, 100px);
  color: var(--white);
  background: var(--forest);
}

.product-kit__intro {
  align-self: start;
}

.product-kit__intro .eyebrow {
  color: rgba(255, 255, 255, 0.55);
}

.product-kit__intro h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 610;
  line-height: 0.91;
  letter-spacing: -0.065em;
}

.product-kit__intro > p:not(.eyebrow) {
  max-width: 480px;
  margin: 28px 0 38px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.6;
}

.product-kit__summary {
  margin: 0 0 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.product-kit__summary div {
  min-width: 0;
  padding: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.product-kit__summary dt {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.product-kit__summary dd {
  margin: 0;
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
}

.product-kit__intro > .button {
  width: 100%;
  justify-content: center;
}

.product-kit__intro > .button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.product-kit__items {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  align-items: start;
}

.product-kit__item {
  min-width: 0;
  padding: 12px;
  color: var(--graphite);
  background: var(--milk);
  transition: opacity 200ms ease, transform 240ms var(--ease);
}

.product-kit__item.is-excluded {
  opacity: 0.44;
  transform: scale(0.985);
}

.product-kit__toggle {
  min-height: 34px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.product-kit__toggle input {
  position: absolute;
  opacity: 0;
}

.product-kit__toggle span {
  width: 16px;
  height: 16px;
  position: relative;
  border: 1px solid var(--graphite);
}

.product-kit__toggle span::after {
  position: absolute;
  inset: 3px;
  background: var(--orange);
  content: "";
  opacity: 0;
}

.product-kit__toggle input:checked + span::after {
  opacity: 1;
}

.product-kit__toggle b {
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-kit__photo {
  width: 100%;
  margin-top: 10px;
  aspect-ratio: 1;
}

.product-kit__item-copy {
  padding: 14px 3px 3px;
}

.product-kit__item-copy > small {
  color: #7a7d77;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.product-kit__item-copy h3 {
  margin: 7px 0 0;
  font-size: 18px;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.product-kit__item-copy > p {
  min-height: 54px;
  margin: 11px 0;
  color: #656963;
  font-size: 11px;
  line-height: 1.5;
}

.product-kit__item-copy > div {
  padding: 11px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-kit__item-copy > div strong {
  font-size: 13px;
}

.product-kit__item-copy > div span {
  color: #777a75;
  font-family: var(--mono);
  font-size: 8px;
}

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

.product-kit__size > span {
  color: #777a75;
  font-size: 10px;
}

.product-kit__size select {
  min-width: 76px;
  min-height: 38px;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: transparent;
  font-family: var(--mono);
  font-size: 9px;
}

.recently-viewed {
  padding: 92px 32px 110px;
  border-top: 1px solid var(--line);
  background: #e5e3da;
}

.recently-viewed__head {
  margin-bottom: 38px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.recently-viewed__head .eyebrow {
  margin-bottom: 16px;
}

.recently-viewed__head h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 610;
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.recently-viewed__head > button {
  padding-bottom: 6px;
  border-bottom: 1px solid var(--graphite);
  color: #5f635d;
  font-size: 11px;
}

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

.recent-product {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(110px, 0.76fr) minmax(0, 1.24fr);
  border: 1px solid rgba(16, 19, 16, 0.13);
  background: var(--milk);
  transition: border-color 180ms ease, transform 260ms var(--ease);
}

.recent-product:hover {
  border-color: var(--orange);
  transform: translateY(-3px);
}

.recent-product__photo {
  min-height: 210px;
}

.recent-product__copy {
  min-width: 0;
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.recent-product__copy > small {
  color: #7a7d77;
  font-family: var(--mono);
  font-size: 8px;
  text-transform: uppercase;
}

.recent-product__copy > strong {
  margin-top: 10px;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.035em;
}

.recent-product__copy > span {
  margin-top: 12px;
  display: -webkit-box;
  overflow: hidden;
  color: #666a64;
  font-size: 11px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.recent-product__copy > i {
  margin-top: auto;
  padding-top: 13px;
  display: grid;
  gap: 6px;
  border-top: 1px solid var(--line);
  font-style: normal;
}

.recent-product__copy > i b {
  font-size: 13px;
}

.recent-product__copy > i em {
  color: #7c7f79;
  font-family: var(--mono);
  font-size: 7px;
  font-style: normal;
}

@media (max-width: 1180px) {
  .catalog-use-cases {
    grid-template-columns: 1fr;
  }

  .catalog-use-cases__intro {
    padding-right: 0;
    border-right: 0;
  }

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

  .catalog-use-cases__options button {
    min-height: 140px;
  }

  .product-kit {
    padding: 52px 36px;
    grid-template-columns: 1fr;
  }

  .product-kit__items {
    max-width: 900px;
  }

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

@media (max-width: 700px) {
  .catalog-use-cases {
    padding: 26px 16px;
    gap: 24px;
  }

  .catalog-use-cases__intro h2 {
    font-size: 38px;
  }

  .catalog-use-cases__intro > p:last-child {
    margin-top: 18px;
    font-size: 13px;
  }

  .catalog-use-cases__options {
    gap: 6px;
  }

  .catalog-use-cases__options button {
    min-height: 134px;
    padding: 14px;
  }

  .catalog-use-cases__options strong {
    font-size: 16px;
  }

  .catalog-use-cases__options small {
    font-size: 10px;
  }

  .product-kit {
    margin: 0 16px 78px;
    padding: 48px 14px 16px;
    gap: 36px;
  }

  .product-kit__intro h2 {
    font-size: 43px;
  }

  .product-kit__intro > p:not(.eyebrow) {
    margin: 22px 0 30px;
    font-size: 13px;
  }

  .product-kit__summary div {
    padding: 11px 8px;
  }

  .product-kit__summary dd {
    font-size: 10px;
  }

  .product-kit__items {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(250px, 82%);
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

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

  .product-kit__item {
    scroll-snap-align: start;
  }

  .product-kit__item-copy > p {
    min-height: 0;
    font-size: 12px;
  }

  .recently-viewed {
    padding: 72px 16px 90px;
  }

  .recently-viewed__head {
    margin-bottom: 30px;
    align-items: flex-end;
  }

  .recently-viewed__head h2 {
    font-size: 43px;
  }

  .recently-viewed__head > button {
    font-size: 10px;
  }

  .recently-viewed__grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(300px, 86%);
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .recently-viewed__grid::-webkit-scrollbar {
    display: none;
  }

  .recent-product {
    scroll-snap-align: start;
  }

  .recent-product__copy > span {
    font-size: 12px;
  }
}

/* Visual QA: stable image framing and text-led navigation */
.text-link {
  position: relative;
  padding-bottom: 5px;
  gap: 0;
  border-bottom: 0;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0.34);
  transform-origin: left;
  transition: transform 240ms var(--ease);
}

.text-link:hover::after {
  transform: scaleX(1);
}

.route-hero__scroll span {
  width: 32px;
  height: 1px;
  background: currentColor;
  animation: none;
}

.category-card__title i {
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  font-family: var(--mono);
  font-size: 8px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

.category-card:hover .category-card__title i {
  border-color: var(--orange);
  color: var(--orange);
  transform: none;
}

.search-suggestions a::after {
  width: 26px;
  height: 1px;
  background: var(--orange);
  content: "";
  transform: scaleX(0.45);
  transform-origin: right;
  transition: transform 180ms var(--ease);
}

.search-suggestions a:hover::after {
  transform: scaleX(1);
}

.season-section {
  min-height: 900px;
  grid-template-columns: minmax(380px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
}

.season-section__visuals {
  min-width: 0;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(180px, 0.55fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.season-section__visuals figure {
  min-width: 0;
  margin: 0;
}

.season-section__main {
  height: auto;
  grid-row: 1 / 3;
}

.season-section__detail {
  position: relative;
  right: auto;
  bottom: auto;
  width: auto;
  height: auto;
  border: 0;
}

.season-section__main img {
  object-position: 42% center;
}

.season-section__detail--one img,
.season-section__detail--two img {
  object-position: center;
}

.season-section__line {
  display: none;
}

.route-note__body {
  flex: 1;
}

.route-note__actions {
  padding-top: 4px;
}

.look-mobile-selector,
.feature-mobile-selector {
  display: none;
}

.technology-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.technology-card__media {
  height: 210px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #d9d7cf;
}

.technology-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms var(--ease), filter 300ms ease;
}

.technology-card:nth-child(4) .technology-card__media img {
  object-fit: contain;
}

.technology-card:hover .technology-card__media img {
  filter: saturate(1.06);
  transform: scale(1.025);
}

.technology-card > p {
  margin-top: auto;
}

.catalog-use-cases__options button {
  min-height: 280px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-color: rgba(16, 19, 16, 0.22);
  color: var(--white);
  background: var(--forest);
}

.catalog-use-cases__options button::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8, 11, 9, 0.08) 20%, rgba(8, 11, 9, 0.86) 100%);
  content: "";
}

.catalog-use-cases__options img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 260ms ease, transform 600ms var(--ease);
}

.catalog-use-cases__options button:hover img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

.catalog-use-cases__options button.is-active {
  border-color: var(--orange);
  color: var(--white);
  background: var(--forest);
  box-shadow: inset 0 0 0 2px var(--orange);
}

.catalog-use-cases__options span,
.catalog-use-cases__options small,
.catalog-use-cases__options button.is-active span,
.catalog-use-cases__options button.is-active small {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.72);
}

.catalog-use-cases__options strong {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.size-filter label {
  padding: 0;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.size-filter label span {
  grid-column: 1;
  justify-self: center;
}

.recent-product {
  display: flex;
  flex-direction: column;
}

.recent-product__photo {
  min-height: 0;
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--line);
  background-position: center;
  background-size: contain;
}

[data-visual="boots"] .recent-product__photo,
[data-visual="camp"] .recent-product__photo {
  background-size: cover;
}

.recent-product__copy {
  min-height: 220px;
  flex: 1;
}

@media (max-width: 1180px) {
  .season-section {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .season-section__visuals {
    min-height: 680px;
  }

  .catalog-use-cases__options button {
    min-height: 240px;
  }
}

@media (max-width: 700px) {
  .season-section {
    padding-bottom: 76px;
  }

  .season-section__visuals {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 520px 168px;
    gap: 8px;
  }

  .season-section__main {
    grid-row: 1;
    grid-column: 1 / -1;
  }

  .season-section__detail {
    grid-row: 2;
  }

  .route-note__body,
  .route-note--lovozero .route-note__body {
    min-height: 370px;
  }

  .look-hotspot,
  .feature-hotspot {
    display: none;
  }

  .look-mobile-selector,
  .feature-mobile-selector {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
  }

  .look-mobile-selector {
    padding: 8px 0 4px;
  }

  .feature-mobile-selector {
    margin: 24px 0 4px;
  }

  .look-mobile-selector button,
  .feature-mobile-selector button {
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid var(--line);
    font-size: 10px;
    white-space: nowrap;
  }

  .feature-mobile-selector button {
    border-color: rgba(255, 255, 255, 0.28);
    color: rgba(255, 255, 255, 0.74);
  }

  .look-mobile-selector button.is-active,
  .feature-mobile-selector button.is-active {
    border-color: var(--orange);
    color: var(--white);
    background: var(--orange);
  }

  .technology-card {
    min-height: 285px;
  }

  .technology-card__media {
    height: 152px;
  }

  .catalog-use-cases__options button {
    min-height: 210px;
  }

  .recent-product__copy {
    min-height: 205px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

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