/**
 * ShopUHIV - Design Tokens (CSS Custom Properties)
 * Единая система дизайн-токенов для всего приложения
 * Версия: 2.0 (2025)
 */

:root {
    /* ────────────────────────────────────────────
       COLORS - Primary
       ──────────────────────────────────────────── */
    --color-primary: #3b82f6;
    --color-primary-hover: #2563eb;
    --color-primary-light: #60a5fa;
    --color-primary-dark: #1e40af;
    
    /* Colors - Accent (iOS Blue) */
    --color-accent: #007AFF;
    --color-accent-hover: #0051d5;
    --color-accent-light: rgba(0, 122, 255, 0.1);
    
    /* ────────────────────────────────────────────
       COLORS - Text
       ──────────────────────────────────────────── */
    --color-text-primary: #111827;
    --color-text-secondary: #6b7280;
    --color-text-tertiary: #9ca3af;
    --color-text-inverse: #ffffff;
    --color-text-description: #232323;
    
    /* ────────────────────────────────────────────
       COLORS - Background
       ──────────────────────────────────────────── */
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f9fafb;
    --color-bg-tertiary: #f3f4f6;
    --color-bg-overlay: rgba(0, 0, 0, 0.05);
    
    /* ────────────────────────────────────────────
       COLORS - Borders
       ──────────────────────────────────────────── */
    --color-border-light: #e5e7eb;
    --color-border-medium: #d1d5db;
    --color-border-dark: #9ca3af;
    
    /* ────────────────────────────────────────────
       COLORS - Status
       ──────────────────────────────────────────── */
    --color-success: #10b981;
    --color-error: #ef4444;
    --color-warning: #f59e0b;
    --color-info: #3b82f6;
    
    /* ────────────────────────────────────────────
       SPACING SCALE
       ──────────────────────────────────────────── */
    --spacing-0: 0;
    --spacing-1: 0.25rem;   /* 4px */
    --spacing-2: 0.5rem;    /* 8px */
    --spacing-3: 0.75rem;   /* 12px */
    --spacing-4: 1rem;     /* 16px */
    --spacing-5: 1.25rem;  /* 20px */
    --spacing-6: 1.5rem;   /* 24px */
    --spacing-8: 2rem;     /* 32px */
    --spacing-10: 2.5rem;  /* 40px */
    --spacing-12: 3rem;    /* 48px */
    --spacing-16: 4rem;    /* 64px */
    
    /* ────────────────────────────────────────────
       TYPOGRAPHY
       ──────────────────────────────────────────── */
    --font-size-xs: 0.75rem;      /* 12px */
    --font-size-sm: 0.875rem;     /* 14px */
    --font-size-base: 1rem;       /* 16px */
    --font-size-lg: 1.125rem;     /* 18px */
    --font-size-xl: 1.25rem;      /* 20px */
    --font-size-2xl: 1.5rem;      /* 24px */
    --font-size-3xl: 1.875rem;    /* 30px */
    
    --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;
    
    /* ────────────────────────────────────────────
       SHADOWS
       ──────────────────────────────────────────── */
    --shadow-sm: 0 1px 2px 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);
    --shadow-primary: 0 4px 12px rgba(59, 130, 246, 0.3);
    --shadow-primary-hover: 0 6px 20px rgba(59, 130, 246, 0.4);
    
    /* ────────────────────────────────────────────
       BORDER RADIUS
       ──────────────────────────────────────────── */
    --radius-sm: 0.25rem;   /* 4px */
    --radius-md: 0.375rem;  /* 6px */
    --radius-lg: 0.5rem;    /* 8px */
    --radius-xl: 0.75rem;   /* 12px */
    --radius-2xl: 0.875rem; /* 14px */
    --radius-full: 9999px;
    
    /* ────────────────────────────────────────────
       TRANSITIONS
       ──────────────────────────────────────────── */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* ────────────────────────────────────────────
       Z-INDEX LAYERS
       ──────────────────────────────────────────── */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-toast: 600;
    --z-loading: 9999;
    
    /* ────────────────────────────────────────────
       LAYOUT
       ──────────────────────────────────────────── */
    --header-height: 3rem;        /* 48px */
    --footer-height: 5rem;         /* 80px */
    --container-max-width: 1200px;
    --container-padding: 1rem;
    
    /* ────────────────────────────────────────────
       BREAKPOINTS (для использования в JS)
       ──────────────────────────────────────────── */
    --breakpoint-sm: 640px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1280px;
}


