:root {
  color-scheme: light;
  --shop-bg: var(--kn-paper);
  --shop-fg: var(--kn-ink);
  --shop-panel: var(--kn-white);
  --shop-line: var(--kn-line);
  --shop-muted: var(--kn-muted);
  --shop-accent: var(--kn-bottle);
  --shop-accent-contrast: var(--kn-white);
  --shop-hero-bg: var(--kn-canvas);
  --shop-hero-fg: var(--kn-ink);
  --shop-display: "KN Newsreader", Georgia, serif;
  --shop-ui: "KN Archivo", Arial, sans-serif;
  --shop-mono: "KN Plex Mono", monospace;
  --shop-max: 1640px;
  --shop-header-height: 80px;
  --shop-z-header: 20;
  --shop-z-dialog: 50;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: calc(var(--shop-header-height) + 16px);
}

body.shop-body {
  margin: 0;
  background: var(--shop-bg);
  color: var(--shop-fg);
  font-family: var(--shop-ui);
  font-size: 16px;
  line-height: 1.55;
}

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

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

.shop-body h1,
.shop-body h2,
.shop-body h3,
.shop-body p,
.shop-body figure,
.shop-body dl,
.shop-body dd {
  margin: 0;
}

.shop-body h1,
.shop-body h2,
.shop-body h3 {
  text-wrap: balance;
}

.shop-body p {
  text-wrap: pretty;
}

.shop-body button,
.shop-body select,
.shop-body input,
.shop-body textarea {
  color: inherit;
  font: inherit;
}

.shop-body button,
.shop-body select {
  cursor: pointer;
}

.shop-body button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.shop-body :focus-visible {
  outline: 3px solid var(--kn-focus-light);
  outline-offset: 3px;
}

.shop-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 70;
  padding: 10px 14px;
  background: var(--kn-ink);
  color: var(--kn-white) !important;
  transform: translateY(-160%);
}

.shop-skip-link:focus {
  transform: translateY(0);
}

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

.shop-site-header {
  position: sticky;
  top: 0;
  z-index: var(--shop-z-header);
  min-height: var(--shop-header-height);
  display: grid;
  grid-template-columns: minmax(210px, 1fr) auto minmax(210px, 1fr);
  align-items: center;
  gap: 32px;
  padding: 9px clamp(18px, 3vw, 54px);
  border-bottom: 1px solid var(--shop-line);
  background: color-mix(in srgb, var(--shop-bg) 96%, transparent);
}

.shop-header-brand {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 14px;
}

.shop-header-brand__copy {
  display: grid;
  gap: 1px;
  font-family: var(--shop-mono);
  font-size: 0.67rem;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.shop-header-brand__copy span:last-child {
  color: var(--shop-muted);
}

.shop-main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.shop-main-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
}

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

.shop-header-back {
  color: var(--shop-muted) !important;
  font-size: 0.75rem;
}

.shop-cart-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.shop-cart-button span {
  min-width: 2ch;
  font-family: var(--shop-mono);
}

.shop-mobile-menu {
  display: none;
}

.shop-catalog-hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.55fr);
  align-items: end;
  gap: clamp(50px, 9vw, 160px);
  padding: clamp(72px, 9vw, 150px) clamp(18px, 6vw, 100px) clamp(54px, 7vw, 110px);
  border-bottom: 1px solid var(--shop-line);
  background: var(--shop-hero-bg);
  color: var(--shop-hero-fg);
}

.shop-kicker {
  color: var(--shop-muted);
  font-family: var(--shop-mono);
  font-size: 0.69rem;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.shop-catalog-hero h1 {
  max-width: 1050px;
  margin-top: 22px;
  font-family: var(--shop-display);
  font-size: clamp(4.3rem, 9vw, 10rem);
  font-weight: 420;
  letter-spacing: -0.045em;
  line-height: 0.82;
}

.shop-catalog-hero h1 em {
  font-weight: 320;
}

.shop-hero-note {
  max-width: 500px;
  display: grid;
  gap: 30px;
  align-self: end;
}

.shop-hero-note > p {
  font-family: var(--shop-display);
  font-size: clamp(1.45rem, 2.1vw, 2.15rem);
  line-height: 1.2;
}

.shop-hero-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid currentColor;
}

.shop-hero-facts div {
  padding: 12px 14px 0 0;
}

.shop-hero-facts span,
.shop-hero-facts strong {
  display: block;
}

.shop-hero-facts span {
  font-family: var(--shop-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.shop-hero-facts strong {
  margin-top: 4px;
  font-size: 1.4rem;
}

.shop-catalog-shell {
  max-width: var(--shop-max);
  margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 54px) clamp(80px, 10vw, 160px);
}

.shop-catalog-tools {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  padding: 34px 0;
  border-bottom: 1px solid var(--shop-line);
}

.shop-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shop-filter-group button {
  min-height: 42px;
  padding: 8px 15px;
  border: 1px solid var(--shop-line);
  border-radius: 0;
  background: transparent;
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.shop-filter-group button[aria-pressed="true"] {
  border-color: var(--shop-accent);
  background: var(--shop-accent);
  color: var(--shop-accent-contrast);
}

.shop-selects {
  display: flex;
  gap: 12px;
}

.shop-field-inline {
  display: grid;
  gap: 5px;
}

.shop-field-inline label {
  color: var(--shop-muted);
  font-family: var(--shop-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shop-field-inline select {
  min-height: 42px;
  padding: 8px 38px 8px 12px;
  border: 1px solid var(--shop-line);
  border-radius: 0;
  background: var(--shop-panel);
  font-size: 0.78rem;
}

.shop-results-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 26px;
  color: var(--shop-muted);
  font-family: var(--shop-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.shop-product-card {
  min-width: 0;
}

.shop-product-media {
  --range-bg: #f0ece4;
  --range-fg: var(--kn-ink);
  --range-accent: var(--kn-line);
  position: relative;
  min-height: 360px;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--range-fg) 16%, transparent);
  background: var(--range-bg);
  color: var(--range-fg);
}

.shop-product-media img {
  position: relative;
  z-index: 2;
  width: auto;
  height: 78%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.shop-product-index {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  font-family: var(--shop-mono);
  font-size: 0.64rem;
}

.shop-range-motif {
  position: absolute;
  inset: auto 6% 8% 6%;
  z-index: 1;
  overflow: hidden;
  color: var(--range-accent);
  font-family: var(--shop-ui);
  font-size: clamp(1.6rem, 3vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.78;
  opacity: 0.34;
  text-align: center;
  text-transform: uppercase;
}

.shop-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  max-width: 55%;
  padding: 5px 7px;
  border: 1px solid currentColor;
  background: color-mix(in srgb, var(--range-bg) 90%, transparent);
  color: var(--range-fg);
  font-family: var(--shop-mono);
  font-size: 0.58rem;
  letter-spacing: 0.03em;
  line-height: 1.25;
  text-transform: uppercase;
}

.shop-product-copy {
  padding-top: 15px;
}

.shop-product-overline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--shop-muted);
  font-family: var(--shop-mono);
  font-size: 0.61rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shop-product-copy h2 {
  margin-top: 8px;
  font-family: var(--shop-display);
  font-size: clamp(1.55rem, 2.1vw, 2.25rem);
  font-weight: 460;
  line-height: 1.02;
}

.shop-product-copy > p {
  min-height: 3em;
  margin-top: 8px;
  color: var(--shop-muted);
  font-size: 0.76rem;
}

.shop-product-buy {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--shop-line);
}

.shop-product-buy strong {
  font-family: var(--shop-mono);
  font-size: 0.82rem;
  font-weight: 500;
}

.shop-product-buy button {
  min-height: 38px;
  padding: 7px 10px;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.shop-product-buy button span {
  margin-left: 6px;
}

.shop-product-card[data-range="black"] .shop-product-media,
.shop-product-hero[data-range="black"] .shop-product-stage {
  --range-bg: #1e1d1b;
  --range-fg: #f2eee5;
  --range-accent: #c5c2bb;
}

.shop-product-card[data-range="black"] .shop-range-motif {
  inset: 18% auto 12% 7%;
  max-height: 70%;
  writing-mode: vertical-rl;
  letter-spacing: 0.02em;
  opacity: 0.28;
}

.shop-product-card[data-range="elements"] .shop-product-media,
.shop-product-hero[data-range="elements"] .shop-product-stage,
.shop-product-card[data-range="beton"] .shop-product-media,
.shop-product-hero[data-range="beton"] .shop-product-stage {
  --range-bg: #f7f5f0;
  --range-fg: #252421;
  --range-accent: #ad8d5c;
}

.shop-product-card[data-range="pinot"] .shop-product-media,
.shop-product-hero[data-range="pinot"] .shop-product-stage {
  --range-bg: #efece5;
  --range-fg: #1b1b1a;
  --range-accent: #425a72;
}

.shop-product-card[data-range="pinot"] .shop-product-media::before,
.shop-product-hero[data-range="pinot"] .shop-product-stage::before {
  content: "";
  position: absolute;
  inset: 24% 0;
  border-top: 1px solid #343331;
  border-bottom: 1px solid #343331;
  box-shadow: inset 0 46px #e2ded6, inset 0 -46px #e2ded6;
}

.shop-product-card[data-range="steward"] .shop-product-media,
.shop-product-hero[data-range="steward"] .shop-product-stage {
  --range-bg: #151515;
  --range-fg: #f8f2e7;
  --range-accent: #b58b50;
}

.shop-product-card[data-range="steward"] .shop-product-media::before,
.shop-product-hero[data-range="steward"] .shop-product-stage::before {
  content: "";
  position: absolute;
  width: 42%;
  aspect-ratio: 1;
  border-right: 2px solid var(--range-accent);
  border-bottom: 2px solid var(--range-accent);
  transform: rotate(45deg);
}

.shop-product-card[data-range="playful"] .shop-product-media,
.shop-product-hero[data-range="playful"] .shop-product-stage {
  --range-bg: #f0c928;
  --range-fg: #191815;
  --range-accent: #b0274c;
}

.shop-product-card[data-range="dessert"] .shop-product-media,
.shop-product-hero[data-range="dessert"] .shop-product-stage {
  --range-bg: #e7d9b8;
  --range-fg: #231f18;
  --range-accent: #8c632d;
}

.shop-product-card[data-range="biscuit"] .shop-product-media,
.shop-product-hero[data-range="biscuit"] .shop-product-stage {
  --range-bg: #f2e04f;
  --range-fg: #171615;
  --range-accent: #fffdf8;
}

.shop-product-card[data-range="magnum"] .shop-product-media,
.shop-product-hero[data-range="magnum"] .shop-product-stage {
  --range-bg: #d7ccbc;
  --range-fg: #201e1a;
  --range-accent: #7d674d;
}

.shop-empty-state {
  padding: 80px 20px;
  text-align: center;
}

.shop-empty-state h2 {
  font-family: var(--shop-display);
  font-size: 2.4rem;
  font-weight: 450;
}

.shop-empty-state p {
  margin-top: 12px;
  color: var(--shop-muted);
}

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

.shop-promise-strip div {
  min-height: 150px;
  padding: 28px clamp(18px, 3vw, 54px);
  border-right: 1px solid var(--shop-line);
}

.shop-promise-strip div:last-child {
  border-right: 0;
}

.shop-promise-strip span,
.shop-promise-strip strong {
  display: block;
}

.shop-promise-strip span {
  color: var(--shop-muted);
  font-family: var(--shop-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.shop-promise-strip strong {
  max-width: 250px;
  margin-top: 12px;
  font-family: var(--shop-display);
  font-size: 1.5rem;
  font-weight: 450;
  line-height: 1.08;
}

.shop-site-footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.7fr);
  gap: 30px;
  padding: 56px clamp(18px, 4vw, 70px) 30px;
  background: var(--kn-ink);
  color: var(--kn-paper);
}

.shop-footer-logo {
  width: 100px;
  height: 100px;
  color: var(--kn-paper);
}

.shop-site-footer h2,
.shop-site-footer strong {
  font-family: var(--shop-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shop-site-footer p {
  margin-top: 10px;
  color: #c8c1b7;
  font-size: 0.78rem;
}

.shop-footer-legal {
  grid-column: 1 / -1;
  padding-top: 22px;
  border-top: 1px solid #45423d;
  font-family: var(--shop-mono);
  font-size: 0.62rem !important;
  text-transform: uppercase;
}

.shop-cart-dialog {
  width: min(480px, 100%);
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0 0 0 auto;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: var(--kn-white);
  color: var(--kn-ink);
}

.shop-cart-dialog::backdrop {
  background: rgb(16 16 14 / 0.7);
}

.shop-cart-panel {
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.shop-cart-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 24px;
  border-bottom: 1px solid var(--kn-line);
}

.shop-cart-head p {
  color: var(--kn-muted);
  font-family: var(--shop-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
}

.shop-cart-head h2 {
  margin-top: 5px;
  font-family: var(--shop-display);
  font-size: 2.3rem;
  font-weight: 450;
}

.shop-cart-head h2 span {
  font-family: var(--shop-mono);
  font-size: 0.72rem;
}

.shop-cart-head button,
.shop-cart-remove {
  min-height: 38px;
  border: 0;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  background: transparent;
  font-size: 0.69rem;
  font-weight: 650;
  text-transform: uppercase;
}

.shop-cart-lines {
  min-height: 0;
  padding: 0 24px;
  overflow-y: auto;
}

.shop-cart-line {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid var(--kn-line);
}

.shop-cart-line > img {
  width: 72px;
  height: 96px;
  object-fit: contain;
  background: #ece8df;
  mix-blend-mode: multiply;
}

.shop-cart-line__copy > p {
  color: var(--kn-muted);
  font-family: var(--shop-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
}

.shop-cart-line h3 {
  margin-top: 5px;
  font-family: var(--shop-display);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.05;
}

.shop-cart-line h3 span {
  font-family: var(--shop-mono);
  font-size: 0.66rem;
}

.shop-cart-line > strong {
  font-family: var(--shop-mono);
  font-size: 0.69rem;
  white-space: nowrap;
}

.shop-cart-line__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.shop-stepper {
  height: 34px;
  display: grid;
  grid-template-columns: 32px 32px 32px;
  border: 1px solid var(--kn-line);
}

.shop-stepper button,
.shop-stepper output {
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  font-family: var(--shop-mono);
  font-size: 0.72rem;
}

.shop-stepper output {
  border-right: 1px solid var(--kn-line);
  border-left: 1px solid var(--kn-line);
}

.shop-cart-remove {
  min-height: 32px;
  color: var(--kn-muted);
  font-size: 0.58rem;
}

.shop-cart-summary {
  padding: 22px 24px 24px;
  border-top: 1px solid var(--kn-line);
  background: var(--kn-paper);
}

.shop-cart-note {
  color: var(--kn-muted);
  font-size: 0.68rem;
}

.shop-cart-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin: 18px 0;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.shop-cart-summary strong {
  font-family: var(--shop-mono);
}

.shop-primary-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--shop-accent);
  border-radius: 0;
  background: var(--shop-accent);
  color: var(--shop-accent-contrast) !important;
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

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

.shop-cart-empty {
  min-height: 100%;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 50px 30px;
  text-align: center;
}

.shop-cart-empty .brand-mark {
  width: 72px;
  height: 72px;
  color: var(--kn-line);
}

.shop-cart-empty h3 {
  max-width: 300px;
  margin-top: 22px;
  font-family: var(--shop-display);
  font-size: 2rem;
  font-weight: 450;
}

.shop-cart-empty p {
  max-width: 310px;
  margin-top: 10px;
  color: var(--kn-muted);
  font-size: 0.78rem;
}

.shop-breadcrumbs {
  max-width: var(--shop-max);
  display: flex;
  gap: 9px;
  margin: 0 auto;
  padding: 20px clamp(18px, 3vw, 54px);
  color: var(--shop-muted);
  font-family: var(--shop-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
}

.shop-breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.shop-product-hero {
  --range-bg: var(--kn-canvas);
  --range-fg: var(--kn-ink);
  --range-accent: var(--kn-foil);
  max-width: var(--shop-max);
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  margin: 0 auto;
  border: 1px solid var(--shop-line);
}

.shop-product-stage {
  position: relative;
  min-height: 660px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--range-bg);
  color: var(--range-fg);
}

.shop-product-stage img {
  position: relative;
  z-index: 2;
  width: auto;
  height: min(78%, 650px);
  object-fit: contain;
  mix-blend-mode: multiply;
}

.shop-product-stage__word {
  position: absolute;
  inset: auto 4% 7%;
  color: var(--range-accent);
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.7;
  opacity: 0.32;
  text-align: center;
  text-transform: uppercase;
}

.shop-product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 7vw, 110px);
  background: var(--shop-panel);
}

.shop-product-info h1 {
  margin-top: 18px;
  font-family: var(--shop-display);
  font-size: clamp(3.8rem, 6vw, 7.5rem);
  font-weight: 430;
  letter-spacing: -0.045em;
  line-height: 0.84;
}

.shop-product-info h1 span {
  display: block;
  margin-top: 18px;
  font-family: var(--shop-mono);
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}

.shop-product-lead {
  max-width: 580px;
  margin-top: 30px !important;
  font-family: var(--shop-display);
  font-size: clamp(1.35rem, 2.1vw, 2rem);
  line-height: 1.2;
}

.shop-product-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 32px;
}

.shop-product-price strong {
  font-family: var(--shop-mono);
  font-size: 1.25rem;
}

.shop-product-price span {
  color: var(--shop-muted);
  font-size: 0.67rem;
}

.shop-product-order {
  display: grid;
  grid-template-columns: auto 82px minmax(190px, 1fr);
  align-items: end;
  gap: 10px;
  margin-top: 24px;
}

.shop-product-order label {
  align-self: center;
  color: var(--shop-muted);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.shop-product-order select {
  min-height: 52px;
  padding: 10px;
  border: 1px solid var(--shop-line);
  border-radius: 0;
  background: var(--shop-bg);
}

.shop-product-order button {
  width: 100%;
}

.shop-availability {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px !important;
  color: var(--shop-muted);
  font-size: 0.68rem;
}

.shop-availability span {
  width: 7px;
  height: 7px;
  background: var(--kn-foil);
}

.shop-technical-strip {
  max-width: var(--shop-max);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  border-right: 1px solid var(--shop-line);
  border-left: 1px solid var(--shop-line);
}

.shop-technical-strip div {
  min-height: 110px;
  padding: 20px;
  border-right: 1px solid var(--shop-line);
  border-bottom: 1px solid var(--shop-line);
}

.shop-technical-strip div:nth-child(4n) {
  border-right: 0;
}

.shop-technical-strip dt {
  color: var(--shop-muted);
  font-family: var(--shop-mono);
  font-size: 0.61rem;
  text-transform: uppercase;
}

.shop-technical-strip dd {
  margin-top: 9px;
  font-family: var(--shop-mono);
  font-size: 0.78rem;
  line-height: 1.35;
}

.shop-product-story {
  max-width: var(--shop-max);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 12vw, 200px);
  margin: 0 auto;
  padding: clamp(90px, 12vw, 180px) clamp(18px, 6vw, 100px);
}

.shop-product-story h2 {
  max-width: 600px;
  margin-top: 18px;
  font-family: var(--shop-display);
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 420;
  line-height: 0.92;
}

.shop-product-story__lead {
  font-family: var(--shop-display);
  font-size: clamp(1.55rem, 2.5vw, 2.55rem);
  line-height: 1.18;
}

.shop-product-story dl {
  margin-top: 36px;
  border-top: 1px solid var(--shop-line);
}

.shop-product-story dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--shop-line);
}

.shop-product-story dt {
  color: var(--shop-muted);
  font-family: var(--shop-mono);
  font-size: 0.63rem;
  text-transform: uppercase;
}

.shop-product-story dd {
  font-size: 0.8rem;
}

.shop-product-story a {
  display: inline-block;
  margin-top: 28px;
  border-bottom: 1px solid currentColor;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.shop-related {
  max-width: var(--shop-max);
  margin: 0 auto;
  padding: 0 clamp(18px, 3vw, 54px) clamp(90px, 10vw, 160px);
}

.shop-related > header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  padding: 32px 0;
  border-top: 1px solid var(--shop-line);
}

.shop-related > header h2 {
  font-family: var(--shop-display);
  font-size: clamp(2.6rem, 4vw, 4.8rem);
  font-weight: 430;
}

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

.shop-not-found {
  min-height: 70vh;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 20px;
  padding: 50px 20px;
  text-align: center;
}

.shop-not-found h1 {
  font-family: var(--shop-display);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 430;
}

.shop-checkout-layout {
  max-width: 1320px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: clamp(50px, 8vw, 120px);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 120px) clamp(18px, 5vw, 80px);
}

.shop-checkout-intro h1 {
  margin-top: 16px;
  font-family: var(--shop-display);
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 430;
  letter-spacing: -0.04em;
  line-height: 0.86;
}

.shop-checkout-intro > p:last-child {
  max-width: 620px;
  margin-top: 22px;
  color: var(--shop-muted);
}

.shop-checkout-form {
  margin-top: 55px;
}

.shop-checkout-form fieldset {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
  padding: 26px 0 40px;
  border: 0;
  border-top: 1px solid var(--shop-line);
}

.shop-checkout-form legend {
  padding: 0 18px 0 0;
  font-family: var(--shop-mono);
  font-size: 0.68rem;
  font-weight: 500;
  text-transform: uppercase;
}

.shop-field {
  display: grid;
  gap: 7px;
}

.shop-field--wide {
  grid-column: 1 / -1;
}

.shop-field label {
  font-size: 0.7rem;
  font-weight: 650;
}

.shop-field input,
.shop-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 12px;
  border: 1px solid var(--shop-line);
  border-radius: 0;
  background: var(--shop-panel);
}

.shop-field textarea {
  min-height: 110px;
  resize: vertical;
}

.shop-choice {
  position: relative;
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--shop-line);
  background: var(--shop-panel);
}

.shop-choice input {
  width: 20px;
  height: 20px;
  accent-color: var(--shop-accent);
}

.shop-choice span {
  display: grid;
}

.shop-choice small {
  color: var(--shop-muted);
}

.shop-choice strong {
  font-family: var(--shop-mono);
  font-size: 0.74rem;
}

.shop-checkout-form > .shop-primary-button {
  width: min(100%, 360px);
}

.shop-checkout-summary {
  position: sticky;
  top: calc(var(--shop-header-height) + 30px);
  align-self: start;
  padding: 30px;
  border: 1px solid var(--shop-line);
  background: var(--shop-panel);
}

.shop-checkout-summary h2,
.shop-checkout-feedback h2 {
  font-family: var(--shop-display);
  font-size: 2.5rem;
  font-weight: 440;
}

.shop-checkout-lines {
  margin-top: 24px;
  border-top: 1px solid var(--shop-line);
}

.shop-checkout-lines div,
.shop-checkout-totals div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--shop-line);
  font-size: 0.75rem;
}

.shop-checkout-lines strong,
.shop-checkout-totals dd {
  font-family: var(--shop-mono);
  font-size: 0.68rem;
  white-space: nowrap;
}

.shop-checkout-totals {
  margin-top: 22px !important;
}

.shop-checkout-totals div:last-child {
  font-weight: 750;
}

.shop-checkout-feedback {
  margin-top: 50px;
  padding: 34px;
  border: 1px solid var(--shop-line);
  background: var(--shop-panel);
}

.shop-checkout-feedback p:not(.shop-kicker) {
  max-width: 650px;
  margin: 18px 0 28px;
}

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

  .shop-main-nav,
  .shop-header-back {
    display: none;
  }

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

  .shop-product-hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  }

  .shop-product-info {
    padding: 50px;
  }
}

@media (max-width: 860px) {
  .shop-catalog-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 60px;
  }

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

  .shop-selects {
    justify-content: stretch;
  }

  .shop-field-inline {
    flex: 1;
  }

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

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

  .shop-promise-strip div:nth-child(2) {
    border-right: 0;
  }

  .shop-promise-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--shop-line);
  }

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

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

  .shop-product-stage {
    min-height: 600px;
  }

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

  .shop-technical-strip div:nth-child(2n) {
    border-right: 0;
  }

  .shop-product-story,
  .shop-checkout-layout {
    grid-template-columns: 1fr;
  }

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

  .shop-related-grid article:last-child {
    display: none;
  }

  .shop-checkout-summary {
    position: static;
    grid-row: 1;
  }
}

@media (max-width: 620px) {
  :root {
    --shop-header-height: 64px;
  }

  .shop-site-header {
    gap: 12px;
    padding: 7px 14px;
  }

  .shop-header-brand__copy {
    display: none;
  }

  .shop-header-actions {
    gap: 8px;
  }

  .shop-cart-button {
    min-height: 40px;
    padding: 0 10px;
  }

  .shop-catalog-hero {
    padding-top: 72px;
  }

  .shop-catalog-hero h1 {
    font-size: clamp(3.5rem, 19vw, 5.6rem);
  }

  .shop-hero-note > p {
    font-size: 1.4rem;
  }

  .shop-filter-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-filter-group button {
    width: 100%;
  }

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

  .shop-field-inline select {
    width: 100%;
    padding-right: 10px;
  }

  .shop-product-grid,
  .shop-related-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .shop-product-media {
    min-height: 420px;
  }

  .shop-product-copy h2 {
    font-size: 2rem;
  }

  .shop-product-copy > p {
    min-height: 0;
  }

  .shop-promise-strip {
    grid-template-columns: 1fr;
  }

  .shop-promise-strip div {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid var(--shop-line);
  }

  .shop-site-footer {
    grid-template-columns: 1fr;
  }

  .shop-footer-legal {
    grid-column: auto;
  }

  .shop-cart-dialog {
    width: 100%;
  }

  .shop-cart-head,
  .shop-cart-lines,
  .shop-cart-summary {
    padding-right: 16px;
    padding-left: 16px;
  }

  .shop-cart-line {
    grid-template-columns: 62px 1fr;
  }

  .shop-cart-line > img {
    width: 62px;
    height: 84px;
  }

  .shop-cart-line > strong {
    grid-column: 2;
  }

  .shop-product-hero {
    border-right: 0;
    border-left: 0;
  }

  .shop-product-stage {
    min-height: 500px;
  }

  .shop-product-info {
    padding: 48px 18px;
  }

  .shop-product-info h1 {
    font-size: clamp(3.1rem, 16vw, 5rem);
  }

  .shop-product-order {
    grid-template-columns: 1fr 80px;
  }

  .shop-product-order .shop-primary-button {
    grid-column: 1 / -1;
  }

  .shop-technical-strip {
    border-right: 0;
    border-left: 0;
  }

  .shop-technical-strip div {
    min-height: 94px;
    padding: 16px;
  }

  .shop-product-story {
    gap: 45px;
  }

  .shop-product-story dl div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .shop-related > header {
    align-items: start;
    flex-direction: column;
  }

  .shop-related-grid article:last-child {
    display: block;
  }

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

  .shop-field--wide {
    grid-column: auto;
  }
}

@media (prefers-contrast: more) {
  :root {
    --shop-line: #55514a;
  }
}
