/* Design Tokens - Boutique del Café */
:root {
  /* Colors */
  --color-cream: #FDFBF7;
  --color-cream-dark: #F5EFE6;
  --color-espresso: #1E140F;
  --color-espresso-light: #2A1D16;
  --color-gold: #D4AF37;
  --color-gold-hover: #AA882C;
  --color-gold-light: #E5C483;
  --color-brass: #C5A880;
  --color-text-main: #2E221B;
  --color-text-secondary: #6E5D53;
  --color-text-light: #FDFBF7;
  --color-white: #FFFFFF;
  --color-glass-bg: rgba(253, 251, 247, 0.7);
  --color-glass-border: rgba(212, 175, 55, 0.15);
  --color-glass-bg-dark: rgba(30, 20, 15, 0.8);
  --color-glass-border-dark: rgba(212, 175, 55, 0.2);

  /* Fonts */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing (8dp grid scale) */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;
  --spacing-huge: 64px;

  /* Typography Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-md: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-xxl: 1.5rem;
  --text-display-sm: 2.25rem;
  --text-display-md: 3rem;
  --text-display-lg: 4.5rem;

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

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(30, 20, 15, 0.05);
  --shadow-md: 0 8px 16px rgba(30, 20, 15, 0.08);
  --shadow-lg: 0 16px 32px rgba(30, 20, 15, 0.12);
  --shadow-gold: 0 8px 24px rgba(212, 175, 55, 0.15);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);

  /* Containers */
  --container-width: 1200px;
}
