/* ── Good Food design tokens ────────────────────────────────────────────
   Palette lifted from lovesushi-pmr.md (client reference site): red CTA, near-black navy ink,
   warm off-white grounds, yellow highlight. Plumb is the site face; it
   isn't publicly hosted, so Nunito (same geometric-rounded feel) stands in
   and Plumb is kept first in the stack in case it is ever self-hosted. */
:root {
  --brand:        #ff3a44;
  --brand-hover:  #fb3339;
  --brand-soft:   #ffe6e6;
  --accent:       #ffe000;
  --accent-warm:  #ffbd00;

  --ink:          #060532;
  --ink-2:        #4a4a68;
  --ink-3:        #7c7c7c;

  --bg:           #f6f5f2;
  --surface:      #ffffff;
  --surface-2:    #eeece8;
  --line:         #e9e7e3;
  --line-strong:  #dbd8d2;

  --ok:           #4caf50;
  --warn:         #ffc107;
  --info:         #2196f3;
  --danger:       #ff5252;

  --shadow-sm: 0 1px 2px #06053214;
  --shadow-md: 0 4px 16px #0605321a;
  --shadow-lg: 0 12px 32px #06053226;

  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-pill: 999px;

  --nav-w: 300px;
  --nav-w-compact: 68px;
  --aside-w: 300px;
  --aside-w-compact: 68px;
  --topbar-h: 60px;

  --font: Plumb, Nunito, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --speed: 180ms;
}

[data-theme="dark"] {
  --brand-soft:  #3a1114;
  --ink:         #f2f1f7;
  --ink-2:       #b9b8c8;
  --ink-3:       #8b8a9c;
  --bg:          #121123;
  --surface:     #1b1a30;
  --surface-2:   #23223c;
  --line:        #2d2c48;
  --line-strong: #3b3a5c;
  --shadow-sm: 0 1px 2px #00000040;
  --shadow-md: 0 4px 16px #00000059;
  --shadow-lg: 0 12px 32px #00000073;
}
