/* Mr. Maxey's Tea - Design Tokens */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&family=Inter:wght@400;500;600&display=swap');

:root {
  /* Colors */
  --color-primary: #5C3D2E;
  --color-primary-dark: #3D261C;
  --color-primary-light: #7A5A4A;
  --color-secondary: #C4704A;
  --color-secondary-light: #D4895E;
  --color-accent: #7B9E6B;
  --color-accent-light: #9BB88D;

  --color-bg: #FAF6F1;
  --color-bg-alt: #F2ECE4;
  --color-bg-card: rgba(255, 255, 255, 0.88);
  --color-bg-card-solid: #FFFFFF;

  --color-text: #2C2C2C;
  --color-text-muted: #6B6B6B;
  --color-text-light: #9A9A9A;
  --color-text-inverse: #FAF6F1;

  --color-border: #E5DDD4;
  --color-border-dark: #C8BEB3;

  --color-success: #4A7C3F;
  --color-gold: #B8860B;
  --color-danger: #C0392B;

  /* Typography */
  --font-heading: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Type Scale (1.25 ratio) */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.563rem;
  --text-3xl: 1.953rem;
  --text-4xl: 2.441rem;
  --text-5xl: 3.052rem;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-drawer: -4px 0 24px rgba(0, 0, 0, 0.15);

  /* Glass Effect */
  --blur-glass: 12px;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Layout */
  --container-max: 1280px;
  --header-height: 72px;
}
