/*
 * Morini brand skin.
 *
 * Morini's own colour tokens (Figma "Morini/Morini" teal + primary blue), moved here
 * from Magekit/main's shared defaults where they used to live by historical accident:
 * the primary blue was the theme's own colour from when this codebase was still a
 * single, unnamed-brand project, and the teal was bolted directly onto the shared
 * base later, when this became Morini's live site. Both leaked into the "brand-agnostic"
 * base instead of a child theme (see docs/pengo-website-implementation-plan.md's Pengo
 * work for why that stopped being harmless). Values are unchanged from what the base
 * used to hard-code, so this is a rescoping, not a redesign — same rendered colours.
 *
 * --search-accent feeds --color-accent (see Magekit/main/tailwind-source.css) and the
 * search button; --color-nav-active re-skins just the main-menu highlight (hover / open
 * / current page) to that same accent, without touching --color-primary — which also
 * paints buttons, links, the logo, etc.
 *
 * 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-primary: #12427f;
    --color-primary-lighter: #9bb0ca;
    --color-primary-darker: #00195f;
    --search-accent: #0d9488;
    --color-nav-active: var(--color-accent);
}
