/* ============================================================
   AETHER+ — Shared site stylesheet
   ============================================================ */

@font-face { font-family: 'Melange'; src: url('/assets/fonts/KMRMelangeGrotesk-Light.woff2') format('woff2'); font-weight: 300; font-display: swap; }
@font-face { font-family: 'Melange'; src: url('/assets/fonts/KMRMelangeGrotesk-Regular.woff2') format('woff2'); font-weight: 400; font-display: swap; }
@font-face { font-family: 'Melange'; src: url('/assets/fonts/KMRMelangeGrotesk-Medium.woff2') format('woff2'); font-weight: 500; font-display: swap; }
@font-face { font-family: 'Melange'; src: url('/assets/fonts/KMRMelangeGrotesk-SemiBold.woff2') format('woff2'); font-weight: 600; font-display: swap; }
@font-face { font-family: 'Melange'; src: url('/assets/fonts/KMRMelangeGrotesk-Bold.woff2') format('woff2'); font-weight: 700; font-display: swap; }
@font-face { font-family: 'Melange'; src: url('/assets/fonts/KMRMelangeGrotesk-Black.woff2') format('woff2'); font-weight: 900; font-display: swap; }

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --paper:   #FFFFFF;
  --paper-2: #F4F4F2;
  --ink:     #1A1A1A;
  --ink-2:   #8A8A8A;
  --rule:    rgba(26, 26, 26, 0.14);
  --rule-2:  rgba(26, 26, 26, 0.28);

  --carton: #FAFAF7;
  --ca: #F4F5F5;
  --fe: #8FA0AB;
  --zn: #DD4847;

  --serif: 'Melange', 'Helvetica Neue', Helvetica, Arial, sans-serif;

  --pad-l: 22px;
  --pad-r: 22px;
  --pad-y: 24px;
  --rail-l: 168px;
  --rail-r: 92px;
}

html { scroll-behavior: smooth; background: var(--paper); }
body {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 11px;
  line-height: 1.5;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'kern', 'liga';
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ============================================================
   BOOT — minimal loading screen (first session view only)
   ============================================================ */

html.booted .boot { display: none !important; }

.boot {
  position: fixed;
  inset: 0;
  background: var(--paper);
  z-index: 9999;
  display: grid;
  place-items: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.7s ease;
}
.boot.done {
  opacity: 0;
  pointer-events: none;
}
.boot-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}
.boot-mark {
  font-family: var(--serif);
  font-size: clamp(42px, 5.6vw, 68px);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  text-transform: none;
}
.boot-bar {
  width: 140px;
  height: 1px;
  background: var(--rule);
  position: relative;
  overflow: hidden;
}
.boot-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left center;
  animation: boot-fill 1.4s cubic-bezier(.5,.05,.2,.95) forwards;
}
@keyframes boot-fill {
  to { transform: scaleX(1); }
}
.boot-meta {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 400;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
img { display: block; max-width: 100%; }
::selection { background: var(--ink); color: var(--paper); }

/* ============================================================
   PAGE GRID
   ============================================================ */

.page {
  display: grid;
  grid-template-columns: var(--rail-l) 1fr var(--rail-r);
  min-height: 100vh;
}

/* ============================================================
   LEFT RAIL
   ============================================================ */

.rail-l {
  padding: var(--pad-y) 0 var(--pad-y) var(--pad-l);
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 11px;
  letter-spacing: 0.02em;
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
}
.rail-l a { display: block; transition: opacity 0.18s ease; }
.rail-l a:hover { opacity: 0.55; }

.rail-meta { display: grid; gap: 4px; }

/* Custom currency dropdown — looks like inline text, no native select chrome */
.rail-currency { position: relative; }
.cur-btn {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
  display: block;
  text-align: left;
  line-height: 1.5;
  transition: opacity 0.18s ease;
}
.cur-btn:hover { opacity: 0.55; }
.cur-btn:focus { outline: none; }
.cur-list {
  position: absolute;
  top: calc(100% + 6px);
  left: -14px;
  margin: 0;
  padding: 12px 18px 12px 14px;
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 6px;
  background: var(--paper);
  z-index: 100;
  min-width: 72px;
  font-family: var(--serif);
  box-shadow: 0 12px 24px -10px rgba(0,0,0,0.10), 0 0 0 1px var(--rule);
}
.rail-currency.open .cur-list { display: flex; }
.cur-list li {
  font-family: var(--serif);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  transition: opacity 0.18s ease;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}
.cur-list li:hover { opacity: 0.55; }
.cur-list li.on { color: var(--ink-2); }

.rail-shop { display: grid; gap: 4px; }
.rail-shop .group-title { margin-bottom: 10px; }
.rail-shop .item {
  padding-left: 12px;
  position: relative;
}
.rail-shop .item.on::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 5px; height: 5px;
  background: var(--ink);
  transform: translateY(-50%);
}

.rail-pages { margin-top: auto; display: grid; gap: 4px; }

@media (max-width: 720px) {
  :root { --rail-l: 0; }
  .rail-l {
    position: static;
    height: auto;
    padding: 14px 16px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 16px;
    border-bottom: 1px solid var(--rule);
  }
  .rail-l .rail-shop, .rail-l .rail-meta { display: none; }
  .rail-pages { margin-top: 0; flex-direction: row; gap: 14px; display: flex; }
}

/* ============================================================
   RIGHT RAIL — vertical wordmark
   ============================================================ */

.rail-r {
  padding: var(--pad-y) var(--pad-r) var(--pad-y) 0;
  position: sticky;
  top: 0;
  align-self: start;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
}
.rail-r .wordmark {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--ink);
  text-transform: none;
  margin-top: 6px;
  transition: opacity 0.18s ease;
}
.rail-r .wordmark:hover { opacity: 0.6; }

@media (max-width: 720px) {
  :root { --rail-r: 0; }
  .rail-r { display: none; }
}

/* ============================================================
   CENTER COLUMN — shared structures
   ============================================================ */

.center {
  padding: var(--pad-y) 16px;
  display: flex;
  flex-direction: column;
}

.crumb-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: baseline;
  font-size: 11px;
  letter-spacing: 0.02em;
  padding: 0 0 12px;
}
.crumb-row .crumb a { transition: opacity 0.18s ease; }
.crumb-row .crumb a:hover { opacity: 0.55; }
.crumb-row .crumb .sep {
  display: inline-block;
  margin: 0 6px;
  opacity: 0.55;
}
.crumb-row .count {
  color: var(--ink-2);
  font-variant-numeric: tabular-nums;
}

.rule { width: 100%; height: 1px; background: var(--rule-2); }

.view-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  padding: 22px 0 12px;
  font-size: 11px;
  letter-spacing: 0.02em;
}
.view-row .toggle { display: inline-flex; align-items: baseline; gap: 12px; justify-self: end; }
.view-row .toggle .label { color: var(--ink-2); margin-right: 12px; }
.view-row .toggle button {
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 4px 10px;
  border: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.view-row .toggle button.on {
  color: var(--ink);
  border-color: var(--ink);
}
.view-row .toggle button:hover { color: var(--ink); }

/* ============================================================
   COLLECTION GRID
   ============================================================ */

.grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-2);
  border-left: 1px solid var(--rule-2);
}
.grid.large { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 720px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .grid.large { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .grid, .grid.large { grid-template-columns: 1fr; }
}

.card {
  display: block;
  border-right: 1px solid var(--rule-2);
  border-bottom: 1px solid var(--rule-2);
  padding: 18px 18px 16px;
  transition: background 0.2s ease;
}
.card:hover { background: rgba(255,255,255,0.18); }

.card-img {
  background: var(--paper-2);
  aspect-ratio: 4 / 5;
  position: relative;
  display: grid;
  place-items: center;
  container-type: inline-size;
  overflow: hidden;
}

.card-meta {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  align-items: baseline;
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.card-name { color: var(--ink); }
.card-price { color: var(--ink); font-variant-numeric: tabular-nums; }

/* ============================================================
   CARTON DIELINE — front-face render at 1:3.5
   ============================================================ */

.dl-carton {
  position: relative;
  width: 30%;
  aspect-ratio: 1 / 3.5;
  background: var(--carton);
  border: 0.5px solid var(--ink);
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  padding: 1.6cqw 1.5cqw 1.1cqw;
  font-family: var(--serif);
  text-align: left;
  color: var(--ink);
  text-transform: none;
  letter-spacing: normal;
  box-shadow: 0 1.5cqw 3cqw -1cqw rgba(0,0,0,0.18);
}
.dl-carton .top { line-height: 1.05; }
.dl-carton .logo {
  font-weight: 700;
  font-size: 2.6cqw;
  letter-spacing: -0.04em;
  line-height: 1;
}
.dl-carton .variant {
  font-size: 1.55cqw;
  margin-top: 0.4cqw;
  font-weight: 400;
  line-height: 1.1;
}
.dl-carton .copy {
  align-self: end;
  font-size: 1.3cqw;
  line-height: 1.5;
  padding-bottom: 1.4cqw;
  font-weight: 400;
}
.dl-carton .copy .u {
  text-decoration: underline;
  text-underline-offset: 0.4cqw;
  display: block;
  margin-bottom: 0.9cqw;
  font-weight: 400;
}
.dl-carton .copy p {
  margin: 0 0 0.9cqw;
  font-size: 1.3cqw;
  line-height: 1.4;
}
.dl-carton .tile {
  aspect-ratio: 1;
  width: 100%;
  padding: 1.6cqw 1.6cqw 1.2cqw 1.0cqw;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 0.5px solid var(--ink);
}
.dl-carton .tile .meta {
  font-size: 1.3cqw;
  line-height: 1.4;
  font-weight: 400;
}
.dl-carton .tile .sym {
  font-size: 14cqw;
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.04em;
  align-self: end;
  justify-self: start;
  margin-bottom: -0.6cqw;
  margin-left: -0.6cqw;
}
.dl-carton .foot {
  font-size: 1.3cqw;
  line-height: 1.35;
  padding-top: 1.0cqw;
  font-weight: 400;
}

.dl-carton.ca .tile { background: var(--ca); }
.dl-carton.fe .tile { background: var(--fe); }
.dl-carton.zn .tile { background: var(--zn); }

@media (max-width: 720px) { .dl-carton { width: 26%; } }
@media (max-width: 600px) { .dl-carton { width: 32%; } }

/* ============================================================
   SILVER TUBE — the refill product, CSS-rendered cylinder
   ============================================================ */

.dl-tube {
  position: relative;
  width: 22%;
  aspect-ratio: 1 / 3.8;
  background:
    linear-gradient(
      90deg,
      #7E7E7B 0%,
      #A8A8A4 14%,
      #D2D2CE 32%,
      #ECECE7 50%,
      #D2D2CE 68%,
      #A8A8A4 86%,
      #7E7E7B 100%
    );
  border: 0.5px solid #5C5C59;
  border-radius: 6cqw / 1.6cqw;
  font-family: var(--serif);
  color: rgba(60, 54, 48, 0.78);
  text-transform: none;
  letter-spacing: normal;
  box-shadow:
    0 1.5cqw 3cqw -1cqw rgba(0,0,0,0.22),
    inset 0 0.4cqw 1cqw rgba(255,255,255,0.18),
    inset 0 -0.4cqw 1cqw rgba(0,0,0,0.10);
  display: grid;
  grid-template-rows: 14% 1fr auto auto;
  padding: 0 0 6cqw;
  overflow: hidden;
}
.dl-tube .cap {
  background:
    linear-gradient(
      90deg,
      #5E5E5B 0%,
      #888884 18%,
      #B6B6B2 38%,
      #CECECA 50%,
      #B6B6B2 62%,
      #888884 82%,
      #5E5E5B 100%
    );
  border-bottom: 0.5px solid rgba(0,0,0,0.28);
  position: relative;
}
.dl-tube .cap::after {
  content: "";
  position: absolute;
  bottom: -0.6cqw;
  left: 0; right: 0;
  height: 0.8cqw;
  background: linear-gradient(180deg, rgba(0,0,0,0.18), transparent);
}
.dl-tube .wm {
  align-self: end;
  text-align: center;
  font-weight: 500;
  font-size: 3.4cqw;
  letter-spacing: -0.04em;
  color: rgba(50, 44, 38, 0.62);
  line-height: 1;
  margin-bottom: 4cqw;
  text-shadow: 0 0.16cqw 0 rgba(255,255,255,0.4);
}
.dl-tube .sub {
  text-align: center;
  font-size: 1.3cqw;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(50, 44, 38, 0.42);
  margin-bottom: 4cqw;
}
.dl-tube .band {
  height: 7%;
  margin: 0 0 6cqw;
  background: var(--paper);
  border-top: 0.5px solid rgba(0,0,0,0.18);
  border-bottom: 0.5px solid rgba(0,0,0,0.18);
  display: grid;
  place-items: center;
  font-size: 1.5cqw;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.dl-tube.ca .band { background: var(--ca); }
.dl-tube.fe .band { background: var(--fe); color: var(--paper); }
.dl-tube.zn .band { background: var(--zn); color: var(--paper); }
.dl-tube .vol {
  text-align: center;
  font-size: 1.3cqw;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(50, 44, 38, 0.42);
}

@media (max-width: 720px) { .dl-tube { width: 24%; } }
@media (max-width: 600px) { .dl-tube { width: 30%; } }

/* Stack visualization — multiple cartons/tubes inside one .card-img */
.card-stack {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 5cqw;
  width: 90%;
}
.card-stack .dl-carton { width: 22%; }
.card-stack .dl-tube { width: 19%; }
.card-stack.three .dl-carton { width: 19%; }
.card-stack.three .dl-tube { width: 17%; }

/* ============================================================
   PDP (Product Detail Page)
   Two-column: large carton on left, info on the right.
   ============================================================ */

.pdp {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  border-top: 1px solid var(--rule-2);
  border-left: 1px solid var(--rule-2);
  border-right: 1px solid var(--rule-2);
  border-bottom: 1px solid var(--rule-2);
}
@media (max-width: 720px) {
  .pdp { grid-template-columns: 1fr; }
}

.pdp-stage {
  background: var(--paper-2);
  aspect-ratio: 4 / 5;
  position: relative;
  display: grid;
  place-items: center;
  container-type: inline-size;
  overflow: hidden;
  border-right: 1px solid var(--rule-2);
}
@media (max-width: 720px) {
  .pdp-stage { border-right: 0; border-bottom: 1px solid var(--rule-2); }
}
.pdp-stage .dl-carton { width: 32%; }
@media (max-width: 1200px) { .pdp-stage .dl-carton { width: 36%; } }
@media (max-width: 900px)  { .pdp-stage .dl-carton { width: 26%; } }
@media (max-width: 600px)  { .pdp-stage .dl-carton { width: 36%; } }

.pdp-info {
  padding: 36px 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media (max-width: 700px) { .pdp-info { padding: 24px 18px; } }

.pdp-tag {
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 8px 18px;
  align-items: baseline;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.pdp-tag .num {
  color: var(--ink);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}

.pdp-name {
  font-weight: 300;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: none;
}
.pdp-sub {
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-2);
  max-width: 50ch;
  line-height: 1.55;
}
.pdp-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
}
.pdp-price .currency { font-variant-numeric: tabular-nums; }
.pdp-price .each { color: var(--ink-2); font-size: 12px; }

.pdp-element-pick { display: flex; flex-direction: column; gap: 10px; }
.pdp-element-pick .lbl {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.pdp-element-pick .pick-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pdp-element-pick .pick {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--rule-2);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-2);
  cursor: pointer;
  transition: border-color 0.18s ease, color 0.18s ease;
}
.pdp-element-pick .pick:hover { color: var(--ink); border-color: var(--ink-2); }
.pdp-element-pick .pick.on {
  color: var(--ink);
  border-color: var(--ink);
}
.pdp-element-pick .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  display: inline-block;
  border: 0.5px solid rgba(0,0,0,0.15);
}
.pdp-element-pick .dot.ca { background: var(--ca); }
.pdp-element-pick .dot.fe { background: var(--fe); }
.pdp-element-pick .dot.zn { background: var(--zn); }
.pdp-element-pick .dot.empty { background: transparent; }

.pdp-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--ink);
}
.pdp-actions button {
  padding: 14px 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  background: transparent;
  color: var(--ink);
  transition: background 0.2s ease, color 0.2s ease;
}
.pdp-actions button + button { border-left: 1px solid var(--ink); }
.pdp-actions button:hover { background: var(--ink); color: var(--paper); }
.pdp-actions button.primary { background: var(--ink); color: var(--paper); }
.pdp-actions button.primary:hover { background: transparent; color: var(--ink); }

.pdp-spec {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 24px;
  border-top: 1px solid var(--rule-2);
  padding-top: 18px;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
}
.pdp-spec dt {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  align-self: baseline;
}
.pdp-spec dd { color: var(--ink); }

.pdp-section {
  border-top: 1px solid var(--rule-2);
  padding-top: 16px;
}
.pdp-section h3 {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 10px;
  font-weight: 400;
}
.pdp-section p {
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink);
  max-width: 56ch;
}
.pdp-section table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 4px;
}
.pdp-section th, .pdp-section td {
  text-align: left;
  padding: 8px 0;
  border-bottom: 1px solid var(--rule);
}
.pdp-section th {
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.pdp-section td.num { text-align: right; font-variant-numeric: tabular-nums; }

/* ============================================================
   EDITORIAL CONTENT (about, stockists)
   ============================================================ */

.section {
  margin-top: 32px;
  border-top: 1px solid var(--rule-2);
  border-bottom: 1px solid var(--rule-2);
  padding: 64px 0;
}
.section .inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.lede {
  font-weight: 300;
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  text-transform: none;
  margin-bottom: 32px;
  max-width: 22ch;
}
.lede em { font-style: italic; }

.col-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  text-transform: none;
  letter-spacing: 0;
}
@media (max-width: 700px) { .col-2 { grid-template-columns: 1fr; gap: 24px; } }
.col-2 p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
}
.col-2 p + p { margin-top: 1em; }

.uc-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 12px;
  display: block;
}

.stockist-list {
  list-style: none;
  border-top: 1px solid var(--rule-2);
}
.stockist-list li {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
}
.stockist-list li .city {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--ink);
}
.stockist-list li .store { color: var(--ink); }
.stockist-list li .addr { color: var(--ink-2); text-align: right; }
@media (max-width: 600px) {
  .stockist-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .stockist-list li .addr { text-align: left; }
}

/* ============================================================
   CART (empty state) — restrained one-line
   ============================================================ */

.cart-empty {
  padding: 64px 0;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.cart-empty a {
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1px;
  margin-left: 6px;
}

/* ============================================================
   PDP related products strip
   ============================================================ */

.related {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--rule-2);
}
.related h3 {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 18px;
  font-weight: 400;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule-2);
  border-left: 1px solid var(--rule-2);
}
@media (max-width: 600px) { .related-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BN — Editorial pattern (rule rows, 5-col body, feature, stockists)
   ============================================================ */

.bn {
  /* Shared editorial grid — every row hangs off these columns */
  --bn-num: 60px;
  --bn-side: 220px;
  --bn-mid: minmax(0, 540px);
  margin-top: 24px;
  text-transform: none;
  letter-spacing: 0;
}

/* Shared 5-col grid for header/body/feature rows */
.bn-row,
.bn-body,
.bn-feature {
  display: grid;
  grid-template-columns:
    var(--bn-num)
    minmax(40px, 1fr)
    var(--bn-mid)
    minmax(40px, 1fr)
    var(--bn-side);
  column-gap: 0;
}

/* Header rule row */
.bn-row {
  align-items: end;
  padding: 14px 0 10px;
  border-top: 1px solid var(--ink);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.bn-row + .bn-row { margin-top: -1px; }
.bn-row .num { grid-column: 1; color: var(--ink-2); font-variant-numeric: tabular-nums; }
.bn-row .title { grid-column: 2 / 5; text-align: center; color: var(--ink); }
.bn-row .right { grid-column: 5; text-align: right; color: var(--ink); }
.bn-row.left .title { text-align: left; }
.bn-row.solo {
  grid-template-columns: 1fr;
  border-bottom: 1px solid var(--ink);
  padding: 14px 0 12px;
}
.bn-row.solo .title { grid-column: 1; text-align: left; }

/* Body row — decorative left, narrow story center, meta right */
.bn-body {
  padding: 44px 0 88px;
  align-items: start;
}
.bn-body .deco {
  grid-column: 1;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  letter-spacing: 0.32em;
  color: var(--ink-2);
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 4px;
}
.bn-body .body {
  grid-column: 3;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink);
}
.bn-body .body p + p { margin-top: 1em; }
.bn-body .body em { font-style: italic; }
.bn-body .body strong { font-weight: 500; }
.bn-body .meta-stack {
  grid-column: 5;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.bn-body .meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.bn-body .meta .lbl {
  color: var(--ink-2);
  display: block;
  margin-bottom: 6px;
}
.bn-body .meta a {
  color: var(--ink);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 1px;
}

/* Feature row — image spans cols 2-3, body spans cols 4-5 */
.bn-feature {
  padding: 44px 0 88px;
  align-items: start;
}
.bn-feature .image {
  grid-column: 2 / 4;
  background: var(--paper-2);
  aspect-ratio: 5 / 4;
  display: grid;
  place-items: center;
  container-type: inline-size;
  overflow: hidden;
  margin-right: 24px;
}
.bn-feature .image .dl-carton { width: 22%; }
.bn-feature .body {
  grid-column: 4 / 6;
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink);
  padding-left: 24px;
}
.bn-feature .body p + p { margin-top: 1em; }

/* Data grid — used by stockists. Shares the 60px first column with editorial grid. */
.bn-filter,
.bn-region,
.bn-stockists {
  display: grid;
  grid-template-columns: 60px 200px repeat(4, minmax(0, 1fr));
  column-gap: 24px;
}

.bn-filter {
  align-items: center;
  padding: 14px 0 10px;
  border-top: 1px solid var(--ink);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.bn-filter .label { grid-column: 2; color: var(--ink); }
.bn-filter .options {
  grid-column: 3 / 7;
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.bn-filter .opt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
}
.bn-filter .box {
  width: 11px; height: 11px;
  border: 1px solid var(--ink);
  display: inline-block;
}
.bn-filter .opt.on .box { background: var(--ink); }

/* region separator */
.bn-region {
  align-items: end;
  padding: 14px 0 10px;
  border-top: 1px solid var(--ink);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1;
}
.bn-region .area { grid-column: 1; color: var(--ink); }
.bn-region .place { grid-column: 2; color: var(--ink); }

/* stockist 4-col items */
.bn-stockists {
  row-gap: 56px;
  padding: 44px 0 56px;
}
.bn-stockists .item {
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-2);
  text-transform: none;
  letter-spacing: 0;
}
.bn-stockists .item:nth-child(4n+1) { grid-column: 3; }
.bn-stockists .item .name {
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 6px;
  font-weight: 400;
}

@media (max-width: 1100px) {
  .bn-row,
  .bn-body,
  .bn-feature {
    grid-template-columns: 50px minmax(0, 1fr) 180px;
  }
  .bn-row .num { grid-column: 1; }
  .bn-row .title { grid-column: 2; text-align: center; }
  .bn-row .right { grid-column: 3; }
  .bn-body .deco { grid-column: 1; }
  .bn-body .body { grid-column: 2; }
  .bn-body .meta-stack { grid-column: 3; }
  .bn-feature .image { grid-column: 2; margin-right: 0; }
  .bn-feature .body { grid-column: 3; padding-left: 24px; }
  .bn-filter,
  .bn-region,
  .bn-stockists {
    grid-template-columns: 50px 160px repeat(3, minmax(0, 1fr));
  }
  .bn-filter .options { grid-column: 3 / 6; }
  .bn-stockists .item:nth-child(4n+1) { grid-column: auto; }
  .bn-stockists .item:nth-child(3n+1) { grid-column: 3; }
}
@media (max-width: 720px) {
  .bn-row,
  .bn-body,
  .bn-feature {
    grid-template-columns: 1fr;
  }
  .bn-body, .bn-feature { padding: 28px 0 48px; }
  .bn-body > *,
  .bn-feature > * { grid-column: 1 !important; }
  .bn-feature .image { margin-right: 0; }
  .bn-feature .body { padding-left: 0; padding-top: 24px; }
  .bn-body .deco { display: none; }
  .bn-row { padding: 12px 0 8px; }
  .bn-row .num, .bn-row .right { display: none; }
  .bn-row .title { grid-column: 1; text-align: left; }
  .bn-filter,
  .bn-region,
  .bn-stockists {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .bn-filter .label,
  .bn-filter .options,
  .bn-region .area,
  .bn-region .place { grid-column: 1 / -1; }
  .bn-filter .options { justify-content: flex-start; gap: 18px; }
  .bn-stockists { row-gap: 32px; padding: 28px 0 32px; }
  .bn-stockists .item:nth-child(3n+1),
  .bn-stockists .item:nth-child(4n+1) { grid-column: auto; }
}
