:root {
    /* Colors - Electric Tiendas & Marcas Branding */
    --primary-color: #00224D;
    /* Darker Navy Blue */
    --primary-light: #003B91;
    /* Previous primary is now light accent */
    --primary-dark: #00112b;

    --accent-color: #00AEEF;
    /* Logo Sky Blue */
    --accent-glow: rgba(0, 174, 239, 0.4);

    --secondary-accent: #F7941D;
    /* Vibrant Lava Orange */
    --secondary-glow: rgba(247, 148, 29, 0.4);

    --success-color: #39B54A;
    --danger-color: #EE1C25;
    --warning-color: #FFC20E;

    --bg-color: #f0f4f8;
    --surface-color: #ffffff;

    /* High-Impact Visual Effects - Glass & Depth */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.5);

    /* Glowing Shadows */
    --shadow-blue: 0 10px 30px -5px rgba(0, 59, 145, 0.3);
    --shadow-orange: 0 10px 30px -5px rgba(247, 148, 29, 0.3);
    --shadow-neon: 0 0 20px var(--accent-glow);

    --shadow-premium: 0 20px 40px -10px rgba(0, 0, 0, 0.15);

    /* Kinetic Gradients */
    --grad-electric: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    --grad-lava: linear-gradient(135deg, #F7941D 0%, #EE1C25 100%);
    --grad-mesh: radial-gradient(at 0% 0%, hsla(210, 100%, 30%, 1) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(25, 100%, 50%, 0.2) 0, transparent 50%),
        radial-gradient(at 50% 100%, hsla(200, 100%, 50%, 0.3) 0, transparent 50%);

    --grad-card: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    --grad-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-light: #94a3b8;
    --text-on-primary: #ffffff;

    /* Sidebar/Nav */
    --sidebar-bg: var(--primary-color);
    --sidebar-text: #ffffff;
    --sidebar-active: var(--accent-color);

    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;

    /* BorderRadius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;

    /* Shadows */
    --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);

    /* Typography */
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
}