/* shops/sprout-and-about/theme.css
 * Design TOKENS for this shop — the only place colour/font/spacing is defined.
 * Structural styles live in the shared core/ui/base.css (linked first). A fresh, leafy,
 * editorial look for a garden/seedling brand. */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600&family=Inter:wght@400;500;600&display=swap');

:root {
  /* palette — leafy greens on a warm paper white */
  --color-bg: #f6f8f2;
  --color-fg: #1c2a20;
  --color-muted: #5e6f63;
  --color-accent: #236b43;
  --color-accent-contrast: #ffffff;
  --color-card: #ffffff;
  --color-border: #e3e8dc;
  --color-error: #b3261e;

  /* type — Fraunces (warm serif) headings, Inter body */
  --font-body: 'Inter', system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-heading: 'Fraunces', Georgia, "Times New Roman", serif;

  /* spacing */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;

  /* shape + depth */
  --radius: 10px;
  --radius-lg: 16px;
  --maxw: 1180px;
  --shadow-sm: 0 1px 2px rgba(28, 42, 32, 0.06), 0 1px 3px rgba(28, 42, 32, 0.05);
  --shadow-md: 0 8px 24px rgba(28, 42, 32, 0.10), 0 2px 6px rgba(28, 42, 32, 0.06);
  --ring: #4a9d6a;
}
