/**
 * Devir Design System - CSS Custom Properties
 * Source: kb/sprints/devir-direct/DEVIR-DESIGN-SYSTEM.md
 *
 * These variables are available across ALL Devir themes.
 * Themes can override them in their own _extend.less / CSS.
 */

:root {
    /* ============================================================
       Brand Colors
       ============================================================ */
    --devir-pink: #CF3E65;
    --devir-pink-light: #E85A80;
    --devir-pink-dark: #A8324F;

    --devir-blue: #1F2448;
    --devir-blue-light: #2A3060;
    --devir-blue-dark: #151830;

    --devir-gray: #34495E;

    /* ============================================================
       Gradient Accent (CTAs, highlights)
       ============================================================ */
    --devir-gradient-accent: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --devir-gradient-card: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    --devir-gradient-tag: linear-gradient(135deg, #8b5cf6, #7c3aed);

    /* ============================================================
       Slate Scale (UI neutrals)
       ============================================================ */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    /* ============================================================
       Functional Colors (states)
       ============================================================ */
    --color-success: #10b981;
    --color-success-dark: #059669;
    --color-success-bg: #dcfce7;

    --color-warning: #fbbf24;
    --color-warning-dark: #92400e;
    --color-warning-bg: #fef3c7;

    --color-error: #ef4444;
    --color-error-dark: #991b1b;
    --color-error-bg: #fee2e2;

    --color-info: #3b82f6;
    --color-info-dark: #1e40af;
    --color-info-bg: #dbeafe;

    /* ============================================================
       Typography
       ============================================================ */
    --font-primary: 'Graphik', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'Courier New', monospace;

    /* ============================================================
       Spacing (base 4px)
       ============================================================ */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;

    /* ============================================================
       Border Radius
       ============================================================ */
    --radius-sm: 2px;
    --radius: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-2xl: 16px;
    --radius-full: 9999px;

    /* ============================================================
       Shadows
       ============================================================ */
    --shadow-xs: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}
