:root {
  --paper: #fcfcfb;
  --paper-deep: #f4f5f4;
  --ink: #101314;
  --ink-soft: #33383a;
  --muted: #6d7375;
  --line: #e6e8e7;
  --gold: #79d0c9;
  --gold-text: #1e6b64;
  --white: #ffffff;
  --serif: "Cormorant Garamond", "Didot", "Bodoni MT", Georgia, serif;
  --sans: "Jost", "Futura", "Avenir Next", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.21, 1);
  --shadow-soft: 0 24px 60px -30px rgba(16, 19, 20, 0.22);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

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

button { font-family: inherit; cursor: pointer; }

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

.skip-link {
  position: absolute;
  top: -48px; left: 16px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus-visible { top: 12px; }

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

.icon-btn {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border: 0;
  background: none;
  color: var(--ink);
  transition: color 0.2s var(--ease), opacity 0.2s var(--ease);
}
.icon-btn:hover { color: var(--gold-text); }

.text-btn {
  padding: 4px 2px;
  border: 0;
  background: none;
  color: var(--gold-text);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(176, 141, 87, 0.45);
  transition: color 0.2s var(--ease);
}
.text-btn:hover { color: var(--ink); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px clamp(20px, 4vw, 56px);
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-toggle { justify-self: start; display: none; }

.primary-nav {
  display: flex;
  gap: clamp(18px, 2.4vw, 34px);
  justify-self: start;
}
.primary-nav a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.primary-nav a:hover { color: var(--ink); }
.primary-nav a:hover::after { transform: scaleX(1); }

.brand {
  font-family: var(--serif);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: 0.34em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

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

.bag-btn { position: relative; }
.bag-count {
  position: absolute;
  top: 5px; right: 3px;
  min-width: 16px; height: 16px;
  padding: 0 4px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 500;
  border-radius: 999px;
}

.breadcrumbs {
  max-width: 1440px;
  margin: 0 auto;
  padding: 26px clamp(20px, 4vw, 56px) 6px;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.breadcrumbs li:not(:first-child)::before { content: "/"; margin-right: 10px; color: var(--line); }
.breadcrumbs a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
.breadcrumbs a:hover { color: var(--gold-text); }
.breadcrumbs [aria-current] { color: var(--ink-soft); }

.pdp {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) minmax(380px, 500px);
  gap: clamp(28px, 4vw, 64px);
  max-width: 1440px;
  margin: 0 auto;
  padding: 18px clamp(20px, 4vw, 56px) 90px;
  align-items: start;
}

.gallery {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: subgrid;
}

.thumbs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.thumb {
  width: 100%;
  aspect-ratio: 1;
  padding: 6%;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
  opacity: 0.72;
  transition: opacity 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.thumb:hover { opacity: 1; transform: translateY(-2px); }
.thumb[aria-current="true"] { opacity: 1; border-color: var(--gold); }

.stage {
  position: relative;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  background: var(--paper-deep);
  box-shadow: inset 0 0 0 1px var(--line);
}

.stage-kanji {
  position: absolute;
  top: 22px;
  right: 18px;
  writing-mode: vertical-rl;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.42em;
  color: var(--muted);
  user-select: none;
  pointer-events: none;
}

.stage-media {
  aspect-ratio: 1 / 1;
  max-height: min(78vh, 720px);
  width: 100%;
}
.stage-media > svg {
  width: 100%; height: 100%;
  transition: transform 0.45s var(--ease), opacity 0.3s ease;
}
.stage.is-zoomed .stage-media > svg { transform: scale(1.85); transition-duration: 0.12s; }

.stage-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: none;
  touch-action: pan-y;
}
.stage.mode-3d .stage-canvas { display: block; }
.stage.mode-3d .stage-media { visibility: hidden; }
.stage.mode-3d .zoom-hint { display: none; }

.view-toggle {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  overflow: hidden;
}
.vt-btn {
  padding: 8px 16px;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.vt-btn.is-active {
  background: var(--ink);
  color: var(--paper);
}

.zoom-hint {
  position: absolute;
  right: 16px; bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.25s var(--ease);
}
.zoom-hint:hover { border-color: var(--gold); color: var(--ink); }

.gallery-note {
  grid-column: 2;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12.5px;
  letter-spacing: 0.05em;
}

.strip { display: none; }

.panel { padding-top: 8px; }

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-text);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.panel h1 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: clamp(34px, 3.6vw, 46px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.sku {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.rating {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.review-link {
  color: var(--ink-soft);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-underline-offset: 4px;
}
.review-link:hover { color: var(--gold-text); }

.price-block { padding: 20px 0 4px; }

.price {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
  font-variant-numeric: lining-nums;
}

.availability {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  letter-spacing: 0.04em;
}
.availability.low { color: #9a5b21; }
.availability.out { color: #8c3a2e; }
.availability.in-stock { color: #4d6b43; }

.configurator fieldset {
  margin: 0;
  padding: 18px 0 6px;
  border: 0;
  border-bottom: 1px solid var(--line);
}
.configurator fieldset:first-of-type { border-top: 1px solid var(--line); margin-top: 18px; }

.configurator legend {
  float: left;
  width: 100%;
  margin-bottom: 12px;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.legend-hint { color: var(--muted); letter-spacing: 0.06em; text-transform: none; margin-left: 8px; font-size: 12px; }

.options {
  clear: both;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.opt-pill { position: relative; }
.opt-pill input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.opt-pill label {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  min-width: 44px;
  padding: 11px 16px 9px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
  transition: all 0.22s var(--ease);
}
.opt-pill label:hover { border-color: var(--gold); }
.opt-pill input:checked + label {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
  color: var(--ink);
}
.opt-pill input:focus-visible + label { outline: 2px solid var(--gold); outline-offset: 2px; }
.opt-sub {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.swatches .opt-swatch { position: relative; }
.swatches input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.swatches label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 74px;
  padding: 12px 10px 10px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: all 0.22s var(--ease);
}
.swatches label:hover { color: var(--ink); }
.swatch-chip {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(22, 20, 15, 0.12);
  box-shadow:
    inset -5px -6px 10px rgba(0, 0, 0, 0.22),
    inset 4px 5px 8px rgba(255, 255, 255, 0.55);
}
.swatches input:checked + label { border-color: var(--ink); color: var(--ink); }
.swatches input:focus-visible + label { outline: 2px solid var(--gold); outline-offset: 2px; }
.swatches input:disabled + label { opacity: 0.35; cursor: not-allowed; }
.opt-pill input:disabled + label { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }

.sizes .options { max-height: none; }

.assist-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  color: var(--line);
}

.buy-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin: 24px 0 0;
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
}
.qty-btn {
  width: 44px; height: 48px;
  border: 0;
  background: none;
  color: var(--ink-soft);
  font-size: 18px;
  transition: color 0.2s var(--ease);
}
.qty-btn:hover:not(:disabled) { color: var(--gold-text); }
.qty-btn:disabled { opacity: 0.3; cursor: not-allowed; }
#qtyValue {
  min-width: 34px;
  text-align: center;
  font-size: 15px;
  font-weight: 400;
}

.wishlist-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: none;
  color: var(--ink-soft);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.25s var(--ease);
}
.wishlist-btn:hover { border-color: var(--gold); color: var(--gold-text); }
.wishlist-btn[aria-pressed="true"] { border-color: var(--gold); color: var(--gold-text); background: rgba(176, 141, 87, 0.07); }
.wishlist-btn[aria-pressed="true"] svg { fill: currentColor; }

.cta {
  width: 100%;
  min-height: 58px;
  margin-top: 16px;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: all 0.28s var(--ease);
}
.cta:hover:not(:disabled) {
  background: #2b2720;
  box-shadow: var(--shadow-soft);
  transform: translateY(-1px);
}
.cta:active:not(:disabled) { transform: translateY(0); }
.cta:disabled {
  border-color: var(--line);
  background: none;
  color: var(--muted);
  cursor: not-allowed;
}

.cta-compact {
  width: auto;
  min-width: 170px;
  min-height: 48px;
  margin-top: 0;
  padding: 0 22px;
}

.config-summary {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-align: center;
}

.trust-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  margin: 28px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}
.trust-row li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink-soft);
  font-size: 13px;
  letter-spacing: 0.03em;
}
.trust-row svg { flex: none; color: var(--gold-text); }

.secondary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.secondary-links {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--line);
}

.accordions { margin-top: 26px; border-top: 1px solid var(--line); }
.accordions details {
  border-bottom: 1px solid var(--line);
}
.accordions summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 2px;
  cursor: pointer;
  list-style: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.accordions summary::-webkit-details-marker { display: none; }
.accordions summary::after {
  content: "+";
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: var(--gold-text);
  transition: transform 0.25s ease;
}
.accordions details[open] summary::after { transform: rotate(45deg); }
.acc-body {
  padding: 0 2px 18px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.acc-body p { margin: 0; }
.spec-mini {
  margin: 0;
  display: grid;
  gap: 7px;
}
.spec-mini dt {
  float: left;
  clear: left;
  width: 118px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.spec-mini dd { margin: 0 0 0 130px; }

.promo-card {
  margin-top: 26px;
  padding: 24px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
}
.promo-title {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.promo-card p:last-child { margin: 0; font-size: 14px; color: var(--ink-soft); }

.editorial {
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
}
.editorial-inner {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 6vw, 96px);
  max-width: 1160px;
  margin: 0 auto;
  padding: clamp(60px, 8vw, 110px) clamp(20px, 4vw, 56px);
}
.story h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 500;
  line-height: 1.1;
}
.story p { color: var(--ink-soft); font-size: 16.5px; line-height: 1.85; }

.specs {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 28px;
  align-content: start;
  margin: 0;
  padding-top: 8px;
}
.specs dt {
  padding: 13px 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-text);
  border-bottom: 1px solid var(--line);
}
.specs dd {
  margin: 0;
  padding: 12px 0;
  font-size: 14.5px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
  text-align: right;
}

.site-footer {
  padding: 34px clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  text-align: center;
}
.site-footer p {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(16px, 4vw, 28px) calc(12px + env(safe-area-inset-bottom));
  background: rgba(250, 248, 244, 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  transform: translateY(105%);
  transition: transform 0.4s var(--ease);
}
.sticky-bar.show { transform: translateY(0); }
.sticky-info { display: flex; flex-direction: column; gap: 1px; }
.sticky-name {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
}
.sticky-price { font-size: 14px; color: var(--ink-soft); font-variant-numeric: lining-nums; }

.modal {
  width: min(560px, calc(100vw - 32px));
  max-height: min(80vh, 640px);
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  overscroll-behavior: contain;
}
.modal::backdrop { background: rgba(22, 20, 15, 0.45); backdrop-filter: blur(3px); }
.modal header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 14px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.modal h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
}
.modal > p, .modal-footnote {
  padding: 0 24px;
  font-size: 14px;
  color: var(--ink-soft);
}
.modal table {
  width: calc(100% - 48px);
  margin: 18px 24px 8px;
  border-collapse: collapse;
  font-size: 14px;
}
.modal th, .modal td {
  padding: 11px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.modal thead th {
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-text);
}
.modal tbody th { font-weight: 400; color: var(--muted); }
.modal td { font-variant-numeric: lining-nums; }
.modal-footnote { padding-bottom: 24px; color: var(--muted); font-size: 13px; }

.lightbox {
  width: min(1080px, 94vw);
  max-height: 94vh;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: var(--paper-deep);
}
.lightbox figure { margin: 0; padding: 20px; }
.lightbox svg { width: 100%; height: auto; max-height: 78vh; margin: 0 auto; }
.lightbox figcaption {
  padding-top: 14px;
  text-align: center;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.lightbox-close { position: absolute; top: 10px; right: 10px; z-index: 2; font-size: 26px; }

.scrim {
  position: fixed;
  inset: 0;
  z-index: 130;
  background: rgba(22, 20, 15, 0.45);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.scrim.show { opacity: 1; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 140;
  display: flex;
  flex-direction: column;
  width: min(430px, 94vw);
  background: var(--paper);
  box-shadow: -30px 0 70px -30px rgba(22, 20, 15, 0.4);
  transform: translateX(105%);
  visibility: hidden;
  transition: transform 0.45s var(--ease), visibility 0s 0.45s;
}
.cart-drawer.open { transform: translateX(0); visibility: visible; transition-delay: 0s; }
.cart-drawer > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px 16px;
  border-bottom: 1px solid var(--line);
}
.cart-drawer h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.cart-items {
  flex: 1;
  margin: 0;
  padding: 8px 26px;
  list-style: none;
  overflow-y: auto;
}
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.cart-thumb {
  width: 64px; height: 64px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--white);
  padding: 4px;
}
.cart-item-name {
  margin: 0 0 3px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
}
.cart-item-config {
  margin: 0 0 4px;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--muted);
  text-transform: uppercase;
}
.cart-item-price { font-size: 14px; font-variant-numeric: lining-nums; }
.cart-item-remove {
  align-self: start;
  border: 0;
  background: none;
  padding: 6px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cart-item-remove:hover { color: #8c3a2e; }
.cart-empty {
  padding: 40px 26px;
  text-align: center;
  color: var(--muted);
  font-style: italic;
  font-family: var(--serif);
  font-size: 18px;
}
.cart-footer { padding: 18px 26px calc(22px + env(safe-area-inset-bottom)); border-top: 1px solid var(--line); }
.subtotal {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.subtotal strong { font-family: var(--serif); font-size: 22px; letter-spacing: 0; }
.cart-note { margin: 0 0 14px; font-size: 12.5px; color: var(--muted); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
.fade-in { animation: fadeUp 0.55s var(--ease) both; }

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

@media (max-width: 1180px) {
  .pdp { grid-template-columns: minmax(0, 1fr) minmax(340px, 420px); }
  .gallery { grid-column: 1; grid-row: 1; }
  .thumbs { display: none; }
  .panel { grid-column: 2; grid-row: 1; }
  .stage-media { aspect-ratio: auto; height: min(64vh, 560px); }
  .strip {
    grid-column: 1 / -1;
    display: flex;
    gap: 12px;
    margin-top: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .strip::-webkit-scrollbar { display: none; }
  .slide {
    flex: 0 0 34%;
    scroll-snap-align: start;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: var(--white);
    padding: 5%;
    opacity: 0.75;
    transition: opacity 0.25s var(--ease), border-color 0.25s var(--ease);
  }
  .slide:hover { opacity: 1; }
  .slide[aria-current="true"] { opacity: 1; border-color: var(--gold); }
  .gallery-note { display: none; }
}

@media (max-width: 900px) {
  .nav-toggle { display: grid; }
  .primary-nav { display: none; }
  .stage-kanji { display: none; }
  .site-header { grid-template-columns: auto minmax(0, 1fr) auto; }
  .brand {
    justify-self: center;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: clamp(15px, 4vw, 19px);
    letter-spacing: 0.22em;
    padding-left: 0.22em;
  }
}

@media (max-width: 760px) {
  .pdp {
    grid-template-columns: 1fr;
    padding-bottom: 120px;
  }
  .gallery, .panel { grid-column: 1; }
  .panel { grid-row: auto; }
  .stage-media { height: auto; aspect-ratio: 1/1; }
  .slide { flex-basis: 42%; }
  .editorial-inner { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr; }
  .secondary-row { flex-direction: column; align-items: stretch; text-align: center; }
  .secondary-links { justify-content: center; }
  .spec-mini dt { width: 96px; font-size: 11px; }
  .spec-mini dd { margin-left: 106px; }
  .buy-row { flex-wrap: wrap; }
  .wishlist-btn { flex-basis: 100%; order: 2; }
  .qty { order: 1; width: 100%; justify-content: space-between; }
  .qty-btn { width: 56px; }
  body.has-sticky-bar .site-footer { padding-bottom: 110px; }
}

@media print {
  .site-header, .sticky-bar, .thumbs, .strip, .zoom-hint, .stage-kanji { display: none; }
}
