/* =====================================================
   NYC PERKS — V2 STYLES
   Same palette + type, flair removed.
   Adds: scrolly intro · quieter catalog chrome
   ===================================================== */

/* hide v1 chrome bits that we replace */
.v2 .marquee,
.v2 .deposit-banner { display: none; }

/* =====================================================
   QUESTION SCREEN
   ===================================================== */
.wv2-shell {
  background: var(--paper);
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--f-body);
  position: relative;
  /* Guard against any scene content (oversized display type) widening the
     layout viewport, which on mobile pushes the fixed corner buttons off-screen. */
  overflow-x: clip;
}
.wv2-skip {
  position: fixed;
  top: calc(18px + env(safe-area-inset-top, 0px));
  right: calc(22px + env(safe-area-inset-right, 0px));
  z-index: 200;
  font-family: var(--f-type); font-size: 12px;
  background: transparent; border: none; color: var(--ink-faint);
  cursor: pointer; text-decoration: underline;
}
.wv2-back {
  position: fixed;
  top: calc(18px + env(safe-area-inset-top, 0px));
  left: calc(22px + env(safe-area-inset-left, 0px));
  z-index: 200;
  font-family: var(--f-type); font-size: 12px;
  background: transparent; border: none; color: var(--ink-faint);
  cursor: pointer; text-decoration: underline;
}
.wv2-back:hover { color: var(--ink); }
.wv2-progress {
  position: fixed;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  z-index: 80;
  display: flex; flex-direction: column;
  gap: 10px;
  font-family: var(--f-type); font-size: 10px;
  color: var(--ink-faint);
}
.wv2-progress span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  opacity: 0.18;
  transition: opacity 0.4s, background 0.4s;
}
.wv2-progress span.on { opacity: 1; background: var(--tomato); }

/* QUESTION OVERLAY */
.wv2-question {
  position: fixed; inset: 0; z-index: 100;
  background: var(--paper);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: wv2QFadeIn 0.5s ease-out both;
}
.wv2-question.dismiss {
  animation: wv2QFadeOut 0.45s ease-in both;
}
@keyframes wv2QFadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes wv2QFadeOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-16px); }
}
.wv2-q-inner { width: 100%; max-width: 1100px; text-align: center; position: relative; }

.wv2-q-rule {
  display: inline-block;
  font-family: var(--f-type);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faint);
  border-top: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding: 5px 16px 4px;
  margin-bottom: 44px;
}
.wv2-q {
  font-family: var(--f-display);
  font-size: clamp(54px, 9.2vw, 140px);
  line-height: 0.94;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.wv2-q-buttons {
  display: flex; gap: 22px; justify-content: center;
  margin-top: 56px;
}
.wv2-yn {
  font-family: var(--f-display);
  font-size: 26px;
  letter-spacing: 0.1em;
  padding: 22px 58px;
  border: 3px solid var(--ink);
  border-radius: 0;
  cursor: pointer;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
  transition: transform 0.08s, box-shadow 0.08s;
}
.wv2-yn:hover  { transform: translate(-2px, -2px); box-shadow: 9px 9px 0 var(--ink); }
.wv2-yn:active { transform: translate(2px, 2px);   box-shadow: 2px 2px 0 var(--ink); }
.wv2-yn.yes    { background: var(--tomato); color: var(--paper); }
.wv2-yn.no     { background: var(--paper); }
.wv2-yn-sm     { font-size: 14px; padding: 10px 24px; letter-spacing: 0.06em; box-shadow: 3px 3px 0 var(--ink); }

.wv2-noresp {
  margin-top: 40px;
  font-family: var(--f-postcard);
  font-style: italic;
  font-size: clamp(18px, 1.7vw, 24px);
  color: var(--ink-soft);
  display: flex; gap: 16px; align-items: center; justify-content: center; flex-wrap: wrap;
  animation: wv2QFadeIn 0.4s ease-out both;
}
.wv2-noresp p { margin: 0; }

.wv2-q-foot {
  position: absolute;
  left: 0; right: 0; bottom: -90px;
  display: flex; justify-content: space-between;
  font-family: var(--f-type);
  font-size: 10px;
  color: var(--ink-faint);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* =====================================================
   SCROLLY SECTIONS
   ===================================================== */
.wv2-scroll { display: block; }
.wv2-section {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 100px 32px;
  position: relative;
  text-align: center;
}
.wv2-section + .wv2-section {
  border-top: 1px solid rgba(26,35,66,0.10);
}
.wv2-section > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease-out, transform 0.85s ease-out;
}
.wv2-section.visible > * { opacity: 1; transform: translateY(0); }
.wv2-section.visible > *:nth-child(1) { transition-delay: 0.05s; }
.wv2-section.visible > *:nth-child(2) { transition-delay: 0.20s; }
.wv2-section.visible > *:nth-child(3) { transition-delay: 0.38s; }
.wv2-section.visible > *:nth-child(4) { transition-delay: 0.56s; }
.wv2-section.visible > *:nth-child(5) { transition-delay: 0.74s; }
.wv2-section.visible > *:nth-child(6) { transition-delay: 0.92s; }

/* chapter label */
.wv2-chapter {
  font-family: var(--f-type);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 28px;
}
.wv2-section-back {
  display: inline-block;
  margin: 0 0 20px;
  padding: 0;
  border: none;
  background: transparent;
  font-family: var(--f-type);
  font-size: 12px;
  color: var(--ink-faint);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.wv2-section-back:hover { color: var(--ink); }

/* ----- scene: BIENVENIDOS ----- */
.wv2-bien-1 {
  font-family: var(--f-script);
  color: var(--tomato);
  font-size: clamp(60px, 11vw, 180px);
  line-height: 0.95;
  margin: 0;
  display: inline-block;
  transform-origin: bottom left;
}
.wv2-section.visible .wv2-bien-1 {
  /* override base transition with a punchier reveal */
  animation: wv2Pop 1.2s 0.25s cubic-bezier(.18,1.5,.32,1) both;
  transform: none; /* avoid double-transform */
  opacity: 1;
}
@keyframes wv2Pop {
  0%   { opacity: 0; transform: scale(0.55) rotate(-3deg) translateY(20px); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: scale(1) rotate(-2deg) translateY(0); }
}
.wv2-bien-2 {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(72px, 13vw, 220px);
  line-height: 0.9;
  letter-spacing: -0.025em;
  margin: -10px 0 0;
}
.wv2-bien-3 {
  font-family: var(--f-postcard);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 38px);
  margin-top: 32px;
  color: var(--ink-soft);
  text-wrap: balance;
}
.wv2-hint {
  display: inline-flex; flex-direction: column; align-items: center;
  gap: 10px;
  margin-top: 56px;
  font-family: var(--f-type);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.wv2-arrow {
  font-family: var(--f-body); font-size: 20px;
  animation: wv2Bounce 1.6s ease-in-out infinite;
}
@keyframes wv2Bounce {
  0%,100% { transform: translateY(0); opacity: 0.5; }
  50%     { transform: translateY(8px); opacity: 1; }
}

/* ----- prose scenes (3 / 4 / 5 / 6) ----- */
.wv2-prose {
  font-family: var(--f-postcard);
  font-size: clamp(28px, 3.6vw, 58px);
  line-height: 1.22;
  max-width: 1100px;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}
.wv2-prose strong { font-weight: 400; color: var(--ink); border-bottom: 3px solid var(--tomato); padding-bottom: 1px; }
.wv2-prose em { font-style: italic; color: var(--tomato); }
.wv2-prose + .wv2-prose { margin-top: 28px; }
.wv2-prose-sm {
  font-family: var(--f-postcard);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--ink-soft);
  margin: 0;
}

/* MAHALO script lock-up */
.wv2-script {
  font-family: var(--f-script);
  font-size: clamp(56px, 16vw, 280px);
  color: var(--tomato);
  line-height: 0.88;
  margin: 16px 0 0;
  /* Words vary wildly in length across languages; keep them inside the frame. */
  max-width: 100%;
  overflow-wrap: anywhere;
}

/* boroughs row */
.wv2-boroughs {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px 36px;
  margin: 44px 0 0;
  font-family: var(--f-condensed);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: clamp(14px, 1.5vw, 20px);
  color: var(--ink);
}
.wv2-boroughs span {
  border-bottom: 2px solid var(--ink);
  padding: 0 2px 6px;
}

/* category strip */
.wv2-cats-wrap {
  margin: 36px 0 0;
}
.wv2-cats {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 10px;
  font-family: var(--f-condensed);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: clamp(12px, 1.2vw, 15px);
}
.wv2-cats span {
  border-radius: 999px;
  padding: 6px 14px 7px;
}
/* live/active chips — filled solid */
.wv2-cats .cat-live {
  background: var(--ink);
  color: var(--paper);
  border: 1.5px solid var(--ink);
}
/* coming soon chips — faint dashed outline */
.wv2-cats .cat-soon {
  border: 1.5px dashed var(--ink-faint);
  color: var(--ink-faint);
  background: transparent;
}
/* overflow count — plain text, very faint */
.wv2-cats .cat-more {
  border: none;
  color: var(--ink-faint);
  background: transparent;
  font-style: italic;
  padding-left: 4px;
}
/* legend below chips */
.wv2-cats-legend {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 12px;
  font-family: var(--f-type);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.wv2-cats-legend span:first-child { color: var(--ink); }

/* big stat */
.wv2-stat-num {
  font-family: var(--f-display);
  color: var(--tomato);
  font-size: clamp(84px, 20vw, 320px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
  position: relative;
  max-width: 100%;
}
.wv2-stat-num sup {
  font-size: 0.32em;
  color: var(--ink);
  vertical-align: super;
  margin-left: 6px;
  font-weight: normal;
}

/* ----- scene: BRIDGE ----- */
.wv2-bridge {
  padding-top: 120px;
  padding-bottom: 140px;
  background: var(--paper);
}
.wv2-bridge-h {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(56px, 8vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
}
.wv2-bridge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
  width: 100%;
  max-width: 1240px;
}
.wv2-bridge-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 8px;
  text-align: left;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.1s, box-shadow 0.1s;
  box-shadow: 4px 4px 0 var(--ink);
}
.wv2-bridge-hero {
  height: 150px; border-bottom: 2px solid var(--ink); overflow: hidden;
  cursor: pointer;
}
.wv2-bridge-hero:hover  { opacity: 0.9; }
.wv2-bridge-body {
  padding: 14px 14px 12px;
  cursor: pointer;
  flex: 1;
}
.wv2-bridge-cat {
  font-family: var(--f-condensed); text-transform: uppercase; font-size: 11px;
  letter-spacing: 0.08em; color: var(--ink-faint);
}
.wv2-bridge-name {
  font-family: var(--f-display); font-size: 21px; line-height: 1; margin: 6px 0;
  overflow-wrap: break-word;
  hyphens: auto;
}
.wv2-bridge-blurb { font-size: 13px; color: var(--ink-soft); line-height: 1.45; }
.wv2-bridge-save {
  border-top: 1.5px solid var(--ink);
  padding: 9px 14px;
  font-family: var(--f-condensed);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-faint);
  cursor: pointer;
  background: var(--paper-2, #f5f2ed);
  transition: background 0.12s, color 0.12s;
  user-select: none;
}
.wv2-bridge-save:hover { background: var(--ink); color: var(--paper); }
.wv2-cta {
  margin-top: 52px;
  font-family: var(--f-display);
  background: var(--tomato);
  color: var(--paper);
  border: 3px solid var(--ink);
  padding: 22px 46px;
  font-size: 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 7px 7px 0 var(--ink);
  cursor: pointer;
  transition: transform 0.08s, box-shadow 0.08s;
}
.wv2-cta:hover { transform: translate(-2px, -2px); box-shadow: 9px 9px 0 var(--ink); }
.wv2-cta:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }

@media (max-width: 900px) {
  .wv2-bridge-grid  { grid-template-columns: repeat(2, 1fr); }
  .wv2-q-buttons    { gap: 14px; }
  .wv2-yn           { padding: 16px 38px; font-size: 22px; }
  .wv2-progress     { display: none; }
  /* Bridge card names: narrower columns need a smaller, clamped type size */
  .wv2-bridge-name  { font-size: clamp(15px, 3.2vw, 21px); }
}

/* Welcome scenes on phones: tighter gutters + smaller display type so the
   oversized headline/script/stat never break the screen margins. */
@media (max-width: 640px) {
  .wv2-section   { padding: 88px 18px; }
  .wv2-bien-2    { font-size: clamp(56px, 16vw, 120px); }
  .wv2-script    { font-size: clamp(44px, 13vw, 120px); }
  .wv2-stat-num  { font-size: clamp(72px, 17vw, 160px); }
}

/* =====================================================
   CATALOG (v2) — quiet chrome
   ===================================================== */

/* v2 header — slimmer, no deposit banner */
.h2 {
  position: sticky; top: 0; z-index: 30;
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  overflow-x: clip;
}
.h2-inner {
  max-width: 1480px; margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  padding: 14px 28px;
  align-items: center;
  min-width: 0;
}
.h2-logo {
  display: flex; flex-direction: column;
  line-height: 0.95;
  font-family: var(--f-display);
  font-size: 22px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  cursor: pointer;
}
.h2-logo small {
  font-family: var(--f-type);
  font-size: 10px;
  font-weight: normal;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 4px;
}
.h2-search {
  display: flex; align-items: center; gap: 8px;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 16px;
  max-width: 540px;
  margin: 0 auto;
  width: 100%;
}
.h2-search input {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: var(--f-type); font-size: 13px; color: var(--ink);
}
.h2-search input::placeholder { color: var(--ink-faint); }
.h2-search-btn {
  border: none;
  background: transparent;
  color: var(--ink-faint);
  cursor: pointer;
  font-family: var(--f-display);
  font-size: 16px;
  line-height: 1;
  padding: 0;
}
.h2-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.h2-nav-top {
  display: flex;
  align-items: center;
  gap: 8px;
}
.h2-actions a {
  font-family: var(--f-condensed);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 6px 14px 7px;
  cursor: pointer;
  white-space: nowrap;
  background: transparent;
}
.h2-coffee {
  background: var(--paper-2);
}
.h2-coffee-short { display: none; }
.h2-actions a.primary {
  background: var(--ink); color: var(--paper);
}
.h2-actions .count {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--tomato); color: var(--paper);
  border-radius: 999px;
  min-width: 20px; height: 20px;
  font-size: 11px;
  margin-left: 4px;
  padding: 0 4px;
}

/* v2 header — mobile responsive layout */
@media (max-width: 640px) {
  .h2-inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
    gap: 8px 10px;
    padding: 10px 16px;
  }
  .h2-logo { grid-column: 1; grid-row: 1; min-width: 0; }
  .h2-actions {
    display: contents;
  }
  .h2-nav-top {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    flex-wrap: nowrap;
    gap: 6px;
  }
  .h2-search {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: 100%;
    margin: 0;
    min-width: 0;
  }
  .h2-catalog {
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: start;
  }
  .h2-logo small { display: none; }
  .h2-coffee-full { display: none; }
  .h2-coffee-short {
    display: inline;
    font-size: 16px;
    line-height: 1;
  }
  .h2-coffee { padding: 6px 11px 7px; }
  .h2-actions a { font-size: 13px; padding: 5px 12px 6px; }
}

/* v2 footer */
.f2 {
  background: var(--paper);
  color: var(--ink);
  padding: 48px 28px 60px;
  text-align: center;
  border-top: 1.5px solid var(--ink);
  margin-top: 100px;
}
.f2 h3 {
  font-family: var(--f-display);
  font-size: 28px;
  margin: 0 0 8px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.f2 p {
  font-family: var(--f-type);
  font-size: 12px;
  max-width: 600px;
  margin: 0 auto;
  color: var(--ink-soft);
  line-height: 1.7;
}
.f2-feedback {
  max-width: 520px;
  margin: 32px auto 0;
  padding: 20px 22px;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
  text-align: left;
}
.f2-feedback p {
  font-family: var(--f-postcard);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 14px;
  max-width: none;
  line-height: 1.45;
}
.f2-feedback a {
  font-family: var(--f-condensed);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  display: inline-block;
  padding: 8px 18px 9px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--tomato);
  color: var(--paper);
  text-decoration: none;
}
.f2-feedback a:hover { transform: translate(-1px, -1px); box-shadow: 3px 3px 0 var(--ink); }
.f2 .mark {
  margin-top: 24px;
  font-family: var(--f-script);
  font-size: 24px;
  color: var(--tomato);
}

/* CATALOG HERO (quiet) */
.cat2-hero {
  padding: 56px 0 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.cat2-hero h1 {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(56px, 8vw, 132px);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 0;
}
.cat2-hero .sub {
  font-family: var(--f-postcard);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--ink-soft);
  margin: 14px 0 0;
  max-width: 720px;
  text-wrap: balance;
}
.cat2-stats {
  display: flex; flex-wrap: wrap; gap: 18px 32px;
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1.5px solid var(--ink);
}
.cat2-stats > div {
  display: flex; flex-direction: column; gap: 2px;
}
.cat2-stats .k {
  font-family: var(--f-condensed);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  color: var(--ink-faint);
}
.cat2-stats .v {
  font-family: var(--f-display);
  font-size: 24px;
  line-height: 1;
  color: var(--ink);
}
.cat2-stats .v.t { color: var(--tomato); }

/* section header */
.sec2 {
  margin-top: 56px;
  padding-bottom: 10px;
  border-bottom: 1.5px solid var(--ink);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.sec2 .label {
  font-family: var(--f-condensed);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--ink-faint);
}
.sec2 h2 {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 6px 0 0;
}
.sec2 .note {
  font-family: var(--f-postcard);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-soft);
  max-width: 280px;
  text-align: right;
}

/* clean perk card (v2) — no sale oval, no stamps */
.perk2 {
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: transform 0.1s, box-shadow 0.1s;
  box-shadow: 4px 4px 0 var(--ink);
}
.perk2:hover  { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.perk2:active { transform: translate(1px, 1px);   box-shadow: 2px 2px 0 var(--ink); }
.perk2-hero {
  height: 140px; border-bottom: 1.5px solid var(--ink); overflow: hidden;
  position: relative;
}

/* ── PerkImage: Unsplash-backed image component ──────────────────────────── */
.perk-img-wrap {
  width: 100%; height: 100%;
  position: relative;
  overflow: hidden;
}
.perk-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.perk-img--loaded { opacity: 1; }

/* Card hover attribution overlay */
.unsplash-attr {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 4px 8px 5px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  opacity: 0;
  transition: opacity 0.2s;
  font-size: 10px;
  font-family: var(--f-body);
  line-height: 1.3;
  pointer-events: none;
}
.perk2-hero:hover .unsplash-attr,
.wv2-bridge-hero:hover .unsplash-attr {
  opacity: 1;
  pointer-events: auto;
}
.unsplash-attr a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}
.unsplash-attr a:hover { text-decoration: underline; }

/* Detail page attribution line */
.photo-attr {
  font-family: var(--f-type);
  font-size: 11px;
  color: var(--ink-faint);
  margin: 6px 0 0;
  line-height: 1.4;
}
.photo-attr a {
  color: var(--ink-faint);
  text-decoration: underline;
}
.photo-attr a:hover { color: var(--ink); }
.perk2-hero .ribbon {
  position: absolute;
  top: 10px; left: 10px;
  font-family: var(--f-condensed);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
  background: var(--ink); color: var(--paper);
  padding: 3px 8px 4px;
  border-radius: 3px;
}
.perk2-hero .ribbon.lib { background: var(--paper); color: var(--ink); border: 1.5px solid var(--ink); }
.perk2-body {
  padding: 14px 14px 12px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
  min-width: 0; /* allow text to wrap inside grid columns */
}
.perk2-cat {
  font-family: var(--f-condensed); text-transform: uppercase;
  font-size: 10px; letter-spacing: 0.1em; color: var(--ink-faint);
}
.perk2-name {
  font-family: var(--f-display);
  font-size: clamp(16px, 2.4vw, 22px);
  line-height: 1.15;
  letter-spacing: -0.005em;
  overflow-wrap: break-word;
  hyphens: auto;
}
.perk2-blurb {
  font-family: var(--f-body); font-size: 13px; color: var(--ink-soft);
  line-height: 1.45; flex: 1;
}
.perk2-price {
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
  padding-top: 10px; margin-top: 4px;
  border-top: 1px dashed var(--ink);
  min-width: 0;
}
.perk2-price .perk2-price-label {
  font-family: var(--f-condensed); font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.perk2-price .now {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--tomato);
  letter-spacing: 0.02em;
  /* Prevent long values ($1,500 /year) from overflowing the card */
  overflow-wrap: break-word;
  min-width: 0;
  max-width: 100%;
}
.perk2-price .now small {
  font-family: var(--f-type);
  font-size: 11px;
  color: var(--ink-soft);
  margin-left: 4px;
  letter-spacing: 0;
}
.perk2-cta {
  border-top: 1.5px solid var(--ink);
  padding: 9px 14px;
  font-family: var(--f-condensed);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  display: flex; justify-content: flex-start; align-items: center;
  background: var(--paper);
  color: var(--ink);
}
.perk2.in-perks .perk2-cta { background: var(--ink); color: var(--paper); }

/* layout */
.cat2-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
}
.cat2-grid.three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1100px) {
  .cat2-grid, .cat2-grid.three { grid-template-columns: repeat(2, 1fr); }
  .cat2-grid > .perk2 { min-width: 0; }
}
@media (max-width: 640px) {
  .perk2-name {
    font-size: clamp(15px, 4.6vw, 18px);
    line-height: 1.2;
    letter-spacing: 0;
  }
  .perk2-body { padding: 12px 12px 10px; }
  /* Scale the retail value down on phones so "$1,500 /year" etc. stays in-card */
  .perk2-price .now { font-size: clamp(14px, 3.8vw, 18px); }
}

.cat2-wrap {
  max-width: 1480px;
  margin: 0 auto;
  padding: 0 28px 80px;
}
.cat2-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  margin-top: 28px;
}
@media (max-width: 1100px) {
  .cat2-layout { grid-template-columns: 1fr; }
}

/* Mobile / tablet: single filter drawer */
.cat2-facets-bar {
  display: none;
}
@media (max-width: 1099px) {
  /* ── bar row that holds the trigger + clear ── */
  .cat2-facets-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    grid-column: 1 / -1;
    margin-bottom: 10px;
  }

  /* ── "Filters" toggle button ── */
  .cat2-facets-trigger {
    appearance: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-condensed);
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-size: 13px;
    padding: 10px 18px 11px;
    border: 1.5px solid var(--ink);
    border-radius: 8px;
    background: var(--paper);
    color: var(--ink);
    cursor: pointer;
    transition: background 0.12s ease, color 0.12s ease;
  }
  .cat2-facets-trigger.is-open {
    background: var(--ink);
    color: var(--paper);
  }
  .cat2-facets-trigger::after {
    content: '▾';
    font-size: 11px;
    opacity: 0.5;
    transition: transform 0.18s ease, opacity 0.12s ease;
  }
  .cat2-facets-trigger.is-open::after {
    transform: rotate(180deg);
    opacity: 0.7;
  }

  /* ── active-filter count badge (match .h2-nav .count) ── */
  .cat2-facets-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--tomato);
    color: var(--paper);
    font-family: var(--f-type);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1;
  }
  .cat2-facets-trigger.is-open .cat2-facets-badge {
    background: rgba(255, 255, 255, 0.22);
  }

  /* ── "Clear" link ── */
  .cat2-facets-clear {
    appearance: none;
    font-family: var(--f-body);
    font-size: 13px;
    padding: 0;
    border: none;
    background: transparent;
    color: var(--ink-faint);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color 0.1s ease;
  }
  .cat2-facets-clear:hover { color: var(--ink); }

  /* ── the drawer panel itself ── */
  .cat2-facets--drawer {
    display: none;
    grid-column: 1 / -1;
    position: static;
    border-right: none;
    border: 1.5px solid rgba(26, 35, 66, 0.25);
    border-radius: 12px;
    padding: 0 24px 22px;
    margin-bottom: 12px;
    background: var(--paper);
    box-shadow: 0 2px 12px rgba(26, 35, 66, 0.06);
  }
  .cat2-facets--drawer.is-open {
    display: block;
  }

  /* ── drawer header: "Filter perks" + close ── */
  .cat2-facets-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 14px;
    margin-bottom: 4px;
    border-bottom: 1px solid rgba(26, 35, 66, 0.12);
    font-family: var(--f-condensed);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 10px;
    color: var(--ink-faint);
  }
  .cat2-facets-close {
    appearance: none;
    border: none;
    background: transparent;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    line-height: 1;
    color: var(--ink-faint);
    cursor: pointer;
    transition: background 0.12s ease, color 0.12s ease;
  }
  .cat2-facets-close:hover {
    background: rgba(26, 35, 66, 0.07);
    color: var(--ink);
  }
}

.cat2-facets {
  padding: 0 16px 0 0;
}
@media (min-width: 1100px) {
  .cat2-facets {
    position: sticky;
    top: 80px;
    align-self: start;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-gutter: stable;
  }
}
/* Drawer lives inside .cat2-facets — must win over sidebar padding above */
@media (max-width: 1099px) {
  aside.cat2-facets.cat2-facets--drawer {
    padding: 0 24px 24px;
    /* border-right: none; */
  }
  aside.cat2-facets.cat2-facets--drawer .cat2-facets-drawer-head,
  aside.cat2-facets.cat2-facets--drawer .cat2-facet-sum,
  aside.cat2-facets.cat2-facets--drawer .list {
    padding-left: 2px;
    padding-right: 2px;
  }
}
.cat2-facet-group {
  border-bottom: 1px solid rgba(26, 35, 66, 0.1);
  padding-bottom: 14px;
  margin-bottom: 14px;
}
.cat2-facet-group:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
/* In the drawer, add top padding so first group breathes */
.cat2-facets--drawer .cat2-facet-group:first-of-type {
  padding-top: 6px;
}
.cat2-facet-sum {
  font-family: var(--f-condensed);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  margin: 0 0 10px;
  padding: 6px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}
.cat2-facet-sum::-webkit-details-marker { display: none; }
.cat2-facet-sum::after {
  content: '▾';
  font-size: 10px;
  color: var(--ink-faint);
  transition: transform 0.18s ease;
}
.cat2-facet-group:not([open]) .cat2-facet-sum::after {
  transform: rotate(-90deg);
}
.cat2-facets .list {
  display: flex;
  flex-direction: column;
  gap: 0;
  font-family: var(--f-body);
  font-size: 14px;
}
.cat2-facets label {
  display: flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  padding: 5px 0;
  color: var(--ink);
  border-radius: 4px;
  transition: background 0.1s ease;
}
.cat2-facets label:hover { background: rgba(26, 35, 66, 0.04); padding-left: 4px; padding-right: 4px; margin: 0 -4px; }
.cat2-facets label input {
  accent-color: var(--tomato);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.cat2-facets .count {
  margin-left: auto;
  color: var(--ink-faint);
  font-family: var(--f-type);
  font-size: 11px;
}

.cat2-toolbar {
  display: flex; align-items: center; gap: 12px;
  margin: 8px 0 4px;
  flex-wrap: wrap;
}
.cat2-toolbar .input {
  flex: 1; min-width: 240px;
  display: flex; align-items: center; gap: 8px;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  padding: 8px 14px;
  font-family: var(--f-type);
  font-size: 14px;
}
.cat2-toolbar .input input {
  flex: 1; border: none; outline: none; background: transparent;
  font: inherit; color: var(--ink);
}
.cat2-toolbar .chip {
  appearance: none;
  font-family: var(--f-condensed); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 11px;
  padding: 5px 10px 6px;
  border: 1.5px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  border-radius: 999px;
  cursor: pointer;
}
.cat2-toolbar .chip.on { background: var(--ink); color: var(--paper); }
.cat2-toolbar .count {
  margin-left: auto;
  font-family: var(--f-type); font-size: 12px; color: var(--ink-faint);
}
.cat2-empty {
  margin-top: 20px;
  border: 1.5px dashed var(--ink);
  border-radius: 10px;
  padding: 18px;
  font-family: var(--f-type);
  font-size: 14px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.4);
}

/* DETAIL v2 */
.det2 { max-width: 1280px; margin: 0 auto; padding: 0 28px 80px; }
.det2 .crumbs { display: flex; gap: 10px; align-items: center; padding: 18px 0 12px; }
.det2 .crumbs button {
  border: 1.5px solid var(--ink); background: var(--paper); color: var(--ink);
  font-family: var(--f-condensed); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 11px; padding: 5px 12px 6px; border-radius: 999px; cursor: pointer;
}
.det2 .crumbs .path {
  font-family: var(--f-type); font-size: 11px; color: var(--ink-faint);
}
.det2-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px;
  margin-top: 18px;
}
@media (max-width: 1000px) { .det2-grid { grid-template-columns: 1fr; } }
.det2 h1 {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin: 0 0 6px;
}
.det2 .lede {
  font-family: var(--f-postcard); font-style: italic;
  font-size: 22px; line-height: 1.35; color: var(--ink-soft);
  text-wrap: balance;
}
.det2 .meta-row {
  display: flex; gap: 10px; flex-wrap: wrap; align-items: center;
  margin: 0 0 10px;
}
.det2 .meta-row .tag {
  font-family: var(--f-condensed); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 11px; color: var(--ink-faint);
}
.det2 .meta-row .pill {
  font-family: var(--f-condensed); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 10px;
  padding: 3px 9px 4px;
  background: var(--paper); color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
}
.det2 .photo {
  margin-top: 28px;
  border: 1.5px solid var(--ink); border-radius: 8px; overflow: hidden;
  height: 360px; box-shadow: 4px 4px 0 var(--ink);
}
.det2 h3 {
  font-family: var(--f-condensed);
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 13px; color: var(--ink-faint);
  margin: 28px 0 10px;
}
.det2 ol.steps {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 8px;
  counter-reset: s;
}
.det2 ol.steps li {
  counter-increment: s;
  display: grid; grid-template-columns: 28px 1fr; gap: 14px;
  padding: 10px 12px;
  border: 2px dashed var(--ink);
  border-radius: 8px;
  background: var(--paper);
  font-family: var(--f-body); font-size: 14px;
  align-items: start;
}
.det2 ol.steps li::before {
  content: counter(s);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  min-height: 28px;
  border-radius: 0;
  background: none;
  color: var(--tomato);
  font-family: var(--f-display);
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}
.det2 ol.steps li .step-body {
  min-width: 0;
  line-height: 1.45;
}
.det2 ol.steps li a {
  display: inline;
  color: var(--tomato);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.det2 ol.steps li a:hover { color: var(--ink); }
.det2 .faq {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 24px;
}
.det2 .faq > div {
  border: 1.5px solid var(--ink);
  border-radius: 8px;
  padding: 14px;
}
.det2 .faq h5 {
  font-family: var(--f-condensed);
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 11px; color: var(--ink-faint);
  margin: 0 0 6px;
}
.det2 .faq div p, .det2 .faq div .body { font-family: var(--f-body); font-size: 14px; line-height: 1.5; color: var(--ink-soft); }

.det2 .llm {
  margin-top: 24px;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  padding: 16px;
  background: var(--ink);
  color: var(--paper);
  position: relative;
}
.det2 .llm.det2-llm-footer {
  margin-top: 48px;
}
.det2 .llm h5 {
  font-family: var(--f-condensed);
  letter-spacing: 0.04em;
  font-size: 12px; color: var(--sun);
  margin: 0 0 4px;
  text-transform: none;
}
.det2 .llm p {
  font-family: var(--f-type); font-size: 11px;
  color: rgba(251,243,223,0.7);
  margin: 4px 0 8px; line-height: 1.5;
}
.det2 .llm pre {
  margin: 0; max-height: 160px; overflow: auto;
  font-family: var(--f-type); font-size: 11px;
  line-height: 1.5;
  white-space: pre-wrap;
}
.det2 .llm .copy {
  position: absolute; top: 14px; right: 14px;
  background: var(--sun); color: var(--ink);
  font-family: var(--f-condensed); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 11px;
  padding: 5px 12px 6px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
}

/* BUY BOX v2 — quiet */
.det2-buy {
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  padding: 22px;
  position: sticky; top: 88px; align-self: start;
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
}
.det2-buy .row1 {
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--ink);
}
.det2-buy .retail {
  font-family: var(--f-condensed); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 11px; color: var(--ink-faint);
}
.det2-buy .retail s {
  font-family: var(--f-display);
  font-size: 22px;
  color: var(--ink);
  text-decoration: line-through;
  letter-spacing: -0.005em;
  margin-left: 6px;
}
.det2-buy .pay {
  font-family: var(--f-display);
  font-size: 80px;
  line-height: 0.9;
  color: var(--tomato);
  margin: 14px 0 4px;
}
.det2-buy .pay-sub {
  font-family: var(--f-postcard); font-style: italic;
  font-size: 15px; color: var(--ink-soft);
}
.det2-buy .actions { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.det2-buy .actions a, .det2-buy .actions button {
  font-family: var(--f-display);
  text-transform: uppercase; letter-spacing: 0.06em;
  font-size: 15px;
  padding: 14px 18px;
  border: 2px solid var(--ink);
  cursor: pointer; text-align: center; text-decoration: none;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 0.08s, box-shadow 0.08s;
  display: block;
}
.det2-buy .actions a:hover, .det2-buy .actions button:hover {
  transform: translate(-1px,-1px); box-shadow: 5px 5px 0 var(--ink);
}
.det2-buy .actions .primary { background: var(--tomato); color: var(--paper); }
.det2-buy .actions .secondary { background: var(--paper); color: var(--ink); }
.det2-buy .actions .secondary.on { background: var(--ink); color: var(--paper); }
.det2-buy .quick {
  list-style: none; margin: 18px 0 0; padding: 14px 0 0;
  border-top: 1px dashed var(--ink);
  font-family: var(--f-body); font-size: 13px; line-height: 1.7;
  color: var(--ink-soft);
}
.det2-buy .quick li::before {
  content: "·"; margin-right: 8px; color: var(--tomato);
}

/* PERKS LIST v2 */
.pl2-wrap { max-width: 1280px; margin: 0 auto; padding: 0 28px 80px; }
.pl2-hero { padding: 56px 0 24px; }
.pl2-hero h1 {
  font-family: var(--f-display);
  text-transform: uppercase;
  font-size: clamp(48px, 7vw, 100px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0;
}
.pl2-hero .sub {
  font-family: var(--f-postcard); font-style: italic;
  font-size: 22px; color: var(--ink-soft); margin-top: 12px;
}
.pl2-actions { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.pl2-actions button {
  font-family: var(--f-condensed); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 12px;
  background: var(--paper); color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 8px 16px 9px;
  cursor: pointer;
}
.pl2-actions button.primary { background: var(--tomato); color: var(--paper); }
.pl2-actions button:disabled { opacity: 0.45; cursor: not-allowed; }
.pl2-feedback-link {
  font-family: var(--f-condensed); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 12px;
  background: var(--paper); color: var(--ink);
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  padding: 8px 16px 9px;
  text-decoration: none;
  display: inline-flex; align-items: center;
}
.pl2-feedback-link:hover { background: var(--paper-2); }

.pl2-row {
  display: grid;
  grid-template-columns: 48px 1fr auto auto;
  gap: 18px;
  align-items: center;
  padding: 16px 18px;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  background: var(--paper);
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
  margin-bottom: 12px;
  transition: transform 0.08s, box-shadow 0.08s;
}
.pl2-row:hover { transform: translate(-1px,-1px); box-shadow: 5px 5px 0 var(--ink); }
.pl2-row .num {
  font-family: var(--f-display); font-size: 26px; color: var(--tomato);
}
.pl2-row .name {
  font-family: var(--f-display); font-size: 22px; line-height: 1.1;
}
.pl2-row .meta {
  font-family: var(--f-type); font-size: 11px; color: var(--ink-faint);
  margin-top: 4px;
}
.pl2-row .price {
  font-family: var(--f-display); font-size: 20px; color: var(--tomato); text-align: right;
}
.pl2-row .price small {
  font-family: var(--f-type); font-size: 11px; color: var(--ink-soft); display: block;
}
.pl2-row .actions { display: flex; flex-direction: column; gap: 6px; }
.pl2-row .actions a, .pl2-row .actions button {
  font-family: var(--f-condensed); text-transform: uppercase; letter-spacing: 0.1em;
  font-size: 11px;
  padding: 5px 12px 6px;
  border: 1.5px solid var(--ink);
  border-radius: 999px;
  background: var(--paper); color: var(--ink);
  cursor: pointer; text-decoration: none; text-align: center;
}
.pl2-row .actions a.primary { background: var(--tomato); color: var(--paper); }

.pl2-empty {
  text-align: center;
  padding: 80px 20px;
  border: 1.5px dashed var(--ink);
  border-radius: 10px;
  margin-top: 28px;
}
.pl2-empty .ico {
  font-family: var(--f-display);
  font-size: 80px; color: var(--tomato); line-height: 1;
}
.pl2-empty p {
  font-family: var(--f-postcard); font-style: italic;
  font-size: 22px; color: var(--ink-soft); margin: 16px 0 24px;
}

.pl2-total {
  margin-top: 32px;
  padding: 22px 24px;
  border: 1.5px solid var(--ink);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
}
.pl2-total .label {
  font-family: var(--f-condensed); text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 12px; color: var(--ink-faint);
}
.pl2-total .amt {
  font-family: var(--f-display); font-size: 56px; line-height: 1; color: var(--tomato);
}
.pl2-total .note {
  font-family: var(--f-postcard); font-style: italic;
  font-size: 18px; color: var(--ink-soft); max-width: 420px; text-align: right;
}

@media (max-width: 640px) {
  .pl2-wrap { padding: 0 16px 64px; }
  .pl2-hero { padding: 40px 0 20px; }
  .pl2-hero .sub { font-size: 18px; }

  .pl2-row {
    grid-template-columns: 40px 1fr;
    gap: 12px 14px;
    align-items: start;
    min-width: 0;
  }
  .pl2-row .num { grid-column: 1; grid-row: 1; font-size: 22px; }
  .pl2-row > div:not(.num):not(.price):not(.actions) {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
  }
  .pl2-row .name { font-size: 18px; }
  .pl2-row .price {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }
  .pl2-row .actions {
    grid-column: 1 / -1;
    grid-row: 3;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .pl2-total {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
  }
  .pl2-total .amt { font-size: 44px; }
  .pl2-total .note {
    max-width: none;
    text-align: left;
  }
}
