/* public/css/variables.css */
:root {
    /* Color Palette */
    --color-primary: #2563eb;       /* Modern Blue */
    --color-primary-hover: #1d4ed8;
    --color-secondary: #7c3aed;     /* Vibrant Purple */
    --color-accent: #ef233c;        /* Punchy Red/Pink for accents/prices */
    --color-accent-hover: #d90429;
    --color-success: #10b981;
    --color-success-hover: #059669;

    /* Base Colors */
    --color-bg: #f8fafc;            /* Light gray background */
    --color-surface: #ffffff;       /* Pure white for cards */
    --color-text: #1e293b;          /* Dark slate for text */
    --color-text-muted: #64748b;    /* Muted text */
    --color-border: #e2e8f0;

    /* Typography */
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Inter', system-ui, -apple-system, sans-serif; /* Could be Outfit later */
    
    /* Shadows - Neumorphic & Modern */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --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);
    --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.4);

    /* Border Radius */
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
