:root {
  /* ─── Farben ─────────────────────────────── */
  --bg-primary: #fbf6ee;
  --bg-secondary: #f5efe4;
  --bg-tertiary: #ede5d8;
  --bg-card: #fffaf1;
  --bg-elevated: rgba(251, 246, 238, 0.92);
  --bg-input: #fffaf1;
  --bg-overlay: rgba(40, 30, 20, 0.4);

  --accent-primary: #8a6b3f;
  --accent-hover: #7a5d34;
  --accent-soft: rgba(138, 107, 63, 0.1);
  --accent-glow: rgba(138, 107, 63, 0.2);

  --text-primary: #2d2418;
  --text-secondary: #6b5d4f;
  --text-tertiary: #9a8b7a;

  --success: #2f5f4e;
  --warning: #b08800;
  --error: #7b3e2e;
  --info: #3a6b8c;

  --shelf-reading: #3a6b8c;
  --shelf-read: #2f5f4e;
  --shelf-want: #b08800;
  --shelf-wishlist: #7b3e2e;
  --shelf-owned: #8a6b3f;

  /* ─── Typography ─────────────────────────── */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Fraunces', Georgia, serif;

  --text-xs: 0.6875rem;
  --text-sm: 0.8125rem;
  --text-base: 0.9375rem;
  --text-lg: 1.0625rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;

  --weight-light: 300;
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-extrabold: 800;

  /* ─── Spacing ────────────────────────────── */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* ─── Borders & Radii ───────────────────── */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --border-subtle: rgba(138, 107, 63, 0.12);
  --border-accent: rgba(138, 107, 63, 0.3);

  /* ─── Shadows & Effects ──────────────────── */
  --shadow-sm: 0 1px 3px rgba(45, 36, 24, 0.06);
  --shadow-md: 0 4px 12px rgba(45, 36, 24, 0.08);
  --shadow-lg: 0 8px 24px rgba(45, 36, 24, 0.1);
  --shadow-card: 0 2px 8px rgba(45, 36, 24, 0.06);
  --shadow-glow: 0 0 16px rgba(138, 107, 63, 0.12);

  /* ─── Transitions ────────────────────────── */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;

  /* ─── Layout ─────────────────────────────── */
  --header-height: 56px;
  --nav-height: 60px;
  --max-width: 640px;
  --safe-area-top: env(safe-area-inset-top, 0px);
  --safe-area-bottom: env(safe-area-inset-bottom, 0px);
}
