/* ============================================================
   Pickle Yard — main stylesheet (vanilla, no build step)

   Palette + glass tokens ported from the design mockup. Olive/cream/
   brown with a ball-yellow accent; frosted-glass surfaces (same
   semantic layer as @auxelit-softworks/design-tokens, re-themed).
   Fonts (Anton display / DM Sans body / Fraunces italic voice) load
   from Google Fonts via <link> — the BFF CSP allows fonts.googleapis.com
   + fonts.gstatic.com (see src/server.ts).
   ============================================================ */

:root {
  /* Brand palette */
  --olive: #6B6B3A;
  --olive-deep: #565633;
  --olive-soft: #8A8A54;
  --brown: #3B2A1A;
  --cream: #F5F0E1;
  --cream-2: #EFE8D4;
  --cream-3: #E7DEC4;
  --ink: #2C2A22;
  --muted: #6E6A57;
  --line: #D9CFB2;
  --white: #FBF8EF;
  --ball: #C9D14B;
  --danger: #B4534A;

  /* Glass tokens — cream-tinted fills, warm-brown float shadow, olive/ball glows. */
  --glass-surface: rgba(251, 248, 239, 0.62);
  --glass-surface-strong: rgba(251, 248, 239, 0.8);
  --glass-border: rgba(255, 255, 255, 0.9);
  --glass-blur: 12px;
  --glass-glow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 1px 1px rgba(255, 255, 255, 0.6), 0 12px 34px -12px rgba(59, 42, 26, 0.3);
  --glass-rim-inner: rgba(86, 86, 51, 0.16);
  --app-backdrop:
    radial-gradient(58% 54% at 4% 0%, rgba(138, 138, 84, 0.5) 0%, transparent 55%),
    radial-gradient(60% 60% at 100% 6%, rgba(201, 209, 75, 0.42) 0%, transparent 58%),
    radial-gradient(70% 66% at 55% 100%, rgba(107, 107, 58, 0.34) 0%, transparent 58%),
    linear-gradient(180deg, #F2ECD9 0%, #F5F0E1 55%, #EDE5CC 100%);

  /* Type — Anton is the poster display face from the mockup. */
  --font-display: 'Anton', 'Arial Narrow', sans-serif;
  --disp-weight: 400;
  --disp-track: 2.5px;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-voice: 'Fraunces', Georgia, serif;
}

/* ---------- Reset / base ---------- */
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.6;
  background: var(--app-backdrop);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}
img, svg { max-width: 100%; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: var(--disp-weight);
  letter-spacing: var(--disp-track);
  margin: 0;
  line-height: 1.08;
}
a { color: inherit; }
button { font-family: var(--font-body); }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 26px; }
.voice { font-family: var(--font-voice); font-style: italic; font-weight: 500; }
.kick { text-transform: uppercase; letter-spacing: 3px; font-size: 12px; font-weight: 500; color: var(--olive); }
.muted { color: var(--muted); }

/* ---------- Glass surfaces ---------- */
.glass {
  background: var(--glass-surface);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-glow);
  border-radius: 20px;
  position: relative;
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(160%);
  backdrop-filter: blur(var(--glass-blur)) saturate(160%);
}
.glass-strong { background: var(--glass-surface-strong); }
/* Inner rim — a second hairline inset, the "double glass" look. */
.glass-double::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 15px;
  border: 1px solid var(--glass-rim-inner);
  pointer-events: none;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14.5px;
  padding: 12px 24px;
  border-radius: 999px;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-primary { background: var(--olive); color: var(--cream); box-shadow: 0 6px 18px -6px rgba(86, 86, 51, .55); }
.btn-primary:hover { background: var(--olive-deep); }
.btn-ball { background: var(--ball); color: var(--brown); box-shadow: 0 6px 18px -6px rgba(107, 107, 58, .5); }
.btn-glass {
  background: var(--glass-surface);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-glow);
  color: var(--olive-deep);
}
.btn--sm { padding: 9px 18px; font-size: 13px; }
.pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

/* ---------- Floating glass nav ---------- */
.nav-float {
  position: sticky;
  top: 16px;
  z-index: 50;
  margin: 16px auto 0;
  width: 80vw;
  max-width: 1180px;
  min-width: min(680px, 94vw);
  border-radius: 999px;
  padding: 0 10px 0 8px;
  background: rgba(245, 240, 225, .55);
  border: 1px solid rgba(255, 255, 255, .75);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, .95) inset,
    0 0 0 1px rgba(255, 255, 255, .35) inset,
    0 20px 44px -20px rgba(59, 42, 26, .55),
    0 8px 18px -10px rgba(59, 42, 26, .32);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  backdrop-filter: blur(22px) saturate(180%);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .nav-float { background: rgba(248, 244, 232, .97); }
}
.nav-float__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 8px;
  gap: 12px;
}
.nav-float__brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo { flex: none; width: 64px; height: 64px; display: block; }
.nav-logo--sm { width: 40px; height: 40px; } /* secondary pages (e.g. booking) use a smaller icon */
.nav-wordmark {
  /* The brand wordmark SVG (olive fill / brown outline) — matches the hero lockup. */
  height: 30px;
  width: auto;
  display: block;
  flex: none;
  /* Redundant with the hero at the top of the page — reveal only once the user scrolls past it.
     max-width + opacity animate so the logo slides left into place without a layout jump. */
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateX(-6px);
  transition: max-width .35s ease, opacity .3s ease, transform .35s ease;
}
.nav-float.scrolled .nav-wordmark {
  max-width: 200px;
  opacity: 1;
  transform: translateX(0);
}
.nav-links { display: flex; gap: 22px; align-items: center; }
.nav-link {
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--olive-deep);
  cursor: pointer;
  padding: 6px 4px;
  border-radius: 8px;
  transition: color .15s ease;
  white-space: nowrap;
  text-decoration: none;
}
.nav-link:hover { color: var(--brown); }
.nav-burger { display: none; }

/* Section-flash highlight (used when a nav CTA scrolls you to a section). */
@keyframes flashSel {
  0% { box-shadow: 0 0 0 0 rgba(107, 107, 58, 0); }
  30% { box-shadow: 0 0 0 4px rgba(201, 209, 75, .55); }
  100% { box-shadow: 0 0 0 0 rgba(107, 107, 58, 0); }
}
.flash { animation: flashSel 1.1s ease; }

/* ---------- Hero ---------- */
.hero { padding: 56px 0 48px; }
.hero-cols {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}
.hero__lockup {
  margin: 14px 0 18px;
  line-height: 0; /* the SVG is the whole wordmark + tagline lockup */
}
.hero__lockup img {
  display: block;
  width: 100%;
  max-width: 470px;
  height: auto;
}
.hero__sub { font-size: 16px; color: var(--muted); max-width: 440px; margin: 0 0 26px; }
.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }
.stat {
  border-radius: 14px;
  padding: 10px 18px;
}
.stat__n {
  font-family: var(--font-display);
  font-weight: var(--disp-weight);
  font-size: 20px;
  color: var(--olive-deep);
}
.stat__l { font-size: 12px; color: var(--muted); }
.hero__card { padding: 20px; }
.hero__card svg { display: block; border-radius: 12px; }
.hero__card-foot { display: flex; justify-content: space-between; align-items: center; margin-top: 14px; }

/* ---------- Section headings ---------- */
.section { padding: 14px 0 46px; scroll-margin-top: 90px; }
.section__head { text-align: center; margin-bottom: 28px; }
.section__head h2 { font-size: 30px; color: var(--olive-deep); margin-top: 8px; }

.grid2 { display: grid; grid-template-columns: 1.4fr .9fr; gap: 20px; }

/* "How it works" cards */
.how__card { padding: 28px; }
.how__card h3 { font-size: 22px; margin: 14px 0 8px; color: var(--brown); }
.how__card p { font-size: 15px; color: var(--muted); margin: 0 0 16px; }
.how__list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; font-size: 14px; }
.how__list div { padding: 4px 0; }
.how__open {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--glass-surface-strong);
}
.how__open h3 { font-size: 20px; margin: 12px 0 8px; color: var(--brown); }
.how__open p { font-size: 14px; color: var(--muted); margin: 0 0 16px; }

/* ============================================================
   BOOKING GRID + CART
   ============================================================ */
.book-cols {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 20px;
  align-items: start;
}
.book__grid-panel { padding: 22px 22px 18px; }
.book__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.book__nav-btns { display: flex; align-items: center; gap: 6px; }
.book__nav-btns .btn { padding: 7px 12px; font-size: 13px; }
.book__today { padding: 7px 14px !important; }
.datebtn-wrap { position: relative; }
#datebtn { padding: 8px 16px; font-size: 14px; font-weight: 500; color: var(--brown); }
.cal-ico {
  display: inline-block;
  width: 13px;
  height: 13px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
  position: relative;
  margin-right: 2px;
  top: 2px;
}
.datebtn-caret { font-size: 10px; opacity: .6; }

/* Calendar popover */
.cal-pop {
  display: none;
  position: absolute;
  right: 0;
  top: 44px;
  z-index: 60;
  width: 280px;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 44px -16px rgba(59, 42, 26, .5), 0 4px 12px -6px rgba(59, 42, 26, .3);
}
.cal-pop__bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.cal-pop__bar strong { font-size: 14px; color: var(--brown); }
.cal-pop__bar .btn { padding: 4px 10px; font-size: 12px; }
.cal-pop__dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 4px; }
.cal-pop__dow span { text-align: center; font-size: 10px; color: var(--muted); padding: 2px 0; }
.cal-pop__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.calday {
  height: 32px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--olive-deep);
  font-size: 12.5px;
  font-weight: 400;
  cursor: pointer;
  font-family: var(--font-body);
}
.calday:disabled { color: #C3BBA2; cursor: not-allowed; }
.calday.today:not(.sel) { border-color: var(--olive-soft); }
.calday.sel { background: var(--olive); color: var(--cream); font-weight: 500; }
.cal-pop__note { display: flex; gap: 12px; margin-top: 10px; font-size: 10px; color: var(--muted); }

/* Legend */
.book__legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--muted);
}
.lg-swatch { display: inline-block; width: 12px; height: 12px; border-radius: 4px; vertical-align: -1px; }

/* "Your days" chip strip (multi-day jump) */
.daychips {
  display: none;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--glass-rim-inner);
}
.daychips__label { font-size: 11px; letter-spacing: .5px; text-transform: uppercase; color: var(--muted); }
.daychip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: transform .12s ease;
  background: var(--glass-surface);
  color: var(--olive-deep);
  border: 1px solid var(--glass-border);
  font-family: var(--font-display);
  letter-spacing: var(--disp-track);
}
.daychip:hover { transform: translateY(-1px); }
.daychip.on { background: var(--olive); color: var(--cream); border-color: var(--olive-deep); }
.daychip small { opacity: .7; font-size: 10px; font-family: var(--font-body); letter-spacing: 0; }

/* The grid itself */
.book__grid { display: grid; gap: 6px; }
.grid-h {
  font-size: 11.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  padding: 4px 0;
  line-height: 1.3;
}
.grid-h strong {
  font-family: var(--font-display);
  font-weight: var(--disp-weight);
  letter-spacing: var(--disp-track);
  font-size: 14px;
  color: var(--olive-deep);
}
.grid-h small { font-size: 10px; letter-spacing: 1px; color: var(--muted); }
.grid-t {
  font-size: 11.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
}

/* Cells */
.slot {
  min-height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 500;
  user-select: none;
}
.slot-open {
  background: #DCEBC6;
  border: 1px solid rgba(107, 107, 58, .32);
  color: var(--olive-deep);
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
}
.slot-open:hover {
  background: #CFE3B2;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px -6px rgba(86, 86, 51, .45);
}
.slot-sel {
  background: var(--olive);
  border: 1px solid var(--olive-deep);
  color: var(--cream);
  cursor: pointer;
  box-shadow: 0 6px 14px -6px rgba(86, 86, 51, .55);
}
.slot-booked {
  background: rgba(59, 42, 26, .05);
  border: 1px solid rgba(59, 42, 26, .04);
  color: #B4AB92;
  cursor: default;
}
.slot-blocked {
  background: transparent;
  border: 1px dashed var(--line);
  color: #B4AB92;
  cursor: default;
}

/* Cart column */
.cartcol {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cart__panel { padding: 18px; }
.cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cart__clear {
  background: none;
  border: none;
  color: var(--danger);
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: .4px;
}
.cart__rows { display: flex; flex-direction: column; gap: 8px; }
.cart__empty { font-size: 13px; color: var(--muted); padding: 6px 2px; }
.cart__dayrow {
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  border-top: 1px solid var(--glass-rim-inner);
  border-left: 3px solid transparent;
  padding: 10px 10px 10px 9px;
  cursor: pointer;
  border-radius: 0 8px 8px 0;
  transition: background .12s ease;
}
.cart__dayrow.on { background: rgba(138, 138, 84, .14); border-left-color: var(--olive); }
.cart__dayrow:not(.on):hover { background: rgba(138, 138, 84, .07); }
.cart__dayrow-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 2px;
}
.cart__dayname {
  font-family: var(--font-display);
  font-weight: var(--disp-weight);
  font-size: 13px;
  color: var(--olive-deep);
  letter-spacing: var(--disp-track);
}
.cart__dayname small { font-size: 9px; font-family: var(--font-body); color: var(--muted); letter-spacing: 0; }
.cart__dayrow-sub { display: flex; align-items: center; justify-content: space-between; }
.cart__dayrow-sub span:first-child { font-size: 12px; color: var(--muted); }
.cart__jump { font-size: 11px; color: var(--olive-soft); }

/* Total card (olive) */
.cart__total-card {
  background: var(--olive-deep);
  border-radius: 20px;
  padding: 20px;
  color: var(--cream);
  position: relative;
}
.cart__count {
  font-size: 11px;
  letter-spacing: 1px;
  opacity: .7;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cart__pricelines { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.cart__priceline { display: flex; justify-content: space-between; font-size: 13px; opacity: .9; }
.cart__priceline span:first-child .rate { opacity: .6; }
.cart__total-row {
  border-top: 1px solid rgba(245, 240, 225, .18);
  padding-top: 12px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.cart__total-lbl { font-size: 12px; opacity: .75; text-transform: uppercase; letter-spacing: 1px; }
.cart__total-amt {
  font-family: var(--font-display);
  font-weight: var(--disp-weight);
  font-size: 30px;
  letter-spacing: var(--disp-track);
}
.cart__rate-note { font-size: 11px; opacity: .6; margin-top: 6px; }
.cart__review-btn { justify-content: center; padding: 15px; }

.book__foot { text-align: center; font-size: 12px; color: var(--muted); margin-top: 16px; }

/* ---------- Visit / contact ---------- */
.visit {
  background: var(--brown);
  color: var(--cream);
  padding: 44px 0;
  scroll-margin-top: 80px;
}
.visit__cols {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 32px;
  align-items: center;
}
.visit h2 { font-size: 28px; margin: 10px 0 14px; color: var(--cream); }
.visit .kick { color: var(--ball); }
.visit__lines { display: flex; gap: 26px; flex-wrap: wrap; font-size: 15px; }
.visit__lbl { opacity: .6; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; }
.visit__lines a { color: var(--cream); text-decoration: none; }
.visit__lines a:hover { text-decoration: underline; }
.visit__actions { text-align: right; }
.visit__actions .btn { margin-bottom: 10px; }
.visit__ghost {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .25);
  color: var(--cream);
}

.footer-strip {
  background: var(--olive-deep);
  color: var(--cream);
  text-align: center;
  padding: 16px;
  font-size: 12px;
  opacity: .92;
}
.footer-strip a { color: var(--cream); }

/* ============================================================
   REVIEW BOOKING MODAL — a normal-flow overlay (fixed), scroll-locked body.
   ============================================================ */
.review {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(44, 42, 34, .5);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  overflow-y: auto;
}
.review.open { display: block; }
.review__wrap {
  min-height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 20px 40px;
}
.review__box {
  width: 100%;
  max-width: 560px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 30px 70px -20px rgba(44, 42, 34, .6);
  overflow: hidden;
}
.review__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--glass-rim-inner);
}
.review__head-brand { display: flex; align-items: center; gap: 10px; }
.review__head-brand strong {
  font-family: var(--font-display);
  font-weight: var(--disp-weight);
  letter-spacing: var(--disp-track);
  font-size: 18px;
  color: var(--olive-deep);
}
.review__close {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
}
.review__body { padding: 22px 24px; max-height: 70vh; overflow-y: auto; }
.review__step {
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--olive);
  margin-bottom: 10px;
}
.review__slots { display: flex; flex-direction: column; gap: 10px; margin-bottom: 8px; }
.review__slot {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
}
.review__slot-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.review__slot-day {
  font-family: var(--font-display);
  font-weight: var(--disp-weight);
  letter-spacing: var(--disp-track);
  font-size: 15px;
  color: var(--olive-deep);
}
.review__slot-price {
  font-family: var(--font-display);
  font-weight: var(--disp-weight);
  font-size: 15px;
  color: var(--brown);
}
.review__slot-sub { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.review__slot-sub span:first-child { font-size: 12px; color: var(--muted); }
.review__totalrow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid var(--glass-rim-inner);
  padding-top: 12px;
  margin-bottom: 24px;
}
.review__totalrow-lbl { font-size: 13px; color: var(--muted); }
.review__totalrow-lbl small { opacity: .7; }
.review__totalrow-amt {
  font-family: var(--font-display);
  font-weight: var(--disp-weight);
  font-size: 28px;
  color: var(--olive-deep);
}
.review__fields { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.review__field { display: block; }
.review__field > span { font-size: 12px; color: var(--muted); display: block; margin-bottom: 4px; }
.review__field input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--ink);
}
.review__field input:focus { outline: 2px solid var(--olive-soft); outline-offset: 1px; }
.review__field.invalid input { border-color: var(--danger); }
.review__field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.review__pay-method {
  background: var(--cream-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.review__maya-badge {
  width: 40px;
  height: 26px;
  border-radius: 5px;
  background: #1a1a2e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
}
.review__pay-method-info { flex: 1; }
.review__pay-method-info div:first-child { font-size: 14px; color: var(--brown); font-weight: 500; }
.review__pay-method-info div:last-child { font-size: 12px; color: var(--muted); }
.review__radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--olive);
  display: flex;
  align-items: center;
  justify-content: center;
}
.review__radio span { width: 9px; height: 9px; border-radius: 50%; background: var(--olive); }
.review__pay-btn { width: 100%; justify-content: center; padding: 15px; font-size: 15px; }
.review__err {
  color: var(--danger);
  font-size: 13px;
  margin: 12px 0 0;
  text-align: center;
}
.review__fineprint { text-align: center; font-size: 11px; color: var(--muted); margin: 12px 0 4px; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .book-cols { grid-template-columns: 1fr; }
  .cartcol { position: static; }
}
@media (max-width: 720px) {
  .grid2 { grid-template-columns: 1fr; }
  .hero-cols { grid-template-columns: 1fr; }
  .visit__cols { grid-template-columns: 1fr; }
  .visit__actions { text-align: left; }
  .nav-links { display: none; }
  .hero__lockup img { max-width: 320px; }
  .how__list { grid-template-columns: 1fr; }
  .review__field-row { grid-template-columns: 1fr; }
}
