:root {
  color-scheme: light;
  --ink: #111111;
  --muted: #62666f;
  --line: #d8dbe2;
  --paper: #ffffff;
  --soft: #f5f6f8;
  --night: #0f1115;
  --red: #bd1f32;
  --green: #0c7d5b;
  --blue: #2866a9;
  --yellow: #e5b100;
  --focus: #111111;
  --radius: 8px;
  --shadow: 0 18px 60px rgba(12, 15, 20, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 12px;
  background: var(--paper);
  border: 1px solid var(--ink);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.brand-glyph {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--night);
  border-radius: 50%;
}

.site-nav {
  display: flex;
  gap: 6px;
}

.site-nav a,
.site-footer a,
.text-link {
  color: var(--ink);
  text-decoration: none;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 700;
}

.site-nav a.is-active {
  color: var(--ink);
  background: var(--soft);
}

.icon-button {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.route {
  display: none;
}

.route.is-active {
  display: block;
}

.route-shop-home {
  background: var(--paper);
}

.shop-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 34px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 54px 0 32px;
  align-items: center;
}

.route-hero {
  position: relative;
  min-height: calc(100svh - 64px);
  overflow: hidden;
  background: var(--night);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.56) 44%, rgba(0, 0, 0, 0.18) 100%),
    url("assets/hero-wrist-sample.jpg") center / cover no-repeat;
}

.hero-content {
  position: relative;
  display: flex;
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100svh - 64px);
  margin: 0 auto;
  padding: 88px 0 128px;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.shop-hero .hero-content {
  width: auto;
  min-height: 0;
  margin: 0;
  padding: 0;
  color: var(--ink);
}

.hero-content h1 {
  max-width: 760px;
  margin: 0;
  font-size: 88px;
  line-height: 0.92;
  letter-spacing: 0;
}

.shop-hero .hero-content h1 {
  font-size: 72px;
  line-height: 0.96;
}

.hero-copy {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.45;
}

.shop-hero .hero-copy {
  color: var(--muted);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-content .eyebrow,
.hero-content .legal-line {
  color: rgba(255, 255, 255, 0.78);
}

.shop-hero .hero-content .eyebrow {
  color: var(--red);
}

.shop-hero .hero-content .legal-line {
  color: var(--muted);
}

.hero-actions,
.action-row,
.form-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-actions {
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
  transition:
    transform 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

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

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

.button-secondary {
  color: var(--ink);
  background: var(--paper);
}

.hero-content .button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.54);
}

.shop-hero .hero-content .button-secondary {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--ink);
}

.legal-line {
  max-width: 620px;
  margin: 32px 0 0;
  font-size: 13px;
  line-height: 1.5;
}

.hero-hint {
  position: absolute;
  right: max(16px, calc((100vw - 1120px) / 2));
  bottom: 22px;
  left: max(16px, calc((100vw - 1120px) / 2));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.hero-hint span {
  min-height: 48px;
  padding: 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.44);
  font-size: 13px;
  font-weight: 900;
}

.hero-product-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.hero-product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.hero-product-card h2 {
  margin: 10px 0 6px;
  font-size: 28px;
  line-height: 1.08;
}

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

.content-band {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0;
}

.compact-band {
  padding-top: 34px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: 58px;
  line-height: 0.98;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.shop-preview {
  padding-top: 28px;
}

.row-heading {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.product-layout,
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 28px;
  align-items: start;
}

.axis-toolbar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: start;
  margin: 0 0 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.axis-group {
  min-width: 0;
}

.axis-group.has-pending .axis-toggle {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}

.axis-toggle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.axis-toggle > span:first-child {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.axis-toggle strong {
  max-width: 150px;
  overflow: hidden;
  font-size: 13px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.axis-arrow {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  transition: transform 160ms ease;
}

.axis-arrow::before {
  display: block;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  content: "";
  transform: translateY(-2px) rotate(45deg);
}

.axis-group.is-open .axis-arrow {
  transform: rotate(180deg);
}

.axis-options {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 10px;
}

.axis-group.is-open .axis-options {
  display: flex;
}

.axis-chip {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.axis-chip.is-selected {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  font-weight: 800;
}

.axis-chip:disabled {
  color: #9aa0aa;
  background: #f0f1f4;
  cursor: not-allowed;
}

.filter-action-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(88px, auto));
  gap: 8px;
  align-self: end;
}

.apply-filter-button,
.clear-filter-button {
  min-height: 40px;
  padding: 0 14px;
}

.apply-filter-button:disabled,
.clear-filter-button:disabled {
  opacity: 0.44;
  cursor: not-allowed;
}

.selection-summary {
  margin: 0 0 18px;
  padding: 10px 12px;
  border-left: 4px solid var(--ink);
  color: var(--muted);
  background: #f8f8f8;
  font-weight: 850;
}

.product-shop-layout {
  display: block;
}

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

.product-empty-state {
  grid-column: 1 / -1;
}

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

.product-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.product-card-link,
.product-title-link {
  color: inherit;
  text-decoration: none;
}

.product-title-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--ink);
  box-shadow: 0 14px 34px rgba(12, 15, 20, 0.12);
}

.product-card.is-selected {
  border-color: var(--line);
  box-shadow: none;
}

.product-image-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 0;
  background: #f8f8f8;
}

.product-image-wrap img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 10px;
}

.product-image-wrap span {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #fff;
  background: rgba(17, 17, 17, 0.86);
  font-size: 11px;
  font-weight: 900;
}

.product-card-body {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.product-category {
  margin: 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.18;
}

.card-title-short {
  display: none;
}

.product-card p:not(.product-category) {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.product-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 6px;
}

.product-card-foot .button {
  min-height: 38px;
  padding: 0 12px;
  font-size: 13px;
}

.product-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 32px;
  align-items: start;
}

.product-detail-media {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.product-detail-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}

.product-detail-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.product-detail-copy h2 {
  margin: 0;
  font-size: 48px;
  line-height: 0.98;
}

.product-detail-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.product-detail-price {
  margin: 0;
}

.product-detail-specs {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.product-detail-notes {
  margin-top: 28px;
}

.selected-product-panel {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.selected-product-panel img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
}

.selected-product-panel h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.12;
}

.compact-summary {
  gap: 8px;
}

.compact-summary div {
  align-items: start;
}

.compact-summary dd {
  overflow-wrap: anywhere;
}

.product-figure,
.evidence-grid figure {
  margin: 0;
}

.product-figure img,
.evidence-grid img {
  width: 100%;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.selector-panel,
.checkout-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.field-group + .field-group {
  margin-top: 24px;
}

.field-label,
label span,
.toolbar span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.segmented-control {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.segmented-control button {
  min-height: 46px;
  border: 0;
  border-right: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  font-weight: 800;
}

.segmented-control button:last-child {
  border-right: 0;
}

.segmented-control button.is-selected {
  color: #fff;
  background: var(--ink);
}

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

.swatch {
  min-height: 62px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  cursor: pointer;
  text-align: left;
}

.swatch.is-selected {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--ink);
}

.swatch-chip {
  display: block;
  width: 100%;
  height: 22px;
  margin-bottom: 6px;
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: 5px;
}

.swatch-name {
  display: block;
  font-size: 12px;
  font-weight: 850;
}

.price-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 24px 0;
  padding: 16px;
  color: #fff;
  background: var(--night);
  border-radius: 8px;
}

.price-strip strong {
  font-size: 26px;
}

.evidence-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
}

.evidence-grid + .section-actions {
  margin-top: 16px;
}

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

.note-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.note-grid h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.note-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.note-grid + .section-actions {
  margin-top: 18px;
}

.form-layout.checkout-layout {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.46fr);
}

.preorder-form {
  display: grid;
  gap: 14px;
  padding: 0;
  border: 0;
  background: transparent;
}

.form-section {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.form-section-heading {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-bottom: 18px;
}

.form-section-heading > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.form-section-heading h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
}

.form-section-heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

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

.form-field-full {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.wide-field {
  display: block;
  margin-top: 16px;
}

.agreement-stack {
  display: grid;
  gap: 12px;
}

.check-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink);
  line-height: 1.45;
}

.check-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.check-row span {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
}

.form-error {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--red);
  font-weight: 800;
}

.form-actions {
  margin-top: 18px;
  padding: 0 2px;
}

.checkout-panel {
  position: sticky;
  top: 88px;
}

.checkout-panel h3 {
  margin: 0 0 16px;
  font-size: 28px;
}

.order-summary-panel {
  align-self: start;
}

.checkout-product-summary {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.checkout-product-summary img {
  width: 96px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
}

.checkout-product-summary p {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.checkout-product-summary span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.checkout-product-summary strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
}

.summary-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.summary-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.summary-list dt {
  color: var(--muted);
  font-weight: 750;
}

.summary-list dd {
  margin: 0;
  text-align: right;
  font-weight: 850;
}

.summary-total {
  align-items: baseline;
  padding-top: 4px;
  border-bottom: 0 !important;
}

.summary-total dt,
.summary-total dd {
  color: var(--ink);
  font-size: 20px;
  font-weight: 950;
}

.payment-card {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

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

.payment-card-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.payment-card-head p {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
  text-align: right;
}

.paypal-box {
  margin: 12px 0 0;
  padding: 16px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--soft);
  line-height: 1.45;
}

.text-link {
  display: inline-flex;
  margin-top: 4px;
  font-weight: 850;
  border-bottom: 1px solid var(--ink);
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 12px;
}

.toolbar {
  display: flex;
  align-items: end;
  gap: 10px;
}

.orders-state {
  min-height: 280px;
}

.state-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.state-panel h2,
.state-panel h3 {
  margin: 0 0 10px;
  font-size: 28px;
}

.state-panel p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

.order-list {
  display: grid;
  gap: 12px;
}

.order-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.order-card h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

.order-card p,
.detail-meta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #e9f5ef;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.detail-shell {
  display: grid;
  gap: 20px;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 22px;
  padding: 24px;
  border-radius: 8px;
  background: var(--night);
  color: #fff;
}

.detail-hero h2 {
  margin: 0;
  font-size: 52px;
  line-height: 1;
}

.detail-hero p {
  color: rgba(255, 255, 255, 0.78);
}

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

.detail-meta > div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.detail-meta strong {
  display: block;
  margin-bottom: 6px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 22px;
  color: #fff;
  background: var(--night);
}

.site-footer p {
  max-width: 620px;
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

.policy-main {
  width: min(880px, calc(100% - 32px));
  margin: 0 auto;
  padding: 70px 0;
}

.policy-main h1 {
  margin: 0 0 20px;
  font-size: 68px;
  line-height: 0.96;
}

.policy-main h2 {
  margin-top: 32px;
}

.policy-main p,
.policy-main li {
  color: var(--muted);
  line-height: 1.65;
}

.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

@media (max-width: 840px) {
  .site-header {
    min-height: 58px;
    padding: 0 14px;
  }

  .site-nav {
    max-width: 54vw;
    overflow-x: auto;
  }

  .site-nav a {
    white-space: nowrap;
  }

  .route-hero,
  .hero-content {
    min-height: calc(92svh - 58px);
  }

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

  .axis-toolbar {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .axis-group {
    min-width: 0;
  }

  .axis-options {
    flex-wrap: wrap;
    overflow: visible;
  }

  .clear-filter-button {
    align-self: stretch;
  }

  .shop-hero .hero-content {
    min-height: 0;
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.48) 56%, rgba(0, 0, 0, 0.7) 100%),
      url("assets/hero-wrist-sample.jpg") center / cover no-repeat;
  }

  .hero-content {
    padding: 52px 0 250px;
  }

  .hero-content h1 {
    font-size: 58px;
  }

  .shop-hero .hero-content h1 {
    font-size: 48px;
  }

  .section-heading h2,
  .detail-hero h2 {
    font-size: 40px;
  }

  .policy-main h1 {
    font-size: 48px;
  }

  .product-layout,
  .product-detail-shell,
  .form-layout,
  .form-layout.checkout-layout,
  .evidence-grid,
  .detail-hero,
  .detail-meta {
    grid-template-columns: 1fr;
  }

  .product-detail-copy h2 {
    font-size: 40px;
  }

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

  .product-image-wrap span {
    display: none;
  }

  .product-card-body {
    gap: 8px;
    padding: 12px;
  }

  .product-category {
    display: -webkit-box;
    min-height: 26px;
    overflow: hidden;
    font-size: 11px;
    line-height: 1.18;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .product-card h3 {
    min-height: 22px;
    font-size: 20px;
    line-height: 1.14;
  }

  .card-title-full {
    display: none;
  }

  .card-title-short {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .product-card p:not(.product-category) {
    display: none;
  }

  .product-card-foot {
    display: grid;
    align-items: stretch;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
    gap: 10px;
    justify-items: stretch;
    justify-self: stretch;
    margin-top: 5px;
  }

  .product-card-foot .button {
    justify-self: stretch;
    width: 100%;
    inline-size: 100%;
    max-width: 100%;
    min-width: 0;
  }

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

  .form-section {
    padding: 18px;
  }

  .form-section-heading {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .form-section-heading > span {
    width: 30px;
    height: 30px;
  }

  .checkout-panel {
    position: static;
  }

  .selected-product-panel {
    position: static;
  }

  .row-heading,
  .site-footer {
    align-items: start;
    flex-direction: column;
  }

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

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

  .order-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand-mark span:last-child {
    display: none;
  }

  .site-header {
    gap: 8px;
  }

  .site-nav {
    max-width: none;
    flex: 1;
    justify-content: center;
    overflow-x: visible;
  }

  .site-nav a {
    padding: 8px 7px;
    font-size: 13px;
  }

  .icon-button {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .hero-actions,
  .action-row,
  .form-actions,
  .section-actions,
  .policy-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .axis-toolbar {
    padding: 12px;
  }

  .filter-action-group {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .axis-chip {
    min-height: 32px;
    padding: 0 10px;
    font-size: 12px;
    white-space: nowrap;
  }

  .apply-filter-button,
  .clear-filter-button {
    width: 100%;
  }

  .checkout-product-summary {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .checkout-product-summary img {
    width: 82px;
  }

  .product-detail-media {
    padding: 12px;
  }

  .product-detail-copy {
    gap: 14px;
  }

  .product-detail-copy h2 {
    font-size: 34px;
  }

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

  .product-image-wrap img {
    padding: 7px;
  }

  .product-category {
    min-height: 24px;
    font-size: 9.5px;
    line-height: 1.18;
  }

  .product-card h3 {
    min-height: 19px;
    font-size: 16px;
    line-height: 1.16;
  }

  .product-card-foot {
    gap: 9px;
    margin-top: 4px;
  }

  .product-card-foot strong {
    font-size: 18px;
    line-height: 1;
  }

  .product-card-foot .button {
    width: 100%;
    min-width: 0;
    min-height: 34px;
    padding: 0 11px;
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .site-header {
    gap: 5px;
    padding: 0 8px;
  }

  .brand-glyph {
    width: 32px;
    height: 32px;
  }

  .site-nav {
    gap: 2px;
  }

  .site-nav a {
    padding: 8px 5px;
    font-size: 12px;
  }

  .icon-button {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }
}
