/* ==========================================================================
   SANATEKIBI — Tasarim Sistemi v2 : Yapisal Tokenlar
   Renk tokenlari tema dosyalarinda (theme-light/dark/set) tanimlidir.
   Bu dosya yalnizca temadan bagimsiz olculeri tasir: bosluk, tipografi,
   radius, katman, hareket ve dokunma hedefi.
   ========================================================================== */
:root {
  /* --- Bosluk olcegi (4px tabani) --- */
  --space-2xs: 0.125rem; /* 2px */
  --space-xs: 0.25rem;   /* 4px */
  --space-sm: 0.5rem;    /* 8px */
  --space-md: 1rem;      /* 16px */
  --space-lg: 1.5rem;    /* 24px */
  --space-xl: 2rem;      /* 32px */
  --space-2xl: 3rem;     /* 48px */
  --space-3xl: 4rem;     /* 64px */

  /* --- Tipografi --- */
  /* Gercekte yuklenen fontlar Manrope (govde) + Space Grotesk (baslik). */
  --font-body: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-heading: 'Space Grotesk', var(--font-body);
  /* Geriye uyumluluk: eski kod --font-family kullaniyor. */
  --font-family: var(--font-body);

  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-lg: 1.125rem;   /* 18px */
  --text-xl: 1.25rem;    /* 20px */
  --text-2xl: 1.5rem;    /* 24px */
  --text-3xl: 2rem;      /* 32px */
  --text-4xl: 2.75rem;   /* 44px */

  --leading-tight: 1.2;
  --leading-body: 1.55;

  /* --- Kose yaricapi --- */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --radius-full: 9999px;

  /* --- Yerlesim olculeri --- */
  --container-max: 1200px;
  --control-h: 44px;       /* minimum dokunma/klik hedefi */
  --control-h-sm: 36px;    /* yogun/kompakt liste kontrolu */

  /* --- Katman (z-index) sirasi --- */
  --z-base: 1;
  --z-header: 40;
  --z-dropdown: 50;
  --z-drawer: 60;
  --z-modal: 70;
  --z-toast: 80;

  /* --- Hareket --- */
  --motion-fast: 150ms;   /* hover, buton basma, chip secimi */
  --motion-base: 250ms;   /* kart girisi, panel ac/kapa, tema gecisi */
  --motion-slow: 400ms;   /* hero girisi, bolum siralanmasi */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Geriye uyumluluk: eski kod --transition-fast/normal kullaniyor. */
  --transition-fast: var(--motion-fast) var(--ease-out);
  --transition-normal: var(--motion-base) var(--ease-out);
}

/* --- Yogunluk: yalniz veri-yogun ekranlar ve admin --- */
:root[data-density="compact"] {
  --space-md: 0.75rem;
  --space-lg: 1rem;
  --space-xl: 1.5rem;
  --control-h: 38px;
  --leading-body: 1.45;
}
