/* Two design tokens the Hyva theme references but never defines.
   var(--eoc-sans) is used 15 times and var(--eoc-radius) 3 times, both WITHOUT a
   fallback, so while undefined those declarations are invalid and drop.
   The other eleven --eoc-* tokens ARE defined upstream as aliases of the Tailwind
   theme vars; do not redefine those here or a future palette change is silently
   overridden. Loaded via Magento_Theme/layout/default.xml so it survives
   setup:static-content:deploy - an earlier attempt appended this to the compiled
   styles.css and a later deploy wiped it. */
:root {
    --eoc-sans: var(--font-sans);
    --eoc-radius: 14px;
}
