/* ============================================ */
/* VARIABLES CSS — Design System Paul Cars Business */
/* ============================================ */
:root {
    /* Primary Colors - Steel Blue / Gold */
    --pcb-primary: #2c5f8a;
    --pcb-primary-dark: #1e4263;
    --pcb-primary-light: #4a8bc2;
    --pcb-secondary: #c8a84e;
    --pcb-secondary-dark: #a68a3a;
    --pcb-secondary-light: #e0c46c;

    /* Neutral */
    --pcb-dark: #1a1a2e;
    --pcb-gray-900: #212529;
    --pcb-gray-700: #495057;
    --pcb-gray-500: #6c757d;
    --pcb-gray-300: #dee2e6;
    --pcb-gray-100: #f8f9fa;
    --pcb-white: #ffffff;

    /* Status */
    --pcb-success: #28a745;
    --pcb-danger: #dc3545;
    --pcb-warning: #ffc107;
    --pcb-info: #17a2b8;

    /* Font */
    --pcb-font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --pcb-header-height: 72px;
    --pcb-sidebar-width: 260px;

    /* Border radius */
    --pcb-radius: 8px;
    --pcb-radius-lg: 12px;

    /* Shadows */
    --pcb-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --pcb-shadow: 0 4px 12px rgba(0,0,0,0.1);
    --pcb-shadow-lg: 0 8px 24px rgba(0,0,0,0.15);

    /* Transitions */
    --pcb-transition: 0.2s ease;
}
