/* Design tokens — Faz 1 iskelet. Faz 2/3'te admin.css / menu.css bunları kullanacak. */
:root {
  /* Nötr gri skala (admin panel yüzeyleri için) */
  --gray-0: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Tek vurgu rengi (admin brand) */
  --brand: #7c3aed;
  --brand-dark: #5b21b6;
  --brand-contrast: #ffffff;

  /* Restoran/menü bazlı tema değişkenleri — mevcut isimler korunuyor, restoranlar bunları inline style ile override eder */
  --primary: #7c3aed;
  --accent: #ec4899;
  --bg: #faf5ff;
  --text: #181024;
  --font: 'Plus Jakarta Sans', Inter, Arial, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;

  /* Spacing */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);

  /* Motion */
  --duration-fast: 120ms;
  --duration-base: 200ms;
  --duration-slow: 360ms;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  /* Yüzeyler (açık tema varsayılan) */
  --surface: var(--gray-0);
  --surface-muted: var(--gray-50);
  --surface-border: var(--gray-200);
  --on-surface: var(--gray-900);
  --on-surface-muted: var(--gray-500);
}

:root[data-theme="dark"] {
  --surface: var(--gray-900);
  --surface-muted: #131c2e;
  --surface-border: #1f2937;
  --on-surface: var(--gray-50);
  --on-surface-muted: var(--gray-400);
}
