/* ============================================================
   My Meals — landing
   Palette e tono derivati dai token dell'app (src/theme/tokens.ts)
   ============================================================ */

/* Font self-hosted (niente CDN Google: privacy + zero render-block esterno) */
@font-face {
  font-family: 'Bricolage Grotesque';
  src: url('/assets/fonts/bricolage-var-latin.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Baloo 2';
  src: url('/assets/fonts/baloo2-800-latin.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #FAF6EE;
  --surface: #FFFFFF;
  --surface-alt: #F3ECDE;
  --ink: #241A14;
  --ink-2: #6B5D52;
  --ink-3: #A99B8C;
  --primary: #DE5B34;
  --primary-dark: #C6482A;
  --primary-press: #C24A28;
  --primary-soft: #FBE7DD;
  --green: #6E9B4E;
  --green-soft: #E9F0DE;
  --amber: #C98A2B;
  --amber-soft: #F7ECD5;
  --border: rgba(36, 26, 20, 0.08);
  --border-strong: rgba(36, 26, 20, 0.16);

  --font: "Bricolage Grotesque", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-brand: "Baloo 2", var(--font);

  --r-md: 16px;
  --r-lg: 20px;
  --r-xl: 24px;
  --r-pill: 999px;

  --shadow-sm: 0 2px 6px rgba(36, 26, 20, 0.06);
  --shadow-md: 0 6px 18px rgba(36, 26, 20, 0.10);
  --shadow-lg: 0 16px 44px rgba(36, 26, 20, 0.16);
  --shadow-cta: 0 8px 22px rgba(222, 91, 52, 0.35);

  --max: 1140px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

::selection { background: var(--primary-soft); color: var(--primary-dark); }

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ---------- tipografia ---------- */

h1, h2, h3 { line-height: 1.06; font-weight: 800; letter-spacing: -0.02em; text-wrap: balance; }

h1 { font-size: clamp(2.6rem, 6.2vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4.6vw, 3.1rem); }
h3 { font-size: 1.25rem; letter-spacing: -0.01em; line-height: 1.2; }

h1 em, h2 em { font-style: normal; color: var(--primary); }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-dark);
  margin-bottom: 14px;
}
.eyebrow-light { color: #F4B9A2; }

.lead {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--ink-2);
  margin-top: 20px;
  line-height: 1.5;
}

.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-sub { color: var(--ink-2); margin-top: 14px; font-size: 1.1rem; }

.fine { font-size: 0.85rem; color: var(--ink-3); margin-top: 8px; }

/* ---------- bottoni ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.btn-primary:hover { background: var(--primary-press); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--ink); }

.btn-light {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow-md);
}
.btn-light:hover { background: var(--bg); }

.btn-lg { font-size: 1.13rem; padding: 16px 32px; }
.btn-xl { font-size: 1.2rem; padding: 18px 40px; }

.cta-note { margin-top: 16px; font-size: 0.9rem; color: var(--ink-2); }
.cta-note-light { color: rgba(255, 255, 255, 0.85); }

.text-link {
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: none;
  margin-top: 14px;
  display: inline-block;
}
.text-link:hover { text-decoration: underline; }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 20px;
  transition: padding 0.25s ease;
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 10px 18px;
  border-radius: var(--r-pill);
  transition: background-color 0.25s ease, box-shadow 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.scrolled .header-inner {
  background: rgba(250, 246, 238, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--font-brand);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}
.wordmark img { border-radius: 10px; }

.site-nav { display: flex; gap: 26px; margin-left: auto; }
.site-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-2);
  transition: color 0.15s ease;
}
.site-nav a:hover { color: var(--ink); }

.btn-header { padding: 10px 20px; font-size: 0.95rem; margin-left: auto; white-space: nowrap; }
.site-nav ~ .btn-header { margin-left: 0; }

/* ---------- hero ---------- */

.hero { position: relative; padding: 56px 20px 0; }

.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.55; }
.blob-a { width: 480px; height: 480px; background: var(--primary-soft); top: -140px; right: -100px; }
.blob-b { width: 380px; height: 380px; background: var(--green-soft); bottom: 80px; left: -160px; }
.blob-c { width: 300px; height: 300px; background: var(--amber-soft); top: 40%; right: 30%; opacity: 0.4; }

.hero-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  padding: 40px 0 72px;
}

.hero-copy { animation: rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* ---------- phone mockup ---------- */

.hero-visual { position: relative; display: flex; justify-content: center; animation: rise 0.8s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both; }

.phone {
  position: relative;
  width: min(320px, 78vw);
  border-radius: 52px;
  background: var(--ink);
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 40px 90px rgba(222, 91, 52, 0.18);
}
.phone img { border-radius: 42px; width: 100%; height: auto; }

.phone-sm { width: min(280px, 74vw); }

/* la schermata Fit ha molto vuoto in basso: mostriamo solo la parte alta */
.phone-sm img,
.card-fit-shot {
  aspect-ratio: 390 / 580;
  object-fit: cover;
  object-position: top;
}

.float-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 10px 16px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-md);
  animation: floaty 5s ease-in-out infinite;
}
.float-chip small { font-weight: 600; color: var(--ink-3); }
.float-chip strong { color: var(--primary-dark); font-size: 1.05rem; }
.chip-ready { top: 12%; left: 2%; animation-delay: 0s; }
.chip-save { bottom: 20%; left: -4%; animation-delay: 1.2s; border-radius: var(--r-lg); }
.chip-scan { top: 30%; right: -2%; animation-delay: 2.2s; color: var(--ink); }
.chip-scan svg { color: var(--primary); }

.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; flex: none; }
.dot-green { background: var(--green); }
.dot-amber { background: var(--amber); }

/* ---------- marquee ---------- */

.marquee {
  position: relative;
  overflow: hidden;
  padding: 10px 0 26px;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: scroll-x 38s linear infinite;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 9px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-2);
}

/* ---------- steps ---------- */

.steps { max-width: var(--max); margin: 0 auto; padding: 90px 20px 40px; }

.steps-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 24px 24px 30px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, translate 0.25s ease;
}
.step-card:hover { box-shadow: var(--shadow-md); translate: 0 -4px; }

.step-shot {
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 22px;
  border: 1px solid var(--border);
  aspect-ratio: 390 / 430;
}
.step-shot img { object-fit: cover; object-position: top; width: 100%; height: 100%; }

/* i tre step mostrano porzioni diverse dello schermo */
.steps-grid li:nth-child(3) .step-shot img { object-position: center 18%; }

.step-num {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: var(--shadow-cta);
}

.step-card h3 { margin-bottom: 8px; font-size: 1.35rem; }
.step-card p { color: var(--ink-2); font-size: 1rem; }

/* ---------- features / bento ---------- */

.features { max-width: var(--max); margin: 0 auto; padding: 90px 20px; }

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, translate 0.25s ease;
}
.card:hover { box-shadow: var(--shadow-md); translate: 0 -4px; }

.card h3 { margin-bottom: 8px; }
.card p { color: var(--ink-2); font-size: 0.98rem; }

.card-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary-dark);
  border-radius: 14px;
  margin-bottom: 18px;
}

.card-fit {
  grid-column: span 3;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: center;
  background: linear-gradient(120deg, var(--surface-alt), var(--surface) 70%);
  overflow: hidden;
  position: relative;
  padding: 40px;
}

.card-fit .tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--r-pill);
}

.card-fit h3 { font-size: 1.8rem; }
.card-fit p { font-size: 1.05rem; }

.card-fit-shot {
  width: min(280px, 100%);
  margin: 0 auto;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

/* ---------- fit section ---------- */

.fit { padding: 40px 20px 90px; }

.fit-panel {
  max-width: var(--max);
  margin: 0 auto;
  background: var(--ink);
  color: #fff;
  border-radius: 32px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: clamp(32px, 6vw, 72px);
  overflow: hidden;
  position: relative;
}

.fit-panel::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222, 91, 52, 0.35), transparent 65%);
  top: -180px;
  right: -140px;
  pointer-events: none;
}

.fit-panel h2 { color: #fff; }
.fit-panel h2 em { color: #F0A184; }

.lead-light { color: rgba(255, 255, 255, 0.78); margin-top: 20px; font-size: 1.1rem; }

.fit-list { list-style: none; margin: 28px 0 34px; display: grid; gap: 14px; }
.fit-list li {
  position: relative;
  padding-left: 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
}
.fit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10" fill="black" stroke="none"/><path d="m9 12 2 2 4-4" stroke="white"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="black" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10" fill="black" stroke="none"/><path d="m9 12 2 2 4-4" stroke="white"/></svg>') center / contain no-repeat;
}

.fit-visual { display: flex; justify-content: center; position: relative; }

/* ---------- gallery ---------- */

.gallery { max-width: var(--max); margin: 0 auto; padding: 20px 20px 70px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery figure {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, translate 0.25s ease;
}
.gallery figure:hover { box-shadow: var(--shadow-md); translate: 0 -4px; }

/* griglia sfalsata stile Pinterest */
.gallery figure:nth-child(even) { translate: 0 26px; }
.gallery figure:nth-child(even):hover { translate: 0 22px; }

.gallery img { aspect-ratio: 390 / 520; object-fit: cover; object-position: top; width: 100%; }

.gallery figcaption {
  padding: 14px 18px;
  font-weight: 700;
  font-size: 0.92rem;
}

/* ---------- install ---------- */

.install { max-width: 900px; margin: 0 auto; padding: 70px 20px; }

.install-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.install-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.install-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.install-card svg { color: var(--primary); flex: none; }

.install-card ol { list-style: none; display: grid; gap: 10px; counter-reset: step; }
.install-card ol li {
  counter-increment: step;
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--ink-2);
}
.install-card ol li::before {
  content: counter(step);
  width: 26px;
  height: 26px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary-dark);
  font-weight: 800;
  font-size: 0.85rem;
  border-radius: 50%;
  transform: translateY(4px);
}

/* ---------- faq ---------- */

.faq { max-width: 760px; margin: 0 auto; padding: 40px 20px 90px; }

.faq-list { display: grid; gap: 12px; }

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}
.faq-list details[open] { box-shadow: var(--shadow-sm); }

.faq-list summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 20px 56px 20px 24px;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  translate: 0 -50%;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: var(--primary-soft);
  color: var(--primary-dark);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  transition: rotate 0.2s ease;
}
.faq-list details[open] summary::after { rotate: 45deg; }

.faq-list details p { padding: 0 24px 22px; color: var(--ink-2); }

/* ---------- guide dal blog ---------- */

.guides { max-width: 900px; margin: 0 auto; padding: 20px 20px 60px; }
.guides .section-head { margin-bottom: 30px; }

.guides-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.guides-list a {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  padding: 11px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.guides-list a:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }

/* ---------- final cta ---------- */

.final-cta { padding: 20px 20px 100px; }

.final-inner {
  max-width: var(--max);
  margin: 0 auto;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 32px;
  text-align: center;
  color: #fff;
  padding: clamp(56px, 9vw, 100px) 24px;
  position: relative;
  overflow: hidden;
}

.final-inner::before,
.final-inner::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  pointer-events: none;
}
.final-inner::before { width: 340px; height: 340px; top: -120px; left: -80px; }
.final-inner::after { width: 260px; height: 260px; bottom: -100px; right: -60px; }

.final-inner h2 { color: #fff; margin-bottom: 34px; font-size: clamp(2.2rem, 5.5vw, 3.6rem); }

/* ---------- footer ---------- */

.site-footer { border-top: 1px solid var(--border); padding: 44px 20px 56px; }

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.wordmark-footer { font-size: 1.15rem; }

.footer-nav { display: flex; flex-wrap: wrap; gap: 22px; margin-left: auto; }
.footer-nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink-2);
}
.footer-nav a:hover { color: var(--ink); }

.footer-note {
  width: 100%;
  font-size: 0.85rem;
  color: var(--ink-3);
  margin-top: 8px;
}

/* ---------- reveal on scroll ---------- */

.reveal { opacity: 0; translate: 0 28px; transition: opacity 0.7s ease, translate 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; translate: 0 0; }

/* le card sfalsate della gallery mantengono l'offset */
.gallery figure.reveal { translate: 0 54px; }
.gallery figure.reveal.in { translate: 0 0; }
.gallery figure.reveal:nth-child(even).in { translate: 0 26px; }

/* ---------- animazioni ---------- */

@keyframes rise {
  from { opacity: 0; translate: 0 34px; }
  to { opacity: 1; translate: 0 0; }
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes scroll-x {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-copy, .hero-visual { animation: none; }
  .float-chip { animation: none; }
  .marquee-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .reveal { opacity: 1; translate: 0 0; transition: none; }
  .gallery figure.reveal { translate: 0 0; }
  .gallery figure.reveal:nth-child(even) { translate: 0 26px; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1020px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .card-fit { grid-column: span 2; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .site-nav { display: none; }

  .hero { padding-top: 28px; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 24px 0 56px;
    text-align: center;
  }
  .cta-row { justify-content: center; }
  .hero-visual { margin-top: 8px; }

  .chip-ready { left: -2%; top: 8%; }
  .chip-save { left: -3%; bottom: 14%; }
  .chip-scan { right: -3%; }

  .steps { padding-top: 64px; }
  .steps-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }

  .card-fit { grid-template-columns: 1fr; padding: 28px; }
  .card-fit h3 { font-size: 1.5rem; }

  .fit-panel { grid-template-columns: 1fr; }
  .fit-visual { order: -1; }

  .install-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }

  .site-header { padding: 10px 12px; }
  .header-inner { gap: 14px; padding: 8px 10px; }
  .wordmark { font-size: 1.15rem; }
  .wordmark img { width: 34px; height: 34px; }
  .btn-header { padding: 9px 16px; font-size: 0.88rem; }

  h1 br, .lead br { display: none; }

  .bento { grid-template-columns: 1fr; }
  .card-fit { grid-column: span 1; }

  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .gallery figcaption { font-size: 0.8rem; padding: 10px 12px; }

  .btn-lg { width: 100%; }
  .cta-row { flex-direction: column; align-items: stretch; }

  .float-chip { font-size: 0.8rem; padding: 8px 12px; }
  .chip-save strong { font-size: 0.95rem; }

  .footer-nav { margin-left: 0; }
}
