/* VITALIZA — visual-pack-tokens.css
 * Additive bridge between the approved Visual Pack (design_tokens.json)
 * and the existing --vt-* system. NEW variables only — no overrides,
 * so it cannot alter the current theme. Safe to load anywhere after tokens.css.
 */
:root {
  /* Accents introduced by the Visual Pack that were not yet in --vt-* */
  --vt-rose:     #EFB5C7;
  --vt-lavender: #C9BDE8;
  --vt-warm-canvas: #F4EBDD;
  /* Aliases so components can use Visual Pack names directly */
  --vp-cream: var(--vt-cream, #F7F3EE);
  --vp-ink: var(--vt-ink, #2B2E34);
  --vp-solar: var(--vt-solar, #FF8A00);
  --vp-solar-soft: var(--vt-amber, #FFB84D);
  --vp-sage: var(--vt-sage, #AFC48F);
  --vp-rose: var(--vt-rose);
  --vp-lavender: var(--vt-lavender);
  /* Asset base path (all Visual Pack SVGs live here) */
  --vp-assets: "public/assets";
}
