/* SpecialCoffee.ru Design Tokens
   All CSS custom properties for the design system.
   Referenced by base.css, components.css, layout.css via var(--token-name). */

:root {
  /* Brand Colors */
  --color-chocolate: #2C1810;
  --color-cream: #FDF8F3;
  --color-latte: #F5EDE4;
  --color-red: #C41E3A;
  --color-gold: #D4A847;

  /* Neutral Scale */
  --text-primary: #1A1A1A;
  --text-secondary: #666666;
  --text-on-dark: #FFFFFF;
  --color-border: #E8DDD5;
  --bg-light: #FDF8F3;
  --bg-dark: #2C1810;

  /* Semantic States */
  --color-success: #2E7D32;
  --color-error: #C41E3A;
  --color-info: #1565C0;
  --color-telegram: #2AABEE;

  /* Typography */
  --font-size-body: 16px;
  --font-size-small: 14px;
  --font-size-subheading: 20px;
  --font-size-heading: 28px;
  --font-weight-regular: 400;
  --font-weight-semibold: 600;
  --line-height-normal: 1.5;
  --line-height-tight: 1.2;

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

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

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(44, 24, 16, 0.08);
  --shadow-md: 0 4px 12px rgba(44, 24, 16, 0.12);
  --shadow-lg: 0 8px 24px rgba(44, 24, 16, 0.16);

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

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

/* Breakpoints (reference only — use raw px in @media queries)
   Mobile: 320px (default, no query needed)
   Tablet: 768px
   Desktop: 1024px
   Wide: 1440px
*/
