/* ===========================================
   🎨 MyWay UI - DESIGN TOKENS (Variables)
   =========================================== */
:root {

/* --- 1. COLORES PRIMARIOS (Marca Gastronómica) --- */
--brand-primary: #E67E22;       /* Naranja Zanahoria - Apetitoso */
--brand-primary-dark: #D35400;
--brand-primary-light: #F39C12;
--brand-primary-rgb: 230, 126, 34;

--brand-secondary: #2C3E50;     /* Azul Carbón - Elegancia */
--brand-tertiary: #C0392B;      /* Rojo Vino - Acentos */

--brand-gradient: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-tertiary) 100%);
--brand-gradient-soft: linear-gradient(135deg, rgba(230, 126, 34, 0.1) 0%, rgba(192, 57, 43, 0.1) 100%);

    /* --- 2. COLORES DE ESTADO --- */
    --success: #10b981;
    --success-light: #d1fae5;
    --success-dark: #059669;

    --danger: #ef4444;
    --danger-light: #fee2e2;
    --danger-dark: #dc2626;

    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --warning-dark: #d97706;

    --info: #3b82f6;
    --info-light: #dbeafe;
    --info-dark: #2563eb;

    /* --- 3. ESCALA DE GRISES Y NEUTROS --- */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

/* --- 4. FONDO Y TEXTO --- */
--bg-body: #FDFBF7;             /* Crema muy suave */
--bg-surface: #FFFFFF;
--bg-surface-hover: #FAF5F0;
--text-primary: #2C3E50;        /* Texto oscuro azul carbón */
--text-secondary: #566573;
--text-muted: #95A5A6;
--border-color: #ECEFF1;
    /* --- 5. TIPOGRAFÍA --- */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'Fira Code', monospace;
    
    --text-xs: 0.75rem;    /* 12px */
    --text-sm: 0.875rem;   /* 14px */
    --text-base: 1rem;     /* 16px */
    --text-lg: 1.125rem;   /* 18px */
    --text-xl: 1.25rem;    /* 20px */
    --text-2xl: 1.5rem;    /* 24px */
    --text-3xl: 1.875rem;  /* 30px */
    --text-4xl: 2.25rem;   /* 36px */
    --text-5xl: 3rem;      /* 48px */

    /* --- 6. ESPACIADO (Padding/Margin) --- */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.5rem;
    --space-6: 2rem;
    --space-8: 3rem;
    --space-10: 4rem;
    --space-12: 6rem;

    /* --- 7. BORDES Y SOMBRAS --- */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px 0 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-glow: 0 0 20px rgba(var(--brand-primary-rgb), 0.3);

    /* --- 8. TRANSICIONES --- */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

    /* --- 9. LAYOUT --- */
    --container-width: 1200px;
    --navbar-height: 64px;

    /* --- 10. COMPONENTES ESPECIALES --- */
    --hero-height: 90vh; /* Altura del Carrusel Hero */
}