/* [2026-02-24][CLX][ART-COMFORT] CSS Custom Properties */

:root {
  /* Цвета */
  --c-primary: #47B4C8;
  --c-primary-dark: #3a97a8;
  --c-primary-light: #e0f4f8;
  --c-accent: #E84B2F;
  --c-accent-dark: #c93d25;

  --c-bg: #f5f6fa;
  --c-sidebar: #1a1a1a;
  --c-sidebar-hover: #2d2d2d;
  --c-sidebar-active: #47B4C8;

  --c-text: #2c2c3a;
  --c-text-secondary: #6b7280;
  --c-text-muted: #9ca3af;
  --c-text-inverse: #ffffff;

  --c-surface: #ffffff;
  --c-border: #e2e4ea;
  --c-border-light: #f0f1f5;
  --c-border-focus: #47B4C8;

  --c-card: #ffffff;
  --c-success: #22c55e;
  --c-warning: #f59e0b;
  --c-danger: #ef4444;

  /* Размеры */
  --sidebar-w: 220px;
  --sidebar-collapsed-w: 56px;
  --header-h: 56px;
  --filter-w: 280px;
  --radius: 8px;
  --radius-sm: 4px;

  /* Тени */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 4px 16px rgba(0,0,0,0.12);

  /* Шрифт */
  --font: 'Fira Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Transitions */
  --tr-fast: 150ms ease;
  --tr: 250ms ease;
}
