/* 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: #fffefa;
  --gray-50: #f7f5ef;
  --gray-100: #efede5;
  --gray-200: #dfdcd2;
  --gray-300: #c7c2b5;
  --gray-400: #9d988b;
  --gray-500: #706c62;
  --gray-600: #555249;
  --gray-700: #3e3d37;
  --gray-800: #2b2c28;
  --gray-900: #1c1f1b;

  /* Tek vurgu rengi (admin brand) */
  --brand: #255f4a;
  --brand-dark: #194534;
  --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: 'Manrope', Inter, Arial, sans-serif;
  --font-display: 'DM Serif Display', 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: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 1px rgba(28, 31, 27, 0.04);
  --shadow-md: 0 12px 30px rgba(28, 31, 27, 0.08);
  --shadow-lg: 0 24px 54px rgba(28, 31, 27, 0.14);

  /* 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: #171b18;
  --surface-border: #303630;
  --on-surface: var(--gray-50);
  --on-surface-muted: var(--gray-400);
}
