/* WiO SmartFoods — Home page (Variant B storefront)
   Pairs with colors_and_type.css. Responsive: desktop ≥1024, mobile ≤600. */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--wio-font-sans);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--wio-container-max);
  margin: 0 auto;
  padding: 0 var(--wio-container-pad);
}

/* ============================================================
   ANNOUNCEMENT BAR — thin neutral, single message
   ============================================================ */
.announce {
  background: var(--cream-card);
  color: var(--ink-2);
  border-bottom: 1px solid var(--rule);
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 500 13px/1 var(--wio-font-sans);
  letter-spacing: 0.005em;
  padding: 0 16px;
  text-align: center;
}
.announce b { color: var(--ink); font-weight: 600; }

/* ============================================================
   HEADER — sticky 64/56, logo + nav + tools
   ============================================================ */
.hdr {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.hdr-inner {
  height: 72px;
  display: grid;
  grid-template-columns: 168px 1fr auto;
  align-items: center;
  gap: 28px;
}
.hdr .logo { height: 36px; width: auto; }
.hdr .nav { display: flex; gap: 28px; align-items: center; justify-content: center; }
.hdr .nav a {
  font: 500 14px/1 var(--wio-font-sans);
  color: var(--ink);
  display: inline-flex; align-items: center; gap: 4px;
  padding: 10px 0;
  position: relative;
}
.hdr .nav a:hover { color: var(--brand-green-ink); }
.hdr .nav a.active { color: var(--brand-green-ink); }
.hdr .nav a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--brand-green-ink); border-radius: 2px;
}
.hdr .tools { display: flex; align-items: center; gap: 6px; }
.hdr .tool {
  background: transparent; border: 0;
  width: 40px; height: 40px;
  border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink);
  transition: background var(--wio-dur-base) var(--wio-ease);
}
.hdr .tool:hover { background: var(--wio-green-pale); color: var(--brand-green-ink); }
.hdr .cart-pill {
  background: var(--brand-green-ink); color: #fff;
  border: 0; padding: 0 14px 0 12px; height: 40px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  font: 600 13px/1 var(--wio-font-sans);
  margin-left: 4px;
}
.hdr .cart-pill .ct { background: rgba(255,255,255,0.22); padding: 3px 8px; border-radius: 999px; font-size: 11px; font-variant-numeric: tabular-nums; }
.hdr .menu-btn { display: none; }

/* ============================================================
   HERO — green-ink saturated full-bleed
   ============================================================ */
.hero {
  background: var(--brand-green-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::before {
  /* subtle texture vignette top-left */
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 500px at 8% 18%, rgba(255,255,255,0.06), transparent 60%),
    radial-gradient(700px 600px at 95% 90%, rgba(0,0,0,0.18), transparent 55%);
  pointer-events: none;
}
.hero-inner {
  padding: clamp(40px, 5.2vw, 72px) 0 clamp(48px, 6vw, 72px);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}

.hero .eyebrow-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.28);
  color: #FAF6F0;
  padding: 7px 14px;
  border-radius: 999px;
  font: 600 11px/1 var(--wio-font-sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero .eyebrow-chip .dot { width: 6px; height: 6px; border-radius: 999px; background: #B8E0BE; }

.hero h1 {
  margin: 22px 0 0;
  font: 700 clamp(40px, 5.4vw, 64px)/1.05 var(--wio-font-sans);
  letter-spacing: -0.018em;
  color: #fff;
  text-wrap: balance;
  max-width: 13ch;
}
.hero .sub {
  margin: 20px 0 0;
  font: 400 19px/1.55 var(--wio-font-sans);
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  text-wrap: pretty;
}
.hero .ctas { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.hero .btn-white {
  background: #fff;
  color: var(--brand-green-ink);
  border: 0;
  padding: 16px 32px;
  border-radius: 9999px;
  font: 600 16px/1 var(--wio-font-sans);
  letter-spacing: 0.5px;
  min-height: 52px;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
  transition: transform var(--wio-dur-fast) var(--wio-ease), box-shadow var(--wio-dur-base) var(--wio-ease), background var(--wio-dur-base) var(--wio-ease);
}
.hero .btn-white:hover { background: #FAF6F0; transform: translateY(-1px); box-shadow: 0 12px 28px rgba(0,0,0,0.22); }
.hero .btn-white .arrow { font: 600 16px/1 var(--wio-font-sans); }

.hero .btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.5);
  padding: 14.5px 28px;
  border-radius: 9999px;
  font: 600 16px/1 var(--wio-font-sans);
  letter-spacing: 0.5px;
  min-height: 52px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background var(--wio-dur-base) var(--wio-ease), border-color var(--wio-dur-base) var(--wio-ease);
}
.hero .btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: #fff; }

.hero .trust {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.18);
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0 18px;
  font: 500 13px/1.4 var(--wio-font-sans);
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.012em;
}
.hero .trust .item { display: inline-flex; align-items: center; gap: 8px; padding: 6px 0; }
.hero .trust .stars { color: var(--star-gold-warm); font-size: 14px; letter-spacing: 1.5px; }
.hero .trust b { color: #fff; font-weight: 700; }
.hero .trust .sep { opacity: 0.4; }

/* Hero imagery — triptych: bread / pizza / dessert */
.hero-art {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 12px;
  height: clamp(420px, 50vw, 560px);
  position: relative;
}
.hero-art .tile {
  position: relative;
  border-radius: var(--wio-radius-image);
  overflow: hidden;
  background: rgba(0,0,0,0.2);
  box-shadow: 0 16px 36px rgba(0,0,0,0.25), 0 1px 0 rgba(255,255,255,0.06) inset;
}
.hero-art .tile img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-art .tile.middle { transform: translateY(-10px); }
.hero-art .tile.right  { transform: translateY(12px); }
.hero-art .tile .label {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(255,255,255,0.92);
  color: var(--brand-green-ink);
  padding: 6px 11px;
  border-radius: 999px;
  font: 700 11px/1 var(--wio-font-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-art .floating-pill {
  position: absolute;
  top: 18px; right: -8px;
  background: var(--brand-burgundy);
  color: #fff;
  padding: 8px 14px;
  border-radius: 999px;
  font: 700 11px/1 var(--wio-font-sans);
  letter-spacing: 0.12em;
  box-shadow: 0 8px 18px rgba(128,0,32,0.35);
  z-index: 2;
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { padding: clamp(64px, 8vw, 104px) 0; }
.section.cream { background: var(--cream-card); }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 40px;
}
.section-head .left { max-width: 640px; }
.eyebrow {
  font: 600 12px/1 var(--wio-font-sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-green-ink);
  display: inline-block;
  margin-bottom: 14px;
}
h2.section-title {
  margin: 0;
  font: 700 clamp(30px, 3.6vw, 44px)/1.1 var(--wio-font-sans);
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
}
.section-head .sub {
  margin: 12px 0 0;
  font: 400 17px/1.55 var(--wio-font-sans);
  color: var(--meta);
  max-width: 540px;
}
.see-all {
  font: 600 14px/1 var(--wio-font-sans);
  color: var(--brand-green-ink);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 0;
  border-bottom: 1.5px solid currentColor;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

/* ============================================================
   SECTION 1 — BEST SELLERS
   ============================================================ */
.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pcard {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 14px 14px 18px;
  display: flex; flex-direction: column;
  gap: 12px;
  min-width: 0;
  transition: transform var(--wio-dur-base) var(--wio-ease), box-shadow var(--wio-dur-base) var(--wio-ease), border-color var(--wio-dur-base) var(--wio-ease);
  cursor: pointer;
  position: relative;
}
.pcard:hover { transform: translateY(-3px); box-shadow: var(--wio-shadow-md); border-color: transparent; }

.pcard .imgwrap {
  aspect-ratio: 1/1;
  background: var(--card-warm);
  border-radius: 10px;
  display: grid; place-items: center;
  overflow: hidden;
  position: relative;
}
.pcard .imgwrap img { width: 78%; height: 78%; object-fit: contain; transition: transform 500ms var(--wio-ease); }
.pcard:hover .imgwrap img { transform: scale(1.04); }

.pcard .save-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--brand-burgundy);
  color: #fff;
  font: 700 11px/1 var(--wio-font-sans);
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(128,0,32,0.25);
}
.pcard .sub-chip {
  position: absolute; top: 10px; right: 10px;
  background: rgba(255,255,255,0.96);
  color: var(--brand-green-ink);
  font: 700 10px/1 var(--wio-font-sans);
  letter-spacing: 0.06em;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid var(--rule);
}

.pcard .macro {
  display: flex; align-items: center; gap: 8px;
  font: 600 11px/1 var(--wio-font-sans);
  font-variant-numeric: tabular-nums;
  color: var(--ink-2);
  letter-spacing: 0.02em;
  flex-wrap: wrap;
}
.pcard .macro b { color: var(--brand-burgundy); font-weight: 700; }
.pcard .macro .dot { color: var(--rule); }
.pcard .macro .per { color: var(--meta); font-weight: 400; }

.pcard .title { font: 600 16px/1.3 var(--wio-font-sans); margin: 0; color: var(--ink); }
.pcard .rating { display: flex; align-items: center; gap: 6px; font: 500 12px/1 var(--wio-font-sans); color: var(--meta); }
.pcard .rating .stars { color: var(--star-gold); font-size: 13px; letter-spacing: 1.5px; }
.pcard .rating b { color: var(--ink); font-weight: 600; }

.pcard .row { display: flex; justify-content: space-between; align-items: center; margin-top: 2px; gap: 10px; }
.pcard .price-stack { display: flex; align-items: baseline; gap: 8px; font-variant-numeric: tabular-nums; }
.pcard .price-stack .now { font: 700 19px/1 var(--wio-font-sans); color: var(--ink); }
.pcard .price-stack .was { color: var(--brand-burgundy); text-decoration: line-through; font: 600 13px/1 var(--wio-font-sans); }
.pcard .add {
  background: var(--brand-green-ink); color: #fff;
  border: 0; padding: 12px 20px;
  border-radius: 9999px;
  font: 600 14px/1 var(--wio-font-sans);
  letter-spacing: 0.3px;
  min-height: 48px;
  display: inline-flex; align-items: center; gap: 6px;
  transition: background var(--wio-dur-base) var(--wio-ease);
}
.pcard .add:hover { background: var(--brand-green-deep); }

/* ============================================================
   SECTION 2 — CATEGORY 2x2
   ============================================================ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.cat-tile {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--card-warm);
  cursor: pointer;
  transition: transform var(--wio-dur-base) var(--wio-ease), box-shadow var(--wio-dur-base) var(--wio-ease);
  isolation: isolate;
}
.cat-tile:hover { transform: translateY(-3px); box-shadow: var(--wio-shadow-lg); }
.cat-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--wio-ease); }
.cat-tile:hover img { transform: scale(1.05); }
.cat-tile .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(125deg, rgba(35,103,48,0.55) 0%, rgba(0,0,0,0.10) 45%, transparent 65%);
}
.cat-tile .scrim-b {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.55));
}
.cat-tile .ct-body {
  position: absolute; left: 28px; bottom: 24px; right: 28px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
  color: #fff;
  z-index: 1;
}
.cat-tile .ct-body .ct-label { font: 700 26px/1.1 var(--wio-font-sans); letter-spacing: -0.012em; }
.cat-tile .ct-body .ct-meta {
  font: 500 12px/1 var(--wio-font-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 6px;
}
.cat-tile .ct-cta {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  color: var(--brand-green-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font: 700 18px/1 var(--wio-font-sans);
  flex-shrink: 0;
  transition: transform var(--wio-dur-base) var(--wio-ease);
}
.cat-tile:hover .ct-cta { transform: translateX(4px); }
.cat-tile .corner-tag {
  position: absolute; top: 20px; left: 20px;
  background: rgba(250, 246, 240, 0.92);
  color: var(--brand-green-ink);
  padding: 7px 12px;
  border-radius: 999px;
  font: 700 10px/1 var(--wio-font-sans);
  letter-spacing: 0.12em;
  z-index: 1;
}

/* ============================================================
   SECTION 3 — BUILD YOUR OWN BOX (peer CTA)
   ============================================================ */
.byob-card {
  background: var(--white);
  border: 1px solid var(--rule);
  border-radius: 28px;
  padding: clamp(36px, 4.5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.byob-card::before {
  /* subtle warm wash on left */
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(115deg, var(--card-warm) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.byob-card > * { position: relative; z-index: 1; }

.byob h3 {
  margin: 0;
  font: 700 clamp(28px, 3.4vw, 40px)/1.1 var(--wio-font-sans);
  letter-spacing: -0.012em;
  color: var(--ink);
  text-wrap: balance;
}
.byob .sub {
  margin: 14px 0 24px;
  font: 400 17px/1.55 var(--wio-font-sans);
  color: var(--ink-2);
  max-width: 460px;
}
.byob .ladder {
  display: flex; gap: 8px; margin: 0 0 28px;
  flex-wrap: wrap;
  font-variant-numeric: tabular-nums;
}
.byob .rung {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 13px 9px 11px;
  border-radius: 999px;
  background: var(--cream-card);
  border: 1px solid var(--rule);
  font: 600 13px/1 var(--wio-font-sans);
  color: var(--ink);
}
.byob .rung .amt { color: var(--meta); font-weight: 500; }
.byob .rung .pct { color: var(--brand-green-deep); font-weight: 700; }
.byob .rung .arrow { color: var(--rule); font-weight: 600; }
.byob .ladder-note {
  font: 400 13px/1.4 var(--wio-font-sans);
  color: var(--meta);
  margin: -16px 0 24px;
}
.byob .actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.byob .btn-outline-green {
  background: transparent;
  color: var(--brand-green-ink);
  border: 1.5px solid var(--brand-green-ink);
  padding: 14.5px 30px;
  border-radius: 9999px;
  font: 600 16px/1 var(--wio-font-sans);
  letter-spacing: 0.5px;
  min-height: 52px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background var(--wio-dur-base) var(--wio-ease), color var(--wio-dur-base) var(--wio-ease);
}
.byob .btn-outline-green:hover { background: var(--brand-green-ink); color: #fff; }
.byob .text-link {
  font: 600 15px/1 var(--wio-font-sans);
  color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
}

/* Product collage on the right */
.byob-collage {
  position: relative;
  aspect-ratio: 1/0.9;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 14px;
}
.byob-collage .pill {
  background: var(--card-warm);
  border-radius: 18px;
  display: grid; place-items: center;
  padding: 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
  transition: transform var(--wio-dur-base) var(--wio-ease);
}
.byob-collage .pill:hover { transform: translateY(-3px) rotate(0deg); }
.byob-collage .pill img { max-width: 92%; max-height: 92%; object-fit: contain; }
/* artful asymmetric placement */
.byob-collage .pill.a { grid-column: 1 / 3; grid-row: 1 / 3; transform: rotate(-3deg); background: #fff; }
.byob-collage .pill.b { grid-column: 3 / 4; grid-row: 1 / 2; transform: rotate(4deg); }
.byob-collage .pill.c { grid-column: 3 / 4; grid-row: 2 / 3; transform: rotate(-2deg); }
.byob-collage .pill.d { grid-column: 1 / 2; grid-row: 3 / 4; transform: rotate(3deg); }
.byob-collage .pill.e { grid-column: 2 / 4; grid-row: 3 / 4; transform: rotate(-1deg); background: #fff; }
.byob-collage .stamp {
  position: absolute;
  top: -10px; right: -10px;
  width: 96px; height: 96px;
  border-radius: 999px;
  background: var(--brand-burgundy);
  color: #fff;
  display: grid; place-items: center;
  text-align: center;
  font: 700 13px/1.15 var(--wio-font-sans);
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(128,0,32,0.3);
  transform: rotate(-8deg);
  z-index: 3;
}
.byob-collage .stamp .lg { font-size: 22px; display: block; }

/* ============================================================
   RESPONSIVE — mobile @ ≤600
   ============================================================ */
@media (max-width: 1023px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { height: 320px; }
  .products { grid-template-columns: repeat(2, 1fr); }
  .cat-grid { grid-template-columns: 1fr; }
  .byob-card { grid-template-columns: 1fr; gap: 32px; }
  .byob-collage { aspect-ratio: 5/4; }

  /* Header — compacted at tablet portrait + below to prevent .tools/.cart-pill overflow at 768px */
  .hdr-inner { height: 56px; grid-template-columns: 36px 1fr auto; gap: 12px; }
  .hdr .logo { height: 28px; }
  .hdr .nav { display: none; }
  .hdr .menu-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 999px;
    background: transparent; border: 0; color: var(--ink);
  }
  .hdr .tools .tool[data-tool="account"] { display: none; }
  .hdr .tools { gap: 2px; }
  .hdr .cart-pill { padding: 0 10px 0 10px; height: 36px; }
  .hdr .cart-pill .label { display: none; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }

  /* Announce */
  .announce { height: auto; min-height: 36px; padding: 8px 14px; font-size: 12px; line-height: 1.35; }

  /* Hero */
  .hero-inner { padding: 36px 0 48px; }
  .hero h1 { font-size: 36px; margin-top: 18px; }
  .hero .sub { font-size: 16px; margin-top: 14px; }
  .hero .ctas { margin-top: 24px; flex-direction: column; align-items: stretch; gap: 10px; }
  .hero .btn-white, .hero .btn-ghost { width: 100%; justify-content: center; }
  .hero .trust { margin-top: 26px; padding-top: 18px; gap: 8px 14px; font-size: 12px; }
  .hero .trust .sep { display: none; }
  .hero .trust .item { flex-basis: 100%; }
  .hero .trust .item.lead { flex-basis: 100%; }
  .hero-art { height: 220px; gap: 8px; }
  .hero-art .tile .label { font-size: 10px; padding: 5px 9px; left: 8px; bottom: 8px; }
  .hero-art .tile.middle { transform: translateY(-10px); }
  .hero-art .tile.right { transform: translateY(12px); }
  .hero-art .floating-pill { top: 10px; right: 4px; font-size: 10px; padding: 6px 10px; }

  /* Sections */
  .section { padding: 56px 0; }
  .section-head { flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 28px; }
  h2.section-title { font-size: 28px; }
  .section-head .sub { font-size: 15px; }

  /* Products */
  .products { gap: 12px; }
  .pcard { padding: 10px 10px 14px; gap: 8px; border-radius: 14px; }
  .pcard .imgwrap { border-radius: 8px; }
  .pcard .title { font-size: 14px; }
  .pcard .macro { font-size: 10px; gap: 5px; }
  .pcard .price-stack .now { font-size: 17px; }
  .pcard .price-stack .was { font-size: 12px; }
  .pcard .add { padding: 12px 16px; font-size: 12px; min-height: 48px; }
  .pcard .save-badge, .pcard .sub-chip { font-size: 10px; padding: 4px 8px; top: 8px; }
  .pcard .save-badge { left: 8px; }
  .pcard .sub-chip { right: 8px; }

  /* Categories */
  .cat-tile { aspect-ratio: 5/3; border-radius: 16px; }
  .cat-tile .ct-body { left: 18px; right: 18px; bottom: 16px; }
  .cat-tile .ct-body .ct-label { font-size: 22px; }
  .cat-tile .ct-cta { width: 38px; height: 38px; font-size: 16px; }
  .cat-tile .corner-tag { top: 14px; left: 14px; padding: 5px 10px; font-size: 9px; }

  /* BYOB */
  .byob-card { padding: 28px 22px; border-radius: 22px; }
  .byob h3 { font-size: 28px; }
  .byob .sub { font-size: 15px; margin-bottom: 20px; }
  .byob .rung { font-size: 12px; padding: 8px 11px; }
  .byob .ladder-note { font-size: 12px; margin-bottom: 20px; }
  .byob .actions { width: 100%; }
  .byob .btn-outline-green { width: 100%; justify-content: center; }
  .byob-collage { aspect-ratio: 5/4; gap: 10px; }
  .byob-collage .stamp { width: 72px; height: 72px; font-size: 11px; top: -6px; right: -6px; }
  .byob-collage .stamp .lg { font-size: 18px; }
}
