:root {
  --surface-deep: #0C0F12;         
  --surface-dark: #15191D;         
  --surface-panel: #1B2026;        
  --surface-panel-hover: #22282F;  
  --surface-light: #FFFFFF;
  --surface-light-alt: #F2F3F5;
  --surface-footer: #15191D;
  --surface-footer-deep: #0C0F12;
  --accent: #DB242A;            
  --accent-hover: #C12025;      
  --accent-deep: #7B1418;       
  --accent-on-light: #AF1D22;   
  --accent-on-dark: #E76A6E;    
  --text-on-dark: #FFFFFF;
  --text-on-dark-muted: #C7CFD8;
  --text-on-light: #15191D;
  --text-on-light-muted: #3C444D;
  --text-on-accent: #FFFFFF;
  --border-subtle: #656F7C;
  --border-panel: #6C7683;
  --border-light: #848C94;
  --field-border: #6C7683;
  --border-strong: #8A93A0;
  --focus-on-dark: #FFFFFF;
  --focus-on-light: #15191D;
  --focus-width: 3px;
  --focus-offset: 2px;
  --glow-accent: rgba(219, 36, 42, .62);
  --glow-accent-fade: rgba(219, 36, 42, 0);
  --glow-ground: rgba(12, 15, 18, 0);
  --gradient-charge: linear-gradient(90deg, var(--accent-deep) 0%, var(--accent) 58%, var(--accent-on-dark) 100%);
  --gradient-rail: linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 58%, var(--surface-panel-hover) 100%);
  --gradient-footer: linear-gradient(180deg, var(--surface-footer) 0%, var(--surface-footer-deep) 100%);
  --font-body: "Inter Tight", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-size-base: 1.0625rem;
  --font-size-small: .875rem;      
  --font-size-ui: .9375rem;        
  --font-size-eyebrow: .8125rem;   
  --font-size-lead: clamp(1.0625rem, 1rem + .3vw, 1.1875rem);
  --font-size-h1: clamp(1.6rem, 6.6vw, 3.4rem);
  --font-size-h1-code: clamp(2.25rem, 12vw, 4.25rem);  
  --font-size-h2: clamp(1.35rem, 5.2vw, 2.15rem);
  --font-size-h3: clamp(1.15rem, 3.8vw, 1.4rem);
  --font-size-stat: clamp(1.3rem, 5.4vw, 1.75rem);     
  --line-body: 1.6;
  --line-heading: 1.12;
  --line-tight: 1.05;
  --weight-regular: 400;
  --weight-semi: 600;
  --weight-bold: 700;
  --tracking-eyebrow: .15em;
  --tracking-heading: -.018em;
  --tracking-h1: -.028em;
  --tracking-code: -.035em;   
  --space-3xs: .25rem;
  --space-2xs: .4rem;
  --space-xs: .6rem;
  --space-s: .85rem;
  --space-m: 1.15rem;
  --space-l: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 2.75rem;
  --flow: 1.15rem;
  --section-pad: clamp(2rem, 5vw, 3.5rem);
  --gutter: clamp(1rem, 4.5vw, 2.75rem);
  --radius-control: 2px;
  --radius-panel: 0;
  --container: 76rem;
  --container-narrow: 52rem;
  --measure: 62ch;
  --measure-lead: 46ch;
  --tap: 44px;
  --tap-nav: 48px;
  --tap-tile: 60px;
  --bp-s: 34em;
  --bp-m: 44em;
  --bp-l: 52em;
  --bp-xl: 64em;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; }
h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul[class], ol[class] { margin: 0; padding: 0; list-style: none; }
img, svg { max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
@font-face {
  font-family: "Inter Tight";
  src: url("/catalog/view/theme/tctk/assets/fonts/InterTight-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}
body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-body);
  font-weight: var(--weight-regular);
  color: var(--text-on-dark);
  background: var(--surface-deep);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 {
  line-height: var(--line-heading);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-heading);
  overflow-wrap: break-word;
  hyphens: auto;
}
h1 { font-size: var(--font-size-h1); letter-spacing: var(--tracking-h1); }
h2 { font-size: var(--font-size-h2); }
h3 { font-size: var(--font-size-h3); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--font-size-eyebrow);
  font-weight: var(--weight-semi);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
}
.lead { font-size: var(--font-size-lead); max-width: var(--measure-lead); color: var(--text-on-dark-muted); }
a { color: inherit; }
.page-body a, .prose a {
  color: var(--text-on-dark);
  text-decoration-color: var(--accent-on-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.page-body a:hover, .prose a:hover { text-decoration-color: var(--text-on-dark); }
.flow > * + * { margin-top: var(--flow); }
.flow > * + h2 { margin-top: var(--space-xl); }
.flow > * + h3 { margin-top: var(--space-l); }
.wrap { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--container-narrow); }
main { display: block; }
.page-body { padding-block: var(--section-pad); }
.page-body > p, .page-body > ul, .page-body > ol { max-width: var(--measure); }
.page-body p, .page-body li { color: var(--text-on-dark-muted); }
.page-body h2, .page-body h3 { color: var(--text-on-dark); }
.page-body ul, .page-body ol { padding-left: 1.25em; }
.page-body li + li { margin-top: var(--space-3xs); }
.section { padding-block: var(--section-pad); }
.section--deep { background: var(--surface-deep); color: var(--text-on-dark); }
.section--dark { background: var(--surface-dark); color: var(--text-on-dark); }
.section--panel { background: var(--surface-panel); color: var(--text-on-dark); }
.section--light { background: var(--surface-light); color: var(--text-on-light); }
.section--light-alt { background: var(--surface-light-alt); color: var(--text-on-light); }
.section--accent { background: var(--accent); color: var(--text-on-accent); }
.section--light .lead, .section--light-alt .lead,
.section--light .eyebrow, .section--light-alt .eyebrow { color: var(--text-on-light-muted); }
.charge-line { height: 3px; background: var(--gradient-charge); }
.rail { padding-left: var(--space-m); border-left: 4px solid var(--accent); border-image: var(--gradient-rail) 1; }
.bolt {
  display: inline-block;
  flex: 0 0 auto;
  width: .62em;
  height: 1em;
  vertical-align: -.08em;
  background-color: currentColor;
  -webkit-mask: url("/catalog/view/theme/tctk/assets/img/bolt.svg") no-repeat center / contain;
  mask: url("/catalog/view/theme/tctk/assets/img/bolt.svg") no-repeat center / contain;
}
.mark { display: flex; align-items: center; gap: var(--space-s); margin-bottom: var(--space-l); color: var(--accent-on-dark); }
.mark .bolt { font-size: 1.5rem; }
.mark::after { content: ""; flex: 1 1 auto; height: 1px; background: var(--border-subtle); }
.section--light .mark, .section--light-alt .mark { color: var(--accent); }
.section--light .mark::after, .section--light-alt .mark::after { background: var(--border-light); }
.hero { position: relative; background: var(--surface-dark); overflow: hidden; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(85% 62% at 108% -8%, var(--glow-accent), var(--glow-accent-fade) 62%),
    linear-gradient(180deg, var(--glow-ground) 40%, var(--surface-deep) 100%);
}
.hero__in { position: relative; padding-block: clamp(1.75rem, 5vw, 3.5rem); }
.hero h1 { color: var(--text-on-dark); }
.hero .lead { margin-top: var(--space-m); }
.hero__mark { display: block; margin-bottom: var(--space-s); font-size: 1.6rem; line-height: 1; color: var(--accent-on-dark); }
.hero__mark--tm { color: var(--text-on-dark-muted); }
.hero__mark--tm .tm { display: block; width: 72px; height: 72px; }
@media (min-width: 34em) { .hero__mark--tm .tm { width: 96px; height: 96px; } }
.hero--code h1 {
  font-size: var(--font-size-h1-code);
  letter-spacing: var(--tracking-code);
  line-height: var(--line-tight);
  overflow-wrap: anywhere;
  hyphens: none;
}
.skip-link { position: absolute; left: -100vw; top: 0; z-index: 30; padding: var(--space-s) var(--space-m); background: var(--surface-light); color: var(--text-on-light); font-weight: var(--weight-semi); text-decoration: none; }
.skip-link:focus { left: 0; }
:where(a, button, summary, input, select, textarea, [tabindex]):focus-visible {
  outline: var(--focus-width) solid var(--focus-on-dark);
  outline-offset: var(--focus-offset);
}
.section--light :where(a, button, summary, input, select, textarea, [tabindex]):focus-visible,
.section--light-alt :where(a, button, summary, input, select, textarea, [tabindex]):focus-visible {
  outline-color: var(--focus-on-light);
}
.site-header__nav a:focus-visible { outline-offset: calc(var(--focus-offset) * -1.5); }
.site-header { position: relative; }
.site-header::after { content: ""; display: block; height: 3px; background: var(--gradient-charge); }
.site-header__top { background: var(--surface-dark); }
.site-header__bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--space-2xs) var(--space-m); min-height: 60px; padding-block: var(--space-xs); }
.site-header__logo { display: inline-flex; align-items: center; min-height: var(--tap); padding-inline: var(--space-3xs); border-radius: var(--radius-control); }
.site-header__logo img { display: block; height: 32px; width: auto; }
.site-header__nav { background: var(--accent); }
.site-header__nav ul { display: flex; flex-wrap: wrap; margin: 0; padding: 0; list-style: none; }
.site-header__nav a {
  display: flex;
  align-items: center;
  min-height: var(--tap-nav);
  padding: 0 var(--space-m);
  color: var(--text-on-accent);
  text-decoration: none;
  font-weight: var(--weight-semi);
  font-size: var(--font-size-ui);
  border-bottom: 3px solid transparent;
}
.site-header__nav a:hover, .site-header__nav a[aria-current] { background: var(--accent-hover); border-bottom-color: var(--text-on-accent); }
@media (min-width: 48em) { .site-header__logo img { height: 40px; } }
@media (max-width: 33.99em) {
  .site-header__nav ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-header__nav a { justify-content: center; padding-inline: var(--space-xs); text-align: center; overflow-wrap: anywhere; }
}
.langbar { background: var(--surface-deep); font-size: var(--font-size-ui); }
.langbar__bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 0 var(--space-m); min-height: var(--tap); }
.langbar ul { list-style: none; margin: 0; padding: 0; }
.langbar__quick { display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-m); }
.langbar__current { color: var(--text-on-dark-muted); font-weight: var(--weight-semi); }
.langbar__quick a { display: inline-flex; align-items: center; min-height: var(--tap); color: var(--text-on-dark); text-decoration-color: var(--accent-on-dark); text-underline-offset: 3px; }
.langbar__all { position: relative; }
.langbar__all > summary { list-style: none; cursor: pointer; display: flex; align-items: center; gap: var(--space-2xs); min-height: var(--tap); padding-inline: var(--space-xs); color: var(--text-on-dark); font-weight: var(--weight-semi); }
.langbar__all > summary::-webkit-details-marker { display: none; }
.langbar__all > summary::after { content: ""; width: .42em; height: .42em; border-right: 2px solid var(--accent-on-dark); border-bottom: 2px solid var(--accent-on-dark); transform: rotate(45deg) translate(-2px, -2px); }
.langbar__all[open] > summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.langbar__menu { position: absolute; right: 0; top: 100%; z-index: 20; min-width: 12rem; max-height: 60vh; overflow: auto; padding: var(--space-3xs); background: var(--surface-panel); border: 1px solid var(--border-panel); }
.langbar__menu a { display: flex; align-items: center; min-height: var(--tap); padding: var(--space-2xs) var(--space-s); color: var(--text-on-dark); text-decoration: none; }
.langbar__menu a:hover { background: var(--surface-panel-hover); text-decoration: underline; }
.langbar__suggest { flex: 1 1 100%; margin: 0; padding-block: var(--space-2xs); font-weight: var(--weight-semi); color: var(--text-on-dark); }
.langbar__suggest[hidden] { display: none; }
.langbar__suggest a { text-decoration-color: var(--accent-on-dark); text-underline-offset: 3px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  min-height: 52px;
  padding: var(--space-xs) var(--space-l);
  border: 0;
  border-radius: var(--radius-control);
  cursor: pointer;
  text-decoration: none;
  font-weight: var(--weight-bold);
  background: var(--accent);
  color: var(--text-on-accent);
}
.btn:hover { background: var(--accent-hover); }
.btn--ghost { background: transparent; color: var(--text-on-dark); border: 2px solid var(--text-on-dark); }
.btn--ghost:hover { background: var(--text-on-dark); color: var(--text-on-light); }
.site-footer { background: var(--gradient-footer); color: var(--text-on-dark); padding-block: var(--space-2xl); font-size: var(--font-size-ui); border-top: 3px solid transparent; border-image: var(--gradient-charge) 1; }
.site-footer > * { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.site-footer a { color: var(--text-on-dark); text-decoration-color: var(--accent-on-dark); text-underline-offset: 3px; }
.site-footer p { color: var(--text-on-dark-muted); }
.site-footer p + p { margin-top: var(--space-3xs); }
.site-footer__nav ul { list-style: none; margin: 0 0 var(--space-l); padding: 0; display: grid; }
.site-footer__nav a { display: inline-flex; align-items: center; min-height: var(--tap); text-decoration: none; }
.site-footer__nav a:hover { text-decoration: underline; }
@media (min-width: 40em) { .site-footer__nav ul { grid-template-columns: 1fr 1fr; column-gap: var(--space-xl); } }
@media (prefers-reduced-motion: no-preference) {
  .site-header__nav a, .langbar__menu a, .btn { transition: background-color .14s linear, border-color .14s linear; }
}
@media (prefers-contrast: more) {
  :root {
    --text-on-dark-muted: var(--text-on-dark);
    --border-subtle: var(--border-strong);
    --border-panel: var(--border-strong);
  }
}
@media print {
  body, .hero, .site-header__top, .site-footer { background: var(--surface-light); color: var(--text-on-light); }
  .page-body p, .page-body li, .site-footer p,
  .page-body h2, .page-body h3,
  .hero h1, .page-body a, .site-footer a { color: var(--text-on-light); }
  .hero::before, .site-header::after, .charge-line, .langbar,
  .site-header__nav, .site-header__shops { display: none; }
  .rail { border-image: none; border-left-color: var(--text-on-light); }
  .btn--ghost { border-color: var(--text-on-light); }
}
.product-facts dt,
.product-specs dt,
.lookup .lookup__form label {
  display: block;
  font-size: var(--font-size-eyebrow);
  font-weight: var(--weight-semi);
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
}
.product-id { padding-top: var(--space-m); padding-bottom: var(--space-xl); }
.product-facts {
  display: grid;
  grid-template-columns: minmax(6rem, auto) 1fr;
  gap: 1px;
  margin: 0;
  background: var(--border-subtle);
  border: 1px solid var(--border-subtle);
}
.product-facts dt,
.product-facts dd {
  display: flex;
  align-items: center;
  margin: 0;
  padding: var(--space-s);
  background: var(--surface-dark);
}
.product-facts dt { color: var(--text-on-dark-muted); }
.product-facts dd {
  font-size: clamp(1.15rem, 5vw, 1.5rem);
  font-weight: var(--weight-bold);
  line-height: var(--line-tight);
  letter-spacing: var(--tracking-code);
  font-variant-numeric: tabular-nums;
  overflow-wrap: anywhere;
  color: var(--text-on-dark);
}
.product-facts dd a {
  color: var(--text-on-dark);
  text-decoration-color: var(--accent-on-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.product-facts dd a:hover { text-decoration-color: var(--text-on-dark); }
.product-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 0;
  background: var(--border-subtle);
  border-block: 1px solid var(--border-subtle);
}
.product-specs > div { padding: var(--space-m) var(--space-s); background: var(--surface-deep); }
.product-specs dt { color: var(--text-on-dark-muted); }
.product-specs dd {
  margin: var(--space-3xs) 0 0;
  font-size: var(--font-size-stat);
  font-weight: var(--weight-bold);
  line-height: var(--line-tight);
  letter-spacing: var(--tracking-heading);
  font-variant-numeric: tabular-nums;
  overflow-wrap: break-word;
  color: var(--text-on-dark);
}
.product-specs__unit {
  margin-left: .15em;
  font-size: .58em;
  font-weight: var(--weight-semi);
  letter-spacing: 0;
  color: var(--text-on-dark-muted);
}
@media (min-width: 44em) {
  .product-specs { grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr)); }
}
.product-block { padding-block: var(--space-xl); }
.product-note {
  margin: 0;
  padding: var(--space-s) var(--space-m);
  background: var(--surface-panel);
  border-left: 3px solid var(--accent);
  font-size: var(--font-size-ui);
  color: var(--text-on-dark);
}
.lookup .lookup__form button { box-shadow: 0 0 0 1px var(--text-on-accent); }
.product-documents {
  display: grid;
  gap: 1px;
  background: var(--border-panel);
  border: 1px solid var(--border-panel);
}
.product-documents li { background: var(--surface-panel); }
.product-documents a {
  display: flex;
  align-items: center;
  gap: var(--space-s);
  min-height: var(--tap-tile);
  padding: var(--space-s) var(--space-m);
  font-weight: var(--weight-semi);
  color: var(--text-on-dark);
  text-decoration: none;
}
.product-documents a:hover {
  background: var(--surface-panel-hover);
  text-decoration: underline;
  text-decoration-color: var(--accent-on-dark);
  text-underline-offset: 3px;
}
.lookup {
  margin-top: var(--space-xl);
  padding: var(--space-l);
  background: linear-gradient(135deg, var(--accent-deep) 0%, var(--surface-dark) 58%);
}
.lookup h2 { color: var(--text-on-dark); }
.lookup .lookup__form { display: grid; gap: var(--space-s); margin-top: var(--space-l); }
.lookup .lookup__form label { color: var(--text-on-dark); }
.lookup .lookup__form input {
  width: 100%;
  max-width: none;
  min-height: var(--tap-tile);
  padding: var(--space-s) var(--space-m);
  font-size: var(--font-size-lead);
  font-weight: var(--weight-semi);
  font-variant-numeric: tabular-nums;
  background: var(--surface-light);
  color: var(--text-on-light);
  border: 1px solid var(--field-border);
  border-radius: var(--radius-control);
}
.lookup .lookup__form button { min-height: var(--tap-tile); }
@media (min-width: 38em) {
  .lookup .lookup__form { grid-template-columns: 1fr auto; align-items: start; }
  .lookup .lookup__form label { grid-column: 1 / -1; }
}
@media print {
  .product-facts dt,
  .product-facts dd,
  .product-specs > div,
  .product-documents li,
  .product-note { background: var(--surface-light); color: var(--text-on-light); }
  .product-facts,
  .product-specs,
  .product-documents { background: var(--text-on-light); border-color: var(--text-on-light); }
  .product-facts dt,
  .product-specs dt,
  .product-specs__unit,
  .product-facts dd a,
  .product-documents a { color: var(--text-on-light); }
  .lookup,
  .shops { display: none; }
}
.page-body--intro { padding-bottom: 0; }
.shops__list {
  display: grid;
  gap: var(--space-xs);
  margin-top: var(--space-l);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 8.5rem), 1fr));
}
@media (min-width: 34em) { .shops__list { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 52em) { .shops__list { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.shops__list a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-3xs);
  min-height: var(--tap-tile);
  height: 100%;
  padding: var(--space-xs) var(--space-s);
  background: var(--surface-panel);
  border: 1px solid var(--border-panel);
  border-left: 3px solid var(--accent);
  color: var(--text-on-dark);
  font-weight: var(--weight-semi);
  line-height: 1.2;
  text-decoration: none;
  overflow-wrap: break-word;
  hyphens: auto;
}
.shops__list a:hover { background: var(--surface-panel-hover); border-left-color: var(--accent-on-dark); }
.shops__meta {
  font-size: var(--font-size-eyebrow);
  font-weight: var(--weight-regular);
  color: var(--text-on-dark-muted);
  overflow-wrap: anywhere;
  hyphens: none;
}
.marketplaces__list { margin-top: var(--space-l); max-width: var(--measure); }
.marketplaces__list li { padding-block: var(--space-xs); border-top: 1px solid var(--border-light); }
.marketplaces__list li:last-child { border-bottom: 1px solid var(--border-light); }
.no-shop__body { margin-top: var(--space-l); max-width: var(--measure); }
.no-shop__body a { color: var(--accent-on-light); text-underline-offset: 3px; }
.cards {
  display: grid;
  gap: var(--space-s);
  margin-top: var(--space-l);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}
.cards > * {
  padding: var(--space-m) var(--space-l);
  background: var(--surface-light);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--accent);
}
.cards a { color: var(--accent-on-light); text-underline-offset: 3px; }
.cards p { margin-top: var(--space-2xs); }
.collections h2 { font-size: var(--font-size-h3); }
.collections .cards a { font-weight: var(--weight-semi); }
.collections__domain { display: block; font-size: var(--font-size-small); color: var(--text-on-light-muted); overflow-wrap: anywhere; }
.doc-finder .lookup__form { margin-top: var(--space-m); }
.documents__files { margin-top: var(--space-s); }
.documents__files li + li { margin-top: var(--space-2xs); }
.documents__model h3 { letter-spacing: var(--tracking-code); overflow-wrap: anywhere; }
@media (min-width: 70em) { .shops__list { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
.shops .mark { margin-bottom: var(--space-m); }
.shops .lead { max-width: 64ch; }
.site-header__shops {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  min-height: var(--tap);
  padding: var(--space-2xs) var(--space-s);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-control);
  color: var(--text-on-dark);
  font-size: var(--font-size-ui);
  font-weight: var(--weight-semi);
  text-decoration: none;
}
.site-header__shops::after {
  content: "";
  flex: 0 0 auto;
  width: .38em;
  height: .38em;
  border-right: 2px solid var(--accent-on-dark);
  border-bottom: 2px solid var(--accent-on-dark);
  transform: rotate(-45deg);
}
.site-header__shops:hover { background: var(--surface-panel); border-color: var(--border-panel); }
.shops__more { margin-top: var(--space-l); }
.shops__more a {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap);
  color: var(--text-on-dark);
  font-weight: var(--weight-semi);
  text-decoration-color: var(--accent-on-dark);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.shops__more a:hover { text-decoration-color: var(--text-on-dark); }
.shops .lead { margin-top: var(--space-s); }
@media (prefers-reduced-motion: no-preference) {
  .site-header__shops { transition: background-color .14s linear, border-color .14s linear; }
}
.home-hero { display: grid; gap: var(--space-xl); align-items: center; }
.home-hero > * { min-width: 0; }
.hero--home h1 { max-width: 19ch; font-size: clamp(1.85rem, 3.7vw, 3.5rem); text-wrap: balance; hyphens: none; }
.home-hero__shops { display: inline-flex; align-items: center; gap: var(--space-s); min-height: var(--tap); margin-top: var(--space-l); font-weight: var(--weight-semi); text-decoration-color: var(--accent-on-dark); text-underline-offset: 5px; }
.home-hero__shops span { color: var(--accent-on-dark); }
.home-hero .lookup { margin-top: 0; padding: var(--space-l); border: 1px solid var(--border-panel); border-top: 3px solid var(--accent); background: var(--surface-panel); }
.home-hero .lookup h2 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
.home-hero .lookup__form { grid-template-columns: minmax(0, 1fr); gap: var(--space-xs); margin-top: var(--space-m); }
.home-hero .lookup__form label { grid-column: auto; font-size: var(--font-size-small); letter-spacing: .03em; }
.home-hero .lookup__form input, .home-hero .lookup__form button { min-height: 52px; }
.home-intro { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.home-intro h2 { font-size: var(--font-size-h3); }
.home-intro > p { max-width: 76ch; }
.home-content > ul { display: grid; grid-template-columns: minmax(0, 1fr); max-width: none; gap: var(--space-m); padding: 0; list-style: none; }
.home-content > ul > li { position: relative; margin: 0; padding: var(--space-l); border: 1px solid var(--border-panel); border-top: 3px solid var(--accent); background: var(--surface-panel); font-size: 1rem; }
.home-content > ul > li:hover { background: var(--surface-panel-hover); }
.home-content > ul > li > a { display: block; min-height: var(--tap); margin-bottom: var(--space-xs); font-size: var(--font-size-h3); font-weight: var(--weight-bold); text-decoration-thickness: 1px; }
.home-content > ul > li > a::after { content: ""; position: absolute; inset: 0; }
.home-content > ul > li:focus-within { background: var(--surface-panel-hover); }
.home-content > ul + h2 { margin-top: var(--space-2xl); }
@media (min-width: 44em) {
  .home-hero { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: var(--space-2xl); }
  .home-intro { display: grid; grid-template-columns: 1fr 3fr; gap: var(--space-xl); align-items: start; }
  .home-intro > * + * { margin-top: 0; }
  .home-content > ul { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 64em) {
  .home-content > ul { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (prefers-reduced-motion: no-preference) {
  .home-content > ul > li { transition: background-color .14s linear; }
}
@media print {
  .home-hero { display: block; }
  .home-hero .lookup, .home-hero__shops { display: none; }
  .home-content > ul > li { background: var(--surface-light); color: var(--text-on-light); border-color: var(--text-on-light); }
}
.b2b-form {
  position: relative;
  display: grid;
  gap: var(--space-m);
  max-width: 40rem;
  margin-top: var(--space-xl);
  padding: clamp(1.35rem, 5vw, 2.25rem);
  background: var(--surface-panel);
  border: 1px solid var(--border-panel);
}
.b2b-form::before { content: ""; position: absolute; inset: -1px -1px auto; height: 3px; background: var(--gradient-charge); }
.field { display: grid; gap: var(--space-2xs); }
.b2b-form label, .lookup__form label { font-weight: var(--weight-semi); }
.b2b-form input,
.b2b-form textarea,
.lookup__form input {
  width: 100%;
  min-height: var(--tap-nav);
  padding: var(--space-s) var(--space-m);
  font: inherit;
  color: var(--text-on-light);
  background: var(--surface-light);
  border: 1px solid var(--field-border);
  border-radius: var(--radius-control);
}
.b2b-form textarea { resize: vertical; }
.b2b-form ::placeholder, .lookup__form ::placeholder { color: var(--text-on-light-muted); opacity: 1; }
.b2b-form input:focus, .b2b-form textarea:focus, .lookup__form input:focus { border-color: var(--text-on-light); }
.b2b-form :user-invalid { border-width: 3px; border-color: var(--accent); }
.b2b-form input:-webkit-autofill { -webkit-box-shadow: inset 0 0 0 100px var(--surface-light); -webkit-text-fill-color: var(--text-on-light); }
.b2b-form .btn { justify-self: start; box-shadow: 0 0 0 1px var(--text-on-accent); }
.b2b-form__notice { margin: 0; max-width: var(--measure-lead); font-size: var(--font-size-small); color: var(--text-on-dark-muted); }
.b2b-form__trap { position: absolute; left: -9999px; top: 0; width: 1px; height: 1px; overflow: hidden; }
.lookup__form { position: relative; display: grid; gap: var(--space-s); }
@media print {
  .b2b-form { background: var(--surface-light); color: var(--text-on-light); border-color: var(--text-on-light); }
  .b2b-form__notice { color: var(--text-on-light); }
  .b2b-form::before { display: none; }
}
