/* ============================================================
   Дизайн-токены «Мангал», палитра «жар и уголь» (13.1)
   ВСЕ страницы используют эти переменные и не задают
   собственных магических значений.
   ============================================================ */
:root {
  /* Палитра */
  --color-bg: #fff9f2;
  --color-surface: #ffffff;
  --color-surface-muted: #f5ece2;
  --color-ink: #2a2118;
  --color-ink-muted: #6b5d4f;
  --color-accent: #e85d26;
  --color-accent-hover: #c9481c;
  --color-accent-soft: #fbe4d7;
  --color-success: #2e7d32;
  --color-danger: #c0392b;
  --color-info: #2563eb;

  /* Статусы заказов */
  --status-new: #64748b;
  --status-confirmed: #c0392b;
  --status-cooking: #e8853d;
  --status-ready: #2e7d32;
  --status-delivering: #2563eb;
  --status-done: #15803d;
  --status-cancelled: #b91c1c;

  /* Типографика */
  --font-sans: -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --text-12: 12px;
  --text-14: 14px;
  --text-16: 16px;
  --text-18: 18px;
  --text-20: 20px;
  --text-24: 24px;
  --text-32: 32px;

  /* Отступы */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;

  /* Радиусы */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;

  /* Тени */
  --shadow-sm: 0 1px 2px rgba(42, 33, 24, 0.08);
  --shadow-md: 0 4px 12px rgba(42, 33, 24, 0.1);
  --shadow-lg: 0 12px 32px rgba(42, 33, 24, 0.18);

  /* Брейкпоинты */
  --bp-mobile: 480px;
  --bp-tablet: 768px;
  --bp-desktop: 1200px;

  /* Прочее */
  --header-height: 64px;
  --min-touch: 44px;
  --max-content: 1200px;
}