/* ─────────────────────────────────────────────────────────────
   LOOTTR — storefront additions (on top of the lifted styles.css)
   Keep prototype-faithful primitives in styles.css; bespoke pieces here.
───────────────────────────────────────────────────────────── */

/* ── Confirmation: async status tracker ── */
.confirm-status {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 760px;
  margin: 0 auto 8px;
}
.confirm-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 auto;
  width: 150px;
}
.confirm-step__dot {
  width: 50px;
  height: 50px;
  border-radius: var(--r-pill);
  display: grid;
  place-items: center;
  font-size: 20px;
  background: var(--brand-paper);
  border: 2px solid var(--line);
  color: var(--ink-mute);
  margin-bottom: 12px;
}
.confirm-step.is-done .confirm-step__dot {
  background: var(--emerald);
  border-color: var(--emerald);
  color: #fff;
}
.confirm-step.is-active .confirm-step__dot {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
  animation: confirmPulse 1.7s ease-in-out infinite;
}
.confirm-step__label {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.25;
  color: var(--brand-ink);
}
.confirm-step__sub {
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 3px;
}
.confirm-step__line {
  flex: 1 1 auto;
  height: 2px;
  background: var(--line);
  margin-top: 24px;
  min-width: 20px;
  max-width: 90px;
}
.confirm-step__line.is-done {
  background: var(--emerald);
}
@keyframes confirmPulse {
  0%, 100% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--brand-primary) 45%, transparent); }
  50%      { box-shadow: 0 0 0 12px transparent; }
}

/* ── Confirmation: unified "live status" card (timeline + CTAs + share,
   all in one card) — replaces the old QR-pass column on the "paid" screen.
   Plain block layout on the outer card (not flex) on purpose: avoids the
   flex-item min-width/flex-basis inheritance pitfall the previous
   .confirm-status--card iteration hit, since every child here is already
   a natural full-width block. Card-chromed to match .order-summary on the
   opposite column for column symmetry. ── */
.live-status {
  background: var(--brand-paper);
  border: 1px solid var(--line);
  border-radius: var(--r-4);
  padding: var(--s-6);
  box-shadow: var(--sh-2);
  margin: 0 0 4px;
}
.live-status__row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.live-status__icon {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  background: var(--brand-paper);
  border: 2px solid var(--line);
  color: var(--ink-mute);
}
.live-status__icon.is-done {
  background: var(--emerald);
  border-color: var(--emerald);
  color: #fff;
}
.live-status__icon.is-active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
  animation: confirmPulse 1.7s ease-in-out infinite;
}
.live-status__pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: currentColor;
}
.live-status__body { flex: 1; min-width: 0; padding-top: 2px; }
.live-status__label { font-weight: 600; font-size: 14.5px; color: var(--brand-ink); line-height: 1.3; }
.live-status__sub { font-size: 12.5px; color: var(--ink-mute); margin-top: 2px; }
/* A short vertical segment centered under the 40px icon column (20px = half
   the icon's width), connecting consecutive rows into one real timeline. */
.live-status__line {
  width: 2px;
  height: 18px;
  margin: 0 0 0 19px;
  background: var(--line);
}
.live-status__line.is-done { background: var(--emerald); }
.live-status__divider {
  border-top: 1px solid var(--line);
  margin: 20px 0;
}
.live-status__cta {
  display: flex;
  width: 100%;
}
.live-status__cta + .live-status__cta { margin-top: 10px; }
.live-status__share-label {
  display: block;
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 10px;
}

/* ── Confirmation: order summary card ── */
.order-summary {
  background: var(--brand-paper);
  border: 1px solid var(--line);
  border-radius: var(--r-4);
  padding: var(--s-6);
  box-shadow: var(--sh-2);
}
.order-summary__preview {
  max-width: 280px;
  margin: 0 auto 20px;
}
.order-summary__rows {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.order-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
}
.order-summary__row span:first-child { color: var(--ink-soft); }
.order-summary__row span:last-child { font-weight: 600; text-align: right; }
.order-summary__note {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: var(--r-2);
  background: color-mix(in oklab, var(--brand-primary) 7%, transparent);
  color: var(--brand-ink);
  font-size: 13px;
  display: flex;
  gap: 9px;
  align-items: center;
}

/* ── Checkout: embedded Payment Brick ── */
.mp-brick-loading {
  padding: 14px 0;
}
.checkout-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin: 18px 0 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-mute);
  text-align: center;
}
.checkout-trust__stars {
  color: var(--mustard);
  letter-spacing: 1px;
}
.checkout-trust__sep {
  opacity: 0.5;
}

@media (max-width: 640px) {
  .confirm-status {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    max-width: 340px;
  }
  .confirm-step {
    flex-direction: row;
    width: auto;
    text-align: left;
    gap: 14px;
  }
  .confirm-step__dot { margin-bottom: 0; }
  .confirm-step__line { display: none; }
}

/* ── Legal pages (Términos / Privacidad) ── */
.legal-hero {
  padding: 56px 0 36px;
  border-bottom: 1px solid var(--line);
}
.legal-hero .eyebrow { margin-bottom: 14px; }
.legal-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  text-wrap: balance;
}
.legal-hero__lead {
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 62ch;
  margin: 0;
}
.legal-updated {
  font-size: 13px;
  color: var(--ink-mute);
  margin: 18px 0 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  padding: 48px 0 96px;
  align-items: start;
}
@media (max-width: 900px) {
  .legal-layout { grid-template-columns: 1fr; }
}

.legal-rail { position: sticky; top: 24px; }
@media (max-width: 900px) { .legal-rail { position: static; margin-bottom: 8px; } }
.legal-rail__label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 12px;
}
.legal-rail nav { display: flex; flex-direction: column; gap: 2px; }
.legal-rail a {
  font-size: 13.5px;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 6px 0 6px 12px;
  border-left: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.legal-rail a:hover { color: var(--brand-primary); border-left-color: color-mix(in oklab, var(--brand-primary) 40%, transparent); }

.legal-content { max-width: 720px; }

/* ── Blog ── */
.blog-grid {
  display: grid;
  gap: var(--gap-grid);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--brand-paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-3);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  .blog-card { transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s; }
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-2);
  border-color: color-mix(in oklab, var(--brand-primary) 30%, transparent);
}
.blog-card__cover { aspect-ratio: 16 / 10; background: var(--cream-deep); }
.blog-card__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card__cover-fallback {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: color-mix(in oklab, var(--brand-secondary) 10%, var(--cream-deep));
  opacity: 0.55;
}
.blog-card__body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.blog-card__date {
  font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-mute);
}
.blog-card__title {
  font-family: var(--font-display);
  font-size: 21px;
  line-height: 1.25;
  margin: 8px 0 8px;
}
.blog-card__excerpt { font-size: 14px; color: var(--ink-soft); line-height: 1.5; margin: 0 0 14px; }
.blog-card__link { margin-top: auto; font-size: 13.5px; font-weight: 600; color: var(--brand-primary); }

.blog-back {
  display: block;
  font-size: 13.5px;
  color: var(--ink-mute);
  text-decoration: none;
  margin-bottom: 20px;
}
.blog-back:hover { color: var(--brand-primary); }

.blog-post__cover {
  width: 100%;
  border-radius: var(--r-3);
  margin: 8px 0 32px;
  display: block;
}

.blog-post__body { font-size: 17px; line-height: 1.75; color: var(--ink-soft); }
.blog-post__body p { margin: 0 0 22px; }
.blog-post__body h2 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--ink);
  margin: 40px 0 16px;
}
.blog-post__body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--ink);
  margin: 32px 0 14px;
}
.blog-post__body ul, .blog-post__body ol { margin: 0 0 22px; padding-left: 22px; }
.blog-post__body li { margin-bottom: 8px; }
.blog-post__body a { color: var(--brand-primary); }
.blog-post__body img { max-width: 100%; height: auto; border-radius: var(--r-2); margin: 8px 0 22px; }
.blog-post__body blockquote {
  margin: 0 0 22px;
  padding: 4px 0 4px 18px;
  border-left: 3px solid var(--brand-primary);
  color: var(--ink-mute);
  font-style: italic;
}
.legal-clause { margin: 0 0 30px; scroll-margin-top: 24px; }
.legal-clause__head { display: flex; align-items: baseline; gap: 12px; margin: 0 0 10px; }
.legal-clause__num {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--brand-primary);
  font-size: 19px;
  flex: none;
  width: 28px;
}
.legal-clause h2 { font-size: 17px; font-weight: 650; margin: 0; letter-spacing: -0.005em; }
.legal-clause p { font-size: 15px; color: var(--ink-soft); margin: 0 0 10px; line-height: 1.6; }
.legal-clause ul { margin: 8px 0 10px; padding-left: 0; list-style: none; }
.legal-clause li {
  font-size: 14.5px; color: var(--ink-soft); padding-left: 18px; position: relative; margin: 5px 0;
  line-height: 1.55;
}
.legal-clause li::before { content: "—"; position: absolute; left: 0; color: var(--ink-mute); }

.legal-privacy-list { display: grid; gap: 0; margin: 8px 0 0; }
.legal-privacy-item {
  display: grid; grid-template-columns: 150px 1fr; gap: 18px; padding: 14px 0;
  border-top: 1px solid var(--line);
}
.legal-privacy-item:first-child { border-top: none; }
.legal-privacy-item dt {
  font-size: 12px; font-family: var(--font-mono); letter-spacing: 0.04em; color: var(--ink-mute);
  text-transform: uppercase; margin: 0;
}
.legal-privacy-item dd { font-size: 14.5px; color: var(--ink-soft); margin: 0; line-height: 1.55; }
@media (max-width: 560px) {
  .legal-privacy-item { grid-template-columns: 1fr; gap: 4px; }
}

/* ── Cookie consent banner ── */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  max-width: 720px;
  margin: 0 auto;
  background: var(--brand-ink);
  color: var(--paper);
  border-radius: var(--r-3, 14px);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}
.cookie-banner__text {
  flex: 1 1 320px;
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}
.cookie-banner__text a {
  color: var(--brand-secondary);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex: none;
}
.cookie-banner .btn--ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.28);
}
.cookie-banner .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}
@media (max-width: 560px) {
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-banner__actions { justify-content: center; }
}

/* ── Web "El Gritón" fallback (game-caller) ──
   --game-primary/secondary/bg/text are set from the fetched order's own
   palette (game-caller.js _applyPaletteVars) — same split as the native
   app: only the card/header chrome takes the order's colors, everything
   else here stays on the site's fixed --brand-* tokens. */
.game-caller { padding-bottom: 40px; }
.game-caller__wrap { max-width: 480px; padding-top: 20px; }
[x-cloak] { display: none !important; }

.game-caller__status { text-align: center; padding: 80px 20px; }
.game-caller__status-title { font-family: var(--font-display); font-size: 22px; margin-bottom: 8px; }
.game-caller__spinner {
  width: 34px; height: 34px; margin: 0 auto 16px; border-radius: 50%;
  border: 3px solid var(--line); border-top-color: var(--brand-primary);
  animation: game-spin 0.8s linear infinite;
}
@keyframes game-spin { to { transform: rotate(360deg); } }

.game-silent-banner {
  background: var(--cream-deep); border: 1px solid var(--line); border-radius: 10px;
  padding: 10px 14px; font-size: 12.5px; color: var(--ink-soft); text-align: center; margin-bottom: 14px;
}

.game-header {
  display: flex; align-items: center; gap: 12px;
  background: var(--game-primary, var(--brand-primary)); color: white;
  border-radius: 16px; padding: 14px 16px; margin-bottom: 18px;
}
.game-header__back, .game-header__menu {
  background: rgba(255,255,255,0.16); border: none; color: white; cursor: pointer;
  width: 34px; height: 34px; border-radius: 50%; font-size: 16px; flex: none;
  display: flex; align-items: center; justify-content: center;
}
.game-header__title {
  flex: 1; text-align: center; font-weight: 700; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

.game-progress, .game-remaining { text-align: center; font-size: 13px; color: var(--ink-mute); margin: 0 0 12px; }
.game-progress { color: var(--game-primary, var(--brand-primary)); font-weight: 700; }

.game-stage { display: flex; justify-content: center; margin-bottom: 6px; }
.game-card {
  position: relative;
  width: 100%; max-width: 280px; background: white; border-radius: 18px;
  border: 3px solid var(--game-primary, var(--brand-primary));
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  overflow: hidden; text-align: center;
}
.game-card__num {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: var(--game-primary, var(--brand-primary)); color: white;
  font-weight: 700; font-size: 13px; line-height: 1;
  padding: 5px 10px; border-radius: 999px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
.game-card__img { width: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.game-card__name {
  padding: 10px; background: var(--game-secondary, var(--brand-secondary)); color: white;
  font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.03em;
}
.game-card--empty {
  aspect-ratio: 3/4; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: var(--ink-mute); padding: 24px;
}
.game-card__empty-icon { font-size: 40px; }
.game-stage.is-flourish .game-card { animation: game-pulse 0.65s ease-in-out infinite; }
@keyframes game-pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.03); } }

.game-btn-winner { display: block; width: 100%; margin: 16px 0 12px; color: var(--game-primary, var(--brand-primary)); border-color: var(--game-primary, var(--brand-primary)); }

.game-toggles { display: flex; gap: 10px; margin-bottom: 10px; }
.game-pill {
  flex: 1; padding: 10px 12px; border-radius: 999px; border: 1.5px solid var(--line);
  background: white; font-size: 13px; font-weight: 600; color: var(--ink-soft); cursor: pointer;
}
.game-pill.is-active { border-color: var(--game-primary, var(--brand-primary)); color: var(--game-primary, var(--brand-primary)); }
.game-pill--primary.is-active { background: var(--game-primary, var(--brand-primary)); color: white; border-color: transparent; }
.game-pill:disabled { opacity: 0.5; cursor: not-allowed; }

.game-stepper {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-size: 13px; color: var(--ink-soft); margin-bottom: 16px;
}
.game-stepper button {
  width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); background: white;
  font-size: 16px; line-height: 1; cursor: pointer;
}
.game-stepper button:disabled { opacity: 0.4; cursor: not-allowed; }

.game-controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin: 10px 0 24px; }
.game-circle-btn {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: white;
  font-size: 18px; cursor: pointer; flex: none;
}
.game-draw-btn {
  position: relative; width: 88px; height: 88px; border-radius: 50%; flex: none;
  background: var(--game-primary, var(--brand-primary)); color: white; border: none; cursor: pointer;
  box-shadow: 0 10px 24px -6px color-mix(in oklab, var(--game-primary, var(--brand-primary)) 60%, transparent);
}
.game-draw-btn:disabled { opacity: 0.55; cursor: not-allowed; }
.game-draw-btn__ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.game-draw-btn__ring circle { fill: none; stroke: rgba(255,255,255,0.85); stroke-width: 4; transition: stroke-dashoffset 0.2s linear; }
.game-draw-btn__label { position: relative; z-index: 1; font-weight: 700; font-size: 13px; white-space: pre-line; line-height: 1.2; }

.game-history { display: flex; gap: 8px; overflow-x: auto; padding: 4px 2px 10px; }
.game-history__thumb {
  flex: none; width: 46px; height: 46px; border-radius: 10px; overflow: hidden;
  border: 1px solid var(--line); padding: 0; cursor: pointer; background: white;
}
.game-history__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.game-modal-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 95;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.game-sheet { background: white; border-radius: 16px; width: 100%; max-width: 340px; overflow: hidden; }
.game-sheet__item {
  display: block; width: 100%; text-align: left; padding: 15px 18px; border: none; background: none;
  border-bottom: 1px solid var(--line); font-size: 14.5px; color: var(--ink); cursor: pointer;
}
.game-sheet__item:last-child { border-bottom: none; }
.game-sheet__item:disabled { opacity: 0.4; cursor: not-allowed; }
.game-sheet__item--cancel { text-align: center; font-weight: 700; color: var(--ink-mute); }

/* .game-history-viewer is just a positioning shell now — the card itself
   reuses .game-card so a played card looks exactly like the live one. */
.game-history-viewer { max-width: 280px; width: 100%; position: relative; text-align: center; }
.game-history-viewer__close {
  position: absolute; top: -14px; right: -14px; z-index: 3;
  width: 30px; height: 30px; border-radius: 50%;
  background: white; box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  border: none; font-size: 15px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.game-history-viewer .game-card { margin: 0 auto 16px; }
.game-history-viewer__nav { display: flex; justify-content: space-between; gap: 10px; font-size: 12.5px; }
.game-history-viewer__nav button { border: 1px solid var(--line); background: white; border-radius: 999px; padding: 6px 12px; cursor: pointer; }
.game-history-viewer__nav button:disabled { opacity: 0.4; cursor: not-allowed; }

.game-confirm { background: white; border-radius: 16px; padding: 24px; max-width: 320px; text-align: center; }
.game-confirm h3 { font-family: var(--font-display); font-size: 20px; margin: 0 0 8px; }
.game-confirm p { font-size: 13.5px; color: var(--ink-soft); margin: 0 0 18px; }
.game-confirm__actions { display: flex; gap: 10px; justify-content: center; }

.game-winner {
  position: fixed; inset: 0; z-index: 98; background: var(--brand-bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; padding: 24px; text-align: center; overflow: hidden;
}
.game-winner__badge {
  width: 76px; height: 76px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 34px; background: color-mix(in oklab, var(--brand-secondary) 30%, white);
  box-shadow: 0 10px 24px rgba(0,0,0,0.12); margin-bottom: 10px;
}
.game-winner__title { font-family: var(--font-display); font-size: 34px; margin: 0; }
.game-winner__sub { color: var(--ink-soft); margin: 0 0 8px; }
.game-winner__time {
  background: white; border-radius: 12px; padding: 8px 16px; font-weight: 700; font-size: 13px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06); margin-bottom: 10px;
}
.game-winner__seguian { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 20px; }
.game-winner__restart { margin-bottom: 10px; min-width: 200px; }

.game-winner__confetti { position: absolute; inset: 0; pointer-events: none; }
.game-winner__piece {
  position: absolute; top: -16px; width: 9px; height: 13px; border-radius: 2px;
  left: calc(10% + (var(--i) * 10%));
  background: hsl(calc(var(--i) * 45deg), 78%, 55%);
  animation: game-confetti-fall 1.6s cubic-bezier(0.42,0,1,1) forwards;
  animation-delay: calc(var(--i) * 0.08s);
}
.game-winner__piece:nth-child(even) { border-radius: 50%; }
@keyframes game-confetti-fall {
  from { transform: translateY(0) rotate(0deg); opacity: 1; }
  to { transform: translateY(110vh) rotate(480deg); opacity: 0.15; }
}
@media (prefers-reduced-motion: reduce) {
  .game-stage.is-flourish .game-card { animation: none; }
  .game-winner__piece { animation: none; opacity: 0; }
}

/* Product description is admin-authored rich HTML (Trix, same as blog
   posts) — style the tags it can actually produce. Kept minimal since
   this sits in a hero, not a full article. */
.product-description p { margin: 0 0 10px; }
.product-description p:last-child { margin-bottom: 0; }
.product-description ul,
.product-description ol { margin: 0 0 10px; padding-left: 22px; }
.product-description a { color: var(--brand-primary); text-decoration: underline; }
.product-description img { max-width: 100%; border-radius: 8px; margin: 8px 0; display: block; }
.product-description strong { font-weight: 700; }
.product-description blockquote {
  margin: 0 0 10px; padding-left: 14px;
  border-left: 3px solid var(--line, var(--ink-mute));
  color: var(--ink-mute);
}
