/* Lion Distribuidora — Design Tokens */
:root {
  /* Brand colors */
  --primary-color: #ff6600;
  --primary-hover: #e55a00;
  --primary-light: #ff8533;
  --primary-rgb: 255, 102, 0;
  --primary-subtle: rgba(255, 102, 0, 0.08);
  --secondary-color: #1a1a2e;
  --secondary-rgb: 26, 26, 46;
  --light-color: #ffffff;
  --gray-light: #f8f9fb;
  --gray-medium: #e0e4ea;
  --gray-medium-rgb: 224, 228, 234;
  --gray-dark: #64748b;
  --accent-danger: #dc3545;
  --accent-success: #16a34a;
  --accent-warning: #f59e0b;
  --whatsapp: #25d366;

  /* Typography */
  --font-primary: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'Roboto', sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;

  /* Spacing (4px grid) */
  --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;

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

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(26, 26, 46, 0.06);
  --shadow: 0 2px 15px rgba(26, 26, 46, 0.08);
  --shadow-md: 0 4px 20px rgba(26, 26, 46, 0.1);
  --shadow-lg: 0 8px 30px rgba(26, 26, 46, 0.12);
  --shadow-primary: 0 8px 20px rgba(var(--primary-rgb), 0.25);

  /* Layout */
  --container-max: 1200px;
  --header-height: 72px;
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;

  /* Z-index scale */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 900;
  --z-modal: 1000;
  --z-toast: 1010;
  --z-whatsapp: 9999;

  /* Breakpoints (reference) */
  --bp-sm: 576px;
  --bp-md: 768px;
  --bp-lg: 992px;
  --bp-xl: 1200px;
}
