/* Design Tokens - Integrated System */

:root {
    /* Colors - Based on custom stylesheet palette */
    --color-primary: #E3A535;
    --color-primary-dark: #745929;
    --color-primary-light: hsl(33 18% 76% / 1);
    --color-primary-tint: hsl(33deg 18% 76% / 0.1);
    --color-secondary: #565655;
    --color-secondary-dark: #2D2D2D;
    --color-secondary-light: #737373;
    --color-success: #10B981;
    --color-warning: #F59E0B;
    --color-error: hsl(0 84% 60% / 1);
    --color-info: #3B82F6;
    /* Neutrals */
    --color-background: #F0F0F0;
    --color-surface: #ffffff;
    --color-surface-elevated: #f8f9fa;
    --color-border: #ddd;
    --color-border-light: #e5e7eb;
    --color-button-outline: #C1C3C4;
    --color-text-primary: hsl(30deg 3.41% 12.18%);
    --color-text-secondary: #555;
    --color-text-muted: hsl(0 0% 45% / 1);
    /* Sidebar - Pure Black */
    --color-sidebar-bg: linear-gradient(135deg, #1A2B33 0%, #0A1014 100%);
    --color-sidebar-item: #ffffff;
    --color-sidebar-item-hover: #E3A535;
    --color-sidebar-item-active: #E3A535;
    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    /* Typography */
    --font-family-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-family-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 1rem;
    --radius-full: 9999px;
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    /* Layout */
    --sidebar-width: 250px;
    --sidebar-collapsed-width: 60px;
    --topbar-height: 64px;
    --content-max-width: 1400px;
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}
