/* ==========================================================================
   Design Tokens — Malabar Bakes
   ========================================================================== */

:root {
  /* Brand */
  --orange: #FF6B35;
  --orange-light: #FF8F5E;
  --orange-dark: #E85A24;
  --orange-glow: rgba(255, 107, 53, 0.15);
  --maroon: #4B0000;
  --maroon-light: #6B1111;
  --maroon-deep: #1A0000;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #FAFAF8;
  --cream: #FFF8F0;
  --gray-50: #F9F9F9;
  --gray-100: #F3F3F3;
  --gray-200: #E8E8E8;
  --gray-300: #DADADA;
  --gray-400: #B0B0B0;
  --gray-500: #8A8A8A;
  --gray-600: #6A6A6A;
  --gray-700: #4A4A4A;
  --gray-800: #2D2D2D;
  --gray-900: #1A1A1A;
  --black: #0A0A0A;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: 'DM Serif Display', 'Georgia', serif;

  --fs-xs: 0.75rem;     /* 12px */
  --fs-sm: 0.875rem;    /* 14px */
  --fs-base: 1rem;      /* 16px */
  --fs-md: 1.125rem;    /* 18px */
  --fs-lg: 1.25rem;     /* 20px */
  --fs-xl: 1.5rem;      /* 24px */
  --fs-2xl: 2rem;       /* 32px */
  --fs-3xl: 2.5rem;     /* 40px */
  --fs-4xl: 3.5rem;     /* 56px */
  --fs-5xl: 4.5rem;     /* 72px */
  --fs-6xl: 6rem;       /* 96px */

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;
  --space-5xl: 128px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 48px rgba(0,0,0,0.1);
  --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.2);

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

  /* Transitions */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --dur-fast: 0.2s;
  --dur-base: 0.4s;
  --dur-slow: 0.8s;

  /* Z-index */
  --z-cursor: 9999;
  --z-loader: 9998;
  --z-nav: 1000;
  --z-overlay: 900;
  --z-fab: 800;
}
