/*
 * Morini brand skin.
 *
 * Re-skins the main-menu highlight (hover / open / current page) to the brand
 * accent, without touching --color-primary — which also paints buttons, links,
 * the logo, etc. The base theme paints the menu highlight with `text-nav-active`,
 * whose colour is the --color-nav-active token (defined in Magekit/main, where it
 * defaults to --color-primary). Here we remap just that one token to the accent.
 *
 * The doubled `:root:root` raises specificity above the base `@theme` declaration
 * (a single `:root`), so this override wins regardless of stylesheet load order.
 * Plain hand-written CSS on purpose: this brand has no Tailwind build of its own,
 * it inherits the compiled base styles.css and only layers this token override on
 * top (loaded after styles.css via Magento_Theme/layout/default_head_blocks.xml).
 */
:root:root {
    --color-nav-active: var(--color-accent);
}
