/* ==========================================================================
   MyRetura — myretura.com
   ========================================================================== */

:root {
  --ground: #fbfaf8;
  --surface: #ffffff;
  --sunk: #f2f1ed;
  --ink: #13201d;
  --ink-soft: #3e514c;
  --muted: #6b7c77;
  --line: #e3e1db;
  --line-strong: #cfcdc5;

  --accent: #0b6e56;
  --accent-hover: #085943;
  --accent-soft: #e8f1ed;
  --accent-ink: #ffffff;

  --kraft: #c8a888;
  --kraft-soft: #f7efe6;

  --warn: #a35a17;
  --warn-soft: #fdf3e7;

  --f-display: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --f-body: "IBM Plex Sans", system-ui, -apple-system, sans-serif;

  --wrap: 1120px;
  --radius: 10px;
  --shadow: 0 1px 2px rgba(19, 32, 29, 0.04), 0 8px 24px rgba(19, 32, 29, 0.05);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ground: #0e1514;
    --surface: #16201e;
    --sunk: #1c2725;
    --ink: #e7edea;
    --ink-soft: #b5c3bf;
    --muted: #8a9c97;
    --line: #26332f;
    --line-strong: #36453f;

    --accent: #3fae8d;
    --accent-hover: #55c0a0;
    --accent-soft: #102620;
    --accent-ink: #06201a;

    --kraft: #c8a888;
    --kraft-soft: #241c14;

    --warn: #e0a065;
    --warn-soft: #2a1d10;

    --shadow: 0 1px 2px rgba(0, 0, 0, 0.3), 0 8px 24px rgba(0, 0, 0, 0.28);
  }
}

*, *::before, *::after { box-sizing: border-box; }

/* Ohne !important schlägt ein explizites display (z. B. flex) das
   hidden-Attribut, und versteckte Elemente bleiben sichtbar. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 760px; }

a { color: var(--accent); text-underline-offset: 3px; }
a:focus-visible, button:focus-visible, input:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

h1, h2, h3, h4 { font-family: var(--f-display); letter-spacing: -0.022em; }

/* ------------------------------------------------------------------ Kopfzeile */

header.site {
  position: sticky;
  top: 0;
  z-index: 20;
  background: color-mix(in srgb, var(--ground) 88%, transparent);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}

header.site .wrap {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.03em;
  color: var(--ink);
  text-decoration: none;
  flex: none;
}
.logo img { width: 30px; height: 30px; display: block; }

nav.site {
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: var(--f-display);
  font-size: 15px;
  margin-left: auto;
}
nav.site a { color: var(--ink-soft); text-decoration: none; white-space: nowrap; }
nav.site a:hover { color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 10px; flex: none; }

@media (max-width: 900px) {
  nav.site { display: none; }
  .header-actions { margin-left: auto; }
}

/* -------------------------------------------------------------------- Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  padding: 12px 20px;
  border-radius: 7px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .15s, border-color .15s, color .15s;
}
.btn-lg { font-size: 16px; padding: 14px 26px; }

.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-hover); }

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

.btn-quiet { background: transparent; color: var(--ink-soft); padding: 12px 8px; }
.btn-quiet:hover { color: var(--accent); }

.btn svg { flex: none; }

/* ----------------------------------------------------------------------- Hero */

.hero { padding-top: 76px; padding-bottom: 64px; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 56px;
  align-items: center;
}

.eyebrow {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 14px;
}

.hero h1 {
  font-size: clamp(35px, 5vw, 55px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.035em;
  margin: 0 0 20px;
  text-wrap: balance;
}

.hero .lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 46ch;
  margin: 0 0 28px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero-note {
  margin: 20px 0 0;
  font-size: 14.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-note svg { flex: none; color: var(--accent); }

.hero-art {
  background: radial-gradient(120% 120% at 70% 20%, var(--accent-soft), var(--sunk) 70%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  display: grid;
  place-items: center;
}
.hero-art img { width: 100%; max-width: 320px; height: auto; display: block; }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 36px; }
  .hero-art { order: -1; padding: 24px; }
  .hero-art img { max-width: 210px; }
  .hero { padding-top: 44px; padding-bottom: 44px; }
}

/* ----------------------------------------------------------- Käufer-Hinweis */

.shopper-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.shopper-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-size: 15.5px;
}
.shopper-strip strong { font-weight: 600; }
.shopper-strip a { font-family: var(--f-display); font-weight: 600; text-decoration: none; }
.shopper-strip a:hover { text-decoration: underline; }

/* ------------------------------------------------------------------ Abschnitte */

section {
  padding: 76px 0;
  /* Ankersprünge dürfen nicht unter dem sticky Header landen */
  scroll-margin-top: 78px;
}
section + section { border-top: 1px solid var(--line); }

.section-head { max-width: 62ch; margin-bottom: 44px; }
.section-head h2 {
  font-size: clamp(27px, 3.6vw, 38px);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 14px;
  text-wrap: balance;
}
.section-head p { font-size: 18px; color: var(--ink-soft); margin: 0; max-width: 58ch; }

section h3 { font-size: 19px; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.015em; }
section p { margin: 0 0 16px; max-width: 66ch; }
section p:last-child { margin-bottom: 0; }

.bg-sunk { background: var(--sunk); }

/* --------------------------------------------------------------------- Schritte */

.steps-grid { display: grid; gap: 28px; }

.step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
}
.step:nth-child(even) .step-art { order: -1; }

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}

.step-body h3 { font-size: clamp(21px, 2.5vw, 26px); font-weight: 700; margin-bottom: 10px; }
.step-body p { color: var(--ink-soft); }

.step-art {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--sunk);
}
.step-art img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; }

@media (max-width: 860px) {
  .step { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .step:nth-child(even) .step-art { order: 0; }
  .steps-grid { gap: 52px; }
}

/* ------------------------------------------------------- Warenkorb-Nachbau */

.cart-mock {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow);
  font-family: var(--f-body);
  max-width: 420px;
}

.cart-mock-head {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.cart-mock-row { display: flex; gap: 14px; align-items: center; padding: 16px 0; }
.cart-mock-thumb {
  width: 52px; height: 52px; flex: none; border-radius: 6px;
  background: linear-gradient(135deg, var(--kraft) 0%, var(--kraft-soft) 100%);
  border: 1px solid var(--line);
}
.cart-mock-name { font-size: 15px; font-weight: 500; }
.cart-mock-meta { font-size: 14px; color: var(--muted); }

.cart-mock-sum {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0 18px; border-top: 1px solid var(--line);
  font-size: 15px; color: var(--ink-soft);
}
.cart-mock-sum strong { font-family: var(--f-display); font-size: 18px; color: var(--ink); }

.cart-mock-btn {
  display: block; width: 100%; text-align: center;
  font-family: var(--f-display); font-size: 14.5px; font-weight: 600;
  padding: 13px 14px; border-radius: 7px; border: 1px solid var(--line-strong);
  background: var(--surface); color: var(--ink); margin-bottom: 9px;
}
.cart-mock-btn.is-primary {
  background: var(--accent); border-color: var(--accent); color: var(--accent-ink);
  position: relative;
}
.cart-mock-hint { font-size: 12.5px; color: var(--muted); text-align: center; margin: 6px 0 12px; line-height: 1.45; }

.cart-mock-tag {
  position: absolute; top: -11px; right: 12px;
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--kraft); color: #2a1f14;
  padding: 3px 9px; border-radius: 20px;
}

/* ----------------------------------------------------------------- Kostenkarten */

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.card .num {
  display: block;
  font-family: var(--f-display);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1.1;
  margin-bottom: 8px;
}
.card h3 { font-size: 16px; margin-bottom: 6px; }
.card p { font-size: 15.5px; color: var(--ink-soft); margin: 0; }

/* ------------------------------------------------------------------ Zahlenband */

.proof {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.proof div { background: var(--surface); padding: 24px 26px; }
.proof dt {
  font-family: var(--f-display);
  font-size: clamp(24px, 3vw, 31px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 4px;
}
.proof dd { margin: 0; font-size: 15px; color: var(--muted); }

/* --------------------------------------------------------------- Zwei Spalten */

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: minmax(0, 1fr); gap: 32px; } }

.media { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); background: var(--sunk); }
.media img { display: block; width: 100%; height: auto; }

/* ------------------------------------------------------------------ Checkliste */

ul.ticks { list-style: none; padding: 0; margin: 0 0 20px; max-width: 62ch; }
ul.ticks li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  padding: 9px 0;
  color: var(--ink-soft);
}
ul.ticks li::before {
  content: "";
  width: 18px; height: 18px; margin-top: 4px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1.5px solid var(--accent);
}

/* ----------------------------------------------------------------------- FAQ */

.faq { max-width: 70ch; }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  font-family: var(--f-display); font-size: 17.5px; font-weight: 600;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; gap: 18px; align-items: baseline;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--accent); font-size: 21px; line-height: 1; flex: none; }
.faq details[open] summary::after { content: "\2013"; }
.faq details p { margin: 12px 0 0; color: var(--ink-soft); }

/* ------------------------------------------------------------------- CTA-Band */

.cta-band { background: var(--accent); color: #fff; padding: 64px 0; }
.cta-band h2 {
  font-size: clamp(27px, 3.6vw, 37px); font-weight: 700; line-height: 1.12;
  margin: 0 0 12px; color: #fff; text-wrap: balance; max-width: 24ch;
}
.cta-band p { color: rgba(255, 255, 255, 0.85); margin: 0 0 26px; max-width: 52ch; font-size: 18px; }
.cta-band .btn-primary { background: #fff; color: var(--accent); }
.cta-band .btn-primary:hover { background: rgba(255, 255, 255, 0.9); }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, 0.45); }
.cta-band .btn-ghost:hover { color: #fff; border-color: #fff; }
.cta-band-grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 40px; align-items: center; }
@media (max-width: 800px) { .cta-band-grid { grid-template-columns: minmax(0, 1fr); gap: 24px; } }

/* --------------------------------------------------------------- Shop-Login */

.auth-page {
  min-height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--sunk);
}

.auth-card {
  width: 100%;
  max-width: 452px;
  margin: 56px auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow);
  text-align: center;
}
.auth-card img.mascot { width: 76px; height: 76px; margin: 0 auto 20px; display: block; }
.auth-card h1 { font-size: 27px; font-weight: 700; margin: 0 0 8px; letter-spacing: -0.03em; }
.auth-card .sub { color: var(--ink-soft); margin: 0 0 28px; font-size: 16px; }

.btn-shopify {
  display: flex; align-items: center; justify-content: center; gap: 11px;
  width: 100%; padding: 14px 18px;
  font-family: var(--f-display); font-size: 16px; font-weight: 600;
  background: #5a8a3c; color: #fff;
  border: 1px solid #4d7733; border-radius: 8px;
  cursor: pointer; text-decoration: none;
}
.btn-shopify:hover { background: #4d7733; }
.btn-shopify svg { flex: none; }

.auth-or {
  display: flex; align-items: center; gap: 14px;
  margin: 24px 0; color: var(--muted);
  font-size: 13px; font-family: var(--f-display);
}
.auth-or::before, .auth-or::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.auth-field { text-align: left; margin-bottom: 16px; }
.auth-field label {
  display: block; font-family: var(--f-display); font-size: 14px;
  font-weight: 600; margin-bottom: 7px;
}
.auth-field input {
  width: 100%; font-family: var(--f-body); font-size: 16px;
  padding: 12px 14px; border: 1px solid var(--line-strong);
  border-radius: 8px; background: var(--ground); color: var(--ink);
}
.auth-field .help { font-size: 13.5px; color: var(--muted); margin: 8px 0 0; }

.auth-error {
  font-size: 14px; color: var(--warn); background: var(--warn-soft);
  border-radius: 7px; padding: 10px 13px; margin: 0 0 16px; text-align: left;
}

.auth-foot { font-size: 14.5px; color: var(--muted); margin: 24px 0 0; }
.auth-steps {
  text-align: left; margin: 28px 0 0; padding: 20px 0 0;
  border-top: 1px solid var(--line);
  font-size: 14.5px; color: var(--ink-soft);
}
.auth-steps ol { margin: 10px 0 0; padding-left: 20px; }
.auth-steps li { margin-bottom: 6px; }
.auth-steps strong { font-family: var(--f-display); font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }

/* --------------------------------------------------------------------- Fußzeile */

footer.site { border-top: 1px solid var(--line); background: var(--surface); padding: 52px 0 36px; }

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
  gap: 36px;
  padding-bottom: 32px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 26px; } }

.footer-grid h4 {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 14px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { color: var(--ink-soft); text-decoration: none; font-size: 15px; }
.footer-grid a:hover { color: var(--accent); }
.footer-about { font-size: 15px; color: var(--muted); max-width: 34ch; margin: 14px 0 0; }

.footer-base {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  justify-content: space-between;
}

/* ----------------------------------------------------------- Rechtstext-Seiten */

.legal { padding: 56px 0 40px; max-width: 72ch; }
.legal h1 { font-size: clamp(29px, 4.4vw, 39px); font-weight: 700; margin: 0 0 10px; }
.legal h2 { font-size: 20px; font-weight: 600; margin: 36px 0 10px; }
.legal p, .legal ul { margin: 0 0 14px; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 7px; }

.todo {
  background: var(--warn-soft);
  border-left: 3px solid var(--warn);
  border-radius: 0 8px 8px 0;
  padding: 17px 21px;
  margin: 0 0 30px;
}
.todo p { margin: 0; font-size: 15px; }
.todo strong { color: var(--warn); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ==========================================================================
   v6 — Redo-inspiriertes Redesign
   ========================================================================== */

/* ------------------------------------------------------------ Zentrierter Hero */

.hero-center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.hero-center h1 {
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin: 0 0 22px;
}
.hero-center .lead {
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 auto 30px;
}

/* ---------------------------------------------------------- Pricing-Karte */

.pricing-grid {
  display: flex;
  justify-content: center;
}

.pricing-card {
  background: var(--surface);
  border: 2px solid var(--accent);
  border-radius: 16px;
  padding: 40px 36px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow);
}

.pricing-label {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.pricing-price {
  font-family: var(--f-display);
  font-size: clamp(42px, 6vw, 56px);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 14px;
}

.pricing-desc {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0 0 24px;
  max-width: none;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  text-align: left;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 15.5px;
  color: var(--ink-soft);
}
.pricing-features li svg {
  flex: none;
  color: var(--accent);
}

/* --------------------------------------------------------- Onboarding Steps */

.onboard-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.onboard-step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
}
.onboard-step .step-num { margin: 0 auto 16px; }
.onboard-step h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}
.onboard-step p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
  max-width: none;
}

@media (max-width: 700px) {
  .onboard-steps { grid-template-columns: minmax(0, 1fr); }
}

/* ---------------------------------------------------- Shop-Input mit Suffix */

.shop-input-group {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  overflow: hidden;
  background: var(--ground);
}
.shop-input-group input {
  flex: 1;
  border: none;
  padding: 12px 14px;
  font-family: var(--f-body);
  font-size: 16px;
  background: transparent;
  color: var(--ink);
  outline: none;
  min-width: 0;
}
.shop-input-group input::placeholder { color: var(--muted); }
.shop-suffix {
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: 15px;
  color: var(--muted);
  background: var(--sunk);
  border-left: 1px solid var(--line);
  white-space: nowrap;
  font-family: var(--f-body);
}
.shop-input-group:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(11, 110, 86, 0.15);
}

/* Auth-Card – etwas mehr Luft */
.auth-card form { text-align: left; }
.auth-card .btn-shopify { margin-top: 8px; }

/* --------------------------------------------------- Manueller Fallback */
.manual-fallback {
  margin-top: 20px;
  text-align: center;
}
.manual-fallback summary {
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  list-style: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.manual-fallback summary::-webkit-details-marker { display: none; }
.manual-fallback[open] summary { margin-bottom: 16px; }
.manual-fallback form { text-align: left; }
