/* Design Tokens & CSS Variables for САВА (г. Коломна) — Выращено с душой */
:root {
  /* Colors from SAVA Logo */
  --primary: #4a6828;          /* Глубокий оливково-травяной цвет букв САВА */
  --primary-hover: #3d5720;    /* Темнее при наведении */
  --primary-light: #5d8132;    /* Светлый оливковый */
  --primary-dark: #2c3e16;     /* Глубокий моховой */

  --accent: #7ca836;           /* Сочный зеленый молодых листочков логотипа */
  --accent-hover: #6c942d;     /* Акцент при ховере */
  --accent-light: #eef5e1;     /* Нежный эко-фон */
  --accent-glow: rgba(124, 168, 54, 0.28);

  --sprout: #93bf40;          /* Нежный побег микрозелени */
  --sprout-light: #f4fae6;
  
  --kraft: #f4f0e5;           /* Тёплый крафтовый цвет основы логотипа */
  --kraft-dark: #e5ded0;
  --terracotta: #d08253;      /* Тёплый терракотовый цвет леечки с сердечком */
  --terracotta-light: #fbeee7;

  --berry: #d6334a;
  --berry-light: #fde8eb;
  --amber: #e69512;
  --amber-light: #fdf3df;

  /* Neutrals */
  --bg-main: #f8f6f0;         /* Мягкий тёплый эко-фон */
  --bg-card: #ffffff;
  --bg-card-glass: rgba(255, 255, 255, 0.92);
  --border-color: #e6e2d5;     /* Тёплая крафтовая граница */
  --border-focus: #7ca836;

  --text-main: #233118;       /* Глубокий тёмно-оливковый текст */
  --text-muted: #5e6f4e;      /* Приглушённый шалфейный */
  --text-subtle: #899a78;     /* Светлый травяной */
  --text-light: #ffffff;

  /* Typography */
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(44, 62, 22, 0.05);
  --shadow-md: 0 8px 24px rgba(44, 62, 22, 0.08);
  --shadow-lg: 0 16px 36px rgba(44, 62, 22, 0.12);
  --shadow-floating: 0 20px 45px rgba(44, 62, 22, 0.16);

  /* Spacing & Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 180ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 320ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Mobile Layout Tokens */
  --bottom-nav-height: 64px;
  --header-mobile-height: 58px;
  --safe-area-bottom: env(safe-area-inset-bottom, 0px);
  --safe-area-top: env(safe-area-inset-top, 0px);
}
