/* ============================================================
 * pdp.css — Product Detail Page
 * Builds on top of tokens.css + main.css.
 * Do not duplicate chrome already in main.css.
 * ============================================================ */

/* ============================================================
 * Breadcrumb
 * ============================================================ */
.pdp-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm) var(--gutter);
  max-width: 1180px;
  margin: 0 auto;
  font-size: var(--text-label);
  color: var(--sub);
  letter-spacing: 0.05em;
}

.pdp-breadcrumb__back {
  color: var(--sub);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: var(--text-label);
  flex-shrink: 0;
  transition: color var(--dur-fast) var(--ease);
}
.pdp-breadcrumb__back:hover { color: var(--ink); }

.pdp-breadcrumb__trail {
  display: none; /* mobile: just show ← Shop */
  gap: 6px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.pdp-breadcrumb__trail li { display: flex; align-items: center; }
.pdp-breadcrumb__trail a {
  color: var(--sub);
  transition: color var(--dur-fast) var(--ease);
}
.pdp-breadcrumb__trail a:hover { color: var(--ink); }
.pdp-breadcrumb__trail [aria-current="page"] { color: var(--ink); }

@media (min-width: 720px) {
  .pdp-breadcrumb__back { display: none; }
  .pdp-breadcrumb__trail { display: flex; }
}

/* ============================================================
 * PDP Layout — single column mobile, 2-col desktop
 * ============================================================ */
.pdp-layout {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 var(--gutter) var(--space-2xl);
  gap: 0;
}

@media (min-width: 860px) {
  .pdp-layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: var(--space-xl);
    align-items: start;
    padding-top: var(--space-md);
  }
}

/* ============================================================
 * Gallery
 * ============================================================ */
.pdp-gallery__main {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--soft);
}

.pdp-gallery__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain; /* ghost images — show full garment on white */
  background: var(--bg);
  display: block;
  transition: opacity var(--dur-mid) var(--ease);
}

.pdp-gallery__vtag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--ink);
  color: var(--bg);
  font-size: 0.62rem;
  font-weight: var(--w-semi);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 11px;
  z-index: 2;
  cursor: pointer;            /* it's a <button>; pdp.js wires onclick to open the fit video */
  user-select: none;
}

/* Single-column large gallery — the hero (.pdp-gallery__main) plus these
   full-width shots stacked below it. You scroll through every image at size;
   the buy panel stays pinned (desktop) until the last shot. No click-to-swap. */
.pdp-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-sm) 0 0;
}
.pdp-gallery__shot {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--soft);
}
.pdp-gallery__shot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pdp-gallery__shot--play {
  cursor: pointer;
  border: 0;
  padding: 0;
}

/* ============================================================
 * Info column
 * ============================================================ */
.pdp-info {
  padding-top: var(--space-md);
}

@media (min-width: 860px) {
  .pdp-info {
    position: sticky;
    top: calc(var(--nav-h) + var(--space-md));
    border: 1px solid var(--line);
    padding: var(--space-md) clamp(16px, 2vw, 24px) var(--space-lg);
  }
}

/* Product header */
.pdp-info__eyebrow {
  display: block;
  font-size: var(--text-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.pdp-info__title {
  font-family: var(--serif);
  font-weight: var(--w-semi);
  font-size: clamp(1.45rem, 1.2rem + 1.25vw, 1.9rem);
  line-height: 1.05;
  color: var(--ink);
  margin: 0 0 var(--space-sm);
}

.pdp-info__meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin-bottom: var(--space-md);
}

.pdp-info__price {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: var(--w-semi);
  color: var(--ink);
}

.pdp-info__rating {
  font-size: var(--text-label);
  color: var(--sub);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.pdp-info__rating svg,
.pdp-info__rating span:first-child { color: var(--ink); }

.pdp-info__rating-count {
  color: var(--sub);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--dur-fast) var(--ease);
}
.pdp-info__rating-count:hover { color: var(--ink); }

.pdp-info__fit-tag {
  font-size: 0.72rem;
  font-weight: var(--w-semi);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--ink);            /* solid black like the gallery fit-video tag — was faint grey and got lost */
  border: 1px solid var(--ink);
  padding: 4px 10px;
}

/* ============================================================
 * Option rows (colour / top size / bottom size)
 * ============================================================ */
.pdp-opt {
  margin-bottom: var(--space-md);
}

.pdp-opt__label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: var(--text-label);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sub);
  margin-bottom: 8px;
}
.pdp-opt__label strong {
  color: var(--ink);
  font-weight: 800; /* super bold — selected colour / size value */
  letter-spacing: 0;
  text-transform: none;
}
/* Selected COLOUR name tinted in its own colour (data-colour set by pdp.js).
   Yellow is deepened to an amber so it stays legible + pronounced on white. */
#colourSelected[data-colour="Blue"]   { color: #1f6dc2; }
#colourSelected[data-colour="Pink"]   { color: #c02a78; }
#colourSelected[data-colour="Yellow"] { color: #946400; }
#colourSelected[data-colour="Mint"]   { color: #1f7d5f; }
#colourSelected[data-colour="Red"]    { color: #c2392f; }
#colourSelected[data-colour="Black"]  { color: var(--ink); }
#colourSelected[data-colour="White"]  { color: var(--sub); }

/* Colour swatches — ghost-image thumbnails */
.pdp-opt__swatches {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.pdp-swatch {
  /* 64px swatch; 60px visual image inside */
  width: 64px;
  height: 64px;
  min-width: 64px;
  padding: 2px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--bg);
  cursor: pointer;
  transition: outline-color var(--dur-fast) var(--ease),
              border-color var(--dur-fast) var(--ease);
  outline: 2px solid transparent;
  outline-offset: 2px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pdp-swatch img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.pdp-swatch:focus-visible {
  outline-color: var(--ink);
}
.pdp-swatch--active {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
  border: 2px solid var(--ink);
  padding: 1px;
}

/* Size buttons */
.pdp-opt__sizes {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.pdp-size {
  min-width: 64px;
  min-height: 44px; /* HIG 44px tap target */
  padding: 0 var(--space-md);
  font-size: var(--text-label);
  font-weight: var(--w-regular);
  letter-spacing: 0.04em;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
  transition:
    background var(--dur-fast) var(--ease),
    color var(--dur-fast) var(--ease),
    border-color var(--dur-fast) var(--ease);
}
.pdp-size:hover:not(:disabled) {
  border-color: var(--ink);
}
.pdp-size--active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  font-weight: var(--w-semi); /* a touch more pronounced when selected */
}
.pdp-size--out {
  color: var(--line);
  text-decoration: line-through;
  cursor: not-allowed;
  border-color: var(--line);
}
.pdp-size:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

/* ============================================================
 * Mix-and-match note + stock
 * ============================================================ */
.pdp-mixnote {
  font-size: var(--text-label);
  color: var(--sub);
  line-height: 1.5;
  margin: 0 0 var(--space-sm);
  padding: var(--space-sm) 0;
  border-top: 1px solid var(--line);
}
.pdp-mixnote span { color: var(--ink); }

/* WS4: mix-size pill — high-contrast (NOT grey micro-text), sits above the
   TOP SIZE label on icon + rush. Same type scale as the size labels. */
.pdp-mixpill {
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: var(--text-label);
  letter-spacing: 0.04em;
  line-height: 1.45;
  padding: var(--space-sm) var(--space-md);
  margin-bottom: var(--space-md);
}

/* WS4: incomplete-selection pulse on the unfilled size group(s). Animates only
   paint-cheap / compositor properties (outline-color + opacity) — no layout
   properties. The static outline stays perceivable when motion is disabled. */
.pdp-opt--pulse {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
  animation: pdp-opt-pulse 1.5s var(--ease);
}
@keyframes pdp-opt-pulse {
  0%, 100% { outline-color: var(--ink); opacity: 1; }
  50%      { outline-color: var(--line); opacity: 0.85; }
}

.pdp-stock {
  font-size: var(--text-label);
  color: #b1632f; /* warm urgency — not in token palette */
  letter-spacing: 0.04em;
  margin: 0 0 var(--space-md);
}

/* ============================================================
 * Add to bag + ShopPay
 * ============================================================ */
.pdp-addbar {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.pdp-addbar__add {
  min-height: 52px; /* generous tap target */
  background: var(--ink);
  color: var(--bg);
  font-size: var(--text-label);
  font-weight: var(--w-semi);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  padding: 0 var(--space-md);
  transition: opacity var(--dur-fast) var(--ease);
}
.pdp-addbar__add:hover { opacity: 0.82; }
.pdp-addbar__add:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}
.pdp-addbar__add--added {
  opacity: 0.7;
}
/* WS4: gated (incomplete-selection) state — the existing border look, NOT the
   black fill. box-sizing:border-box keeps the 52px height stable with the 1px
   border. Price node is hidden until a size is chosen. */
.pdp-addbar__add--gated {
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--ink);
}
.pdp-addbar__add--gated [data-price-aud] { display: none; }

.pdp-addbar__pay {
  min-height: 48px;
  background: #000;                 /* matches the announcement bar: black + neon pink */
  color: #FF1493;
  font-size: var(--text-body);
  font-weight: 800;                 /* bolder pink — matches the drawer save/checkout CTAs */
  letter-spacing: 0.01em;
  border: 1px solid #000;
  cursor: pointer;
  padding: 0 var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.pdp-addbar__pay:hover { background: #FF1493; color: #000; }
.pdp-addbar__pay svg { flex-shrink: 0; }

/* ============================================================
 * Trust row
 * ============================================================ */
.pdp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
  justify-content: center;
  list-style: none;
  margin: 0 0 var(--space-md);
  padding: var(--space-sm) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-size: var(--text-label);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sub);
}
.pdp-trust strong {
  color: var(--ink);
  font-weight: var(--w-semi);
}
.pdp-trust li[aria-hidden] {
  color: var(--line);
  font-weight: var(--w-regular);
}

/* ============================================================
 * Accordions
 * ============================================================ */
.pdp-accordions {
  border-top: 1px solid var(--line);
}

.pdp-acc {
  border-bottom: 1px solid var(--line);
}

.pdp-acc__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-sm) 0;
  font-size: var(--text-body);
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  min-height: 44px; /* tap target */
  user-select: none;
}
/* Remove default marker */
.pdp-acc__summary::-webkit-details-marker { display: none; }
.pdp-acc__summary::marker { display: none; }

.pdp-acc__icon {
  font-size: 1.1rem;
  color: var(--sub);
  transition: transform var(--dur-fast) var(--ease);
  flex-shrink: 0;
}
.pdp-acc[open] .pdp-acc__icon {
  transform: rotate(45deg);
}
.pdp-acc__summary:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}

.pdp-acc__body {
  padding: 0 0 var(--space-md);
  font-size: var(--text-body);
  color: var(--sub);
  line-height: 1.6;
}
.pdp-acc__body strong { color: var(--ink); }

/* ============================================================
 * Fit scale
 * ============================================================ */
.pdp-fitscale {
  margin-top: var(--space-md);
  font-size: var(--text-label);
  color: var(--sub);
}

.pdp-fitscale__label {
  margin: 0 0 6px;
  font-size: var(--text-label);
  letter-spacing: 0.02em;
  color: var(--sub);
}
.pdp-fitscale__label span { color: var(--sub); }

.pdp-fitscale__track {
  height: 6px;
  background: var(--soft);
  border: 1px solid var(--line);
  position: relative;
  margin-top: 4px;
}

.pdp-fitscale__pin {
  position: absolute;
  top: -4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink);
  transform: translateX(-50%);
}

/* Show fit scale in info column on desktop; show in reviews on mobile */
.pdp-fitscale { display: none; }
.pdp-fitscale--reviews { display: block; margin-bottom: var(--space-md); }

@media (min-width: 860px) {
  .pdp-fitscale { display: block; }
  .pdp-fitscale--reviews { display: none; }
}

/* ============================================================
 * Editorial blurb
 * ============================================================ */
.pdp-blurb {
  background: var(--soft);
  padding: clamp(20px, 4vw, 40px) var(--gutter);
  margin-top: 0;
}
.pdp-blurb__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.pdp-blurb__heading {
  font-family: var(--serif);
  font-weight: var(--w-semi);
  font-size: clamp(1.3rem, 1.1rem + 1vw, 1.65rem);
  color: var(--ink);
  margin: 0 0 var(--space-sm);
  line-height: 1.1;
}
.pdp-blurb__body {
  font-size: var(--text-body);
  color: var(--sub);
  max-width: 54ch;
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
 * Reviews
 * ============================================================ */
.pdp-reviews {
  padding: clamp(20px, 4vw, 36px) var(--gutter);
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.pdp-reviews__inner {
  max-width: 1180px;
  margin: 0 auto;
}
.pdp-reviews__heading {
  font-family: var(--serif);
  font-weight: var(--w-semi);
  font-size: clamp(1.3rem, 1.1rem + 1vw, 1.65rem);
  color: var(--ink);
  margin: 0 0 4px;
  line-height: 1.1;
}
.pdp-reviews__agg {
  font-size: var(--text-label);
  color: var(--sub);
  letter-spacing: 0.04em;
  margin: 0 0 var(--space-md);
}

.pdp-quotes {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

@media (min-width: 720px) {
  .pdp-quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
  }
}

.pdp-quote {
  border-left: 2px solid var(--ink);
  padding-left: var(--space-md);
  margin: 0;
}
.pdp-quote p {
  font-family: var(--serif);
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.15rem);
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 4px;
}
.pdp-quote footer cite {
  display: block;
  font-style: normal;
  font-size: var(--text-label);
  color: var(--sub);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* Third quote — desktop only */
.pdp-quote--desktop { display: none; }
@media (min-width: 720px) {
  .pdp-quote--desktop { display: block; }
}

.pdp-reviews__readall {
  display: inline-block;
  font-size: var(--text-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity var(--dur-fast) var(--ease);
}
.pdp-reviews__readall:hover { opacity: 0.6; }

/* ============================================================
 * Sticky ATC bar — mobile only
 * ============================================================ */
.pdp-sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: var(--space-sm) var(--gutter);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  z-index: 200;
  /* Start hidden; JS shows it on scroll */
  transform: translateY(100%);
  transition: transform var(--dur-mid) var(--ease);
}
.pdp-sticky--visible {
  transform: translateY(0);
}

.pdp-sticky__price {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: var(--w-semi);
  color: var(--ink);
  flex-shrink: 0;
}

.pdp-sticky__add {
  flex: 1;
  min-height: 44px;
  background: var(--ink);
  color: var(--bg);
  font-size: var(--text-label);
  font-weight: var(--w-semi);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  padding: 0 var(--space-md);
  transition: opacity var(--dur-fast) var(--ease);
}
.pdp-sticky__add:hover { opacity: 0.82; }
.pdp-sticky__add:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}
/* WS4: sticky gated state mirrors the buy-box gate; the sibling price is hidden
   via the gated class on #pdpStickyBar so the bar reads "Select your size(s)". */
.pdp-sticky__add--gated {
  background: var(--bg);
  color: var(--ink);
  border: 1px solid var(--ink);
}
.pdp-sticky--gated .pdp-sticky__price { display: none; }

/* Hide sticky bar on desktop */
@media (min-width: 860px) {
  .pdp-sticky { display: none; }
}

/* ============================================================
 * Add-to-bag confirmation toast (client-side only, Phase 4 wires backend)
 * ============================================================ */
.pdp-toast {
  position: fixed;
  top: calc(var(--nav-h) + var(--space-md));
  left: 50%;
  transform: translateX(-50%) translateY(-120%);
  background: var(--ink);
  color: var(--bg);
  font-size: var(--text-label);
  font-weight: var(--w-semi);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--space-sm) var(--space-lg);
  z-index: 300;
  white-space: nowrap;
  pointer-events: none;
  transition: transform var(--dur-mid) var(--ease), opacity var(--dur-mid) var(--ease);
  opacity: 0;
}
.pdp-toast--visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ============================================================
 * Reduced motion
 * ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .pdp-gallery__img,
  .pdp-swatch,
  .pdp-size,
  .pdp-addbar__add,
  .pdp-addbar__pay,
  .pdp-sticky,
  .pdp-opt--pulse,
  .pdp-toast,
  .pdp-acc__icon {
    transition: none !important;
    animation: none !important;
  }
}

/* ============================================================
 * Fit-video affordances (tags become <button>; video carousel slide)
 * Hidden by default (hidden attr); pdp.js reveals when a video exists.
 * ============================================================ */
.pdp-gallery__vtag,
.pdp-info__fit-tag {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}
.pdp-gallery__vtag:focus-visible,
.pdp-info__fit-tag:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
}
.pdp-gallery__vtag:hover,
.pdp-info__fit-tag:hover { opacity: 0.85; }

/* Fit-video "play" tile — uses the lead photo as poster + a play glyph */
.pdp-gallery__thumb--play::after,
.pdp-gallery__shot--play::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(16,16,16,0.32);
}
.pdp-gallery__thumb-play,
.pdp-gallery__shot-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--ink);            /* solid black so it never gets lost on white ghost images */
  color: var(--bg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  padding-left: 2px;                 /* optically centre the play glyph */
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
 * Customer reviews (assets/reviews.js) — per-product
 * ============================================================ */
.rv-stars { display: inline-flex; letter-spacing: 1px; line-height: 1; }
.rv-star { color: var(--line); }
.rv-star.is-on { color: var(--ink); }

/* Compact rating next to the price */
.pdp-info__rating-mini {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-label);
  color: var(--sub);
  text-underline-offset: 2px;
}
.pdp-info__rating-mini:hover { color: var(--ink); text-decoration: underline; }
.pdp-info__rating-mini .rv-star { font-size: 0.85rem; }

/* Reviews section summary */
.pdp-reviews__summary {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  margin: 0 0 var(--space-md);
}
.pdp-reviews__avg {
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--ink);
}
.pdp-reviews__summary .rv-stars { font-size: 1rem; }
.pdp-reviews__count { font-size: var(--text-label); color: var(--sub); }

/* Review list — editorial two-column on desktop, single on mobile */
.pdp-reviews__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 720px) {
  .pdp-reviews__list { grid-template-columns: 1fr 1fr; gap: var(--space-lg) var(--space-2xl); }
}
.rv-card { border-top: 1px solid var(--line); padding-top: var(--space-md); }
.rv-card__head { display: flex; align-items: center; gap: var(--space-sm); margin-bottom: 6px; }
.rv-verified {
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sub);
}
.rv-card__title {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 4px;
}
.rv-card__body { font-size: var(--text-body); line-height: 1.55; color: var(--ink); margin: 0 0 6px; }
.rv-card__meta { font-size: var(--text-label); color: var(--sub); margin: 0; }

.pdp-reviews__more {
  margin-top: var(--space-lg);
  font-size: var(--text-label);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--ink);
  padding: 12px 22px;
  min-height: 44px;
  transition: background var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.pdp-reviews__more:hover { background: var(--ink); color: var(--bg); }
