/* BoomPop - Design tokens */
:root {
  /* Paleta oficial */
  --color-cream: #f7e5d9;
  --color-dark: #402917;
  --color-accent: #a17244;

  /* Derivados */
  --color-cream-dark: #ecd3c1;
  --color-dark-light: #5a3a20;
  --color-accent-light: #c79866;
  --color-accent-dark: #7d5934;
  --color-white: #ffffff;

  --color-success: #2e7d4f;
  --color-success-bg: #e3f3e9;
  --color-danger: #c0392b;
  --color-danger-bg: #fbe7e4;
  --color-warning: #b9790a;
  --color-warning-bg: #fbeed9;

  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-brand: 'Adam Script', 'Dancing Script', cursive;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(64, 41, 23, 0.08);
  --shadow-md: 0 6px 20px rgba(64, 41, 23, 0.14);
  --shadow-lg: 0 12px 32px rgba(64, 41, 23, 0.22);

  --nav-height: 72px;
  --header-height: 60px;

  --transition-fast: 0.18s ease;
  --transition-base: 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
