/* ============================================================
   HEADER — NH v3
   Two tiers: a thin utility strip over a floating capsule bar.
   Nav items are capsules (sliding wash on hover, filled when active).
   Loaded after seafoam.css so it wins the cascade over the old .xh rules.
   ============================================================ */

:root {
    --nh-pine:    #0d2a1f;
    --nh-pine-2:  #1b4332;
    --nh-mint:    #52b788;
    --nh-mint-2:  #95d5b2;
    --nh-mint-3:  #d8f3dc;
    --nh-ink:     #10241a;
    --nh-pencil:  #3d5a4b;
    --nh-line:    rgba(203,232,215,.9);
    --nh-ease:    cubic-bezier(.22, 1, .36, 1);
    --nh-shadow:  0 20px 50px -28px rgba(13,42,31,.55);
}

.nh {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1200;
    font-family: inherit;
    transition: transform .4s var(--nh-ease);
}

/* The bar is taller than the retired .xh header, so the global content
   offset in app.css has to grow with it. */
body:not(.page-index) .page-wrapper { padding-top: 118px; }
@media (max-width: 991px) {
    body:not(.page-index) .page-wrapper { padding-top: 78px; }
}

/* ---------- TIER 1 · utility strip ---------- */
.nh__utility {
    background: var(--nh-pine);
    color: rgba(216,243,220,.72);
    font-size: 12.5px;
    transition: max-height .35s var(--nh-ease), opacity .3s var(--nh-ease);
    max-height: 46px; overflow: visible;
}
.nh__utility-inner {
    max-width: 1320px; margin: 0 auto; padding: 0 24px; height: 42px;
    display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nh__utility-note { display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; }
.nh__utility-note i { color: var(--nh-mint); font-size: 11px; }

.nh__utility-tools { display: flex; align-items: center; gap: 4px; }
.nh__utility-div { width: 1px; height: 15px; background: rgba(216,243,220,.18); margin: 0 8px; }
.nh__utility-link {
    display: inline-flex; align-items: center; gap: 8px; padding: 6px 10px;
    color: rgba(216,243,220,.72); text-decoration: none; font-weight: 600;
    border-radius: 8px; transition: color .25s var(--nh-ease), background .25s var(--nh-ease);
}
.nh__utility-link:hover { color: #fff; background: rgba(149,213,178,.12); }
.nh__utility-link i { font-size: 11px; color: var(--nh-mint-2); }

/* mini dropdowns in the strip */
.nh__mini { position: relative; }
.nh__mini-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: none; border: 0; cursor: pointer; padding: 6px 10px;
    border-radius: 8px; color: rgba(216,243,220,.72);
    font-size: 12.5px; font-weight: 600;
    transition: color .25s var(--nh-ease), background .25s var(--nh-ease);
}
.nh__mini-btn > i:first-child { font-size: 11px; color: var(--nh-mint-2); }
.nh__mini-caret { font-size: 8px; opacity: .7; transition: transform .3s var(--nh-ease); }
.nh__mini:hover .nh__mini-btn,
.nh__mini.is-open .nh__mini-btn { color: #fff; background: rgba(149,213,178,.14); }
.nh__mini:hover .nh__mini-caret,
.nh__mini.is-open .nh__mini-caret { transform: rotate(180deg); }

/* ---------- shared popover ---------- */
.nh__pop {
    position: absolute; top: calc(100% + 10px); min-width: 200px;
    background: #fff; border: 1px solid var(--nh-line); border-radius: 16px;
    padding: 8px; box-shadow: var(--nh-shadow);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .25s var(--nh-ease), transform .25s var(--nh-ease), visibility .25s;
    z-index: 40;
}
.nh__pop--right { right: 0; }
.nh__pop--scroll { max-height: 300px; overflow-y: auto; }
.nh__mini:hover > .nh__pop,
.nh__mini.is-open > .nh__pop,
.nh__acct:hover > .nh__pop,
.nh__acct.is-open > .nh__pop { opacity: 1; visibility: visible; transform: none; }

.nh__pop-row {
    display: flex; align-items: center; gap: 11px;
    padding: 10px 12px; border-radius: 11px; text-decoration: none;
    font-size: 13.5px; font-weight: 600; color: var(--nh-ink); white-space: nowrap;
    transition: background .22s var(--nh-ease), color .22s var(--nh-ease), padding-left .22s var(--nh-ease);
}
.nh__pop-row:hover { background: var(--nh-mint-3); color: var(--nh-pine-2); padding-left: 16px; }
.nh__pop-row.is-current { background: rgba(82,183,136,.14); color: var(--nh-pine-2); }
.nh__pop-row--danger { color: #c0392b; }
.nh__pop-row--danger:hover { background: rgba(192,57,43,.1); color: #c0392b; }

.nh__pop-flag { width: 20px; height: 14px; border-radius: 3px; flex: none; }
.nh__pop-sym {
    width: 26px; height: 26px; border-radius: 8px; flex: none;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--nh-mint-3); color: var(--nh-pine-2); font-size: 12px; font-weight: 800;
}
.nh__pop-ico {
    width: 30px; height: 30px; border-radius: 9px; flex: none;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--nh-mint-3); color: var(--nh-pine-2); font-size: 12px;
    transition: background .22s var(--nh-ease), color .22s var(--nh-ease);
}
.nh__pop-row:hover .nh__pop-ico { background: var(--nh-mint); color: #fff; }
.nh__pop-check { margin-left: auto; font-size: 10px; color: var(--nh-mint); opacity: 0; }
.nh__pop-row.is-current .nh__pop-check { opacity: 1; }
.nh__pop-sep { display: block; height: 1px; background: var(--nh-line); margin: 6px 4px; }

/* ---------- TIER 2 · main bar ---------- */
.nh__bar { padding: 14px 24px; transition: padding .35s var(--nh-ease); }
.nh__bar-inner {
    max-width: 1320px; margin: 0 auto;
    display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px;
    background: rgba(255,255,255,.9); backdrop-filter: blur(16px);
    border: 1px solid rgba(203,232,215,.8); border-radius: 100px;
    padding: 10px 12px 10px 22px;
    box-shadow: 0 16px 40px -30px rgba(13,42,31,.5);
    transition: box-shadow .35s var(--nh-ease), background .35s var(--nh-ease);
}

.nh__logo { display: flex; align-items: center; flex: none; text-decoration: none; }
.nh__logo img { height: 38px; width: auto; display: block; }

/* Text wordmark (stands in for the logo image) */
.nh__logo-text {
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.01em;
    white-space: nowrap;
    color: var(--nh-pine);
}
.nh__logo:hover .nh__logo-text { color: var(--nh-pine-2); }

/* capsule nav */
.nh__nav { justify-self: center; }
.nh__nav-list {
    display: flex; align-items: center; gap: 4px;
    list-style: none; margin: 0; padding: 4px;
    background: rgba(238,248,241,.8); border-radius: 100px;
}
.nh__nav-item { position: relative; }

.nh__nav-link {
    position: relative; display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 20px; border-radius: 100px; text-decoration: none;
    font-size: 14.5px; font-weight: 700; color: var(--nh-pencil);
    transition: color .3s var(--nh-ease), background .3s var(--nh-ease), box-shadow .3s var(--nh-ease);
}
.nh__nav-dot {
    width: 5px; height: 5px; border-radius: 50%; background: var(--nh-mint);
    transform: scale(0); transition: transform .3s var(--nh-ease);
}
.nh__nav-text { position: relative; }
.nh__nav-caret { font-size: 8px; opacity: .6; transition: transform .3s var(--nh-ease); }

.nh__nav-link:hover { color: var(--nh-pine-2); background: #fff; box-shadow: 0 6px 18px -12px rgba(13,42,31,.5); }
.nh__nav-link:hover .nh__nav-dot { transform: scale(1); }
.nh__nav-item:hover .nh__nav-caret { transform: rotate(180deg); }

.nh__nav-link.is-active {
    background: var(--nh-pine-2); color: #fff;
    box-shadow: 0 10px 24px -14px rgba(27,67,50,.9);
}
.nh__nav-link.is-active .nh__nav-dot { transform: scale(1); background: var(--nh-mint-2); }

/* mega panel */
.nh__mega {
    position: absolute; top: calc(100% + 18px); left: 50%; transform: translate(-50%, -10px);
    width: min(880px, calc(100vw - 60px));
    display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 0;
    background: #fff; border: 1px solid var(--nh-line); border-radius: 24px;
    overflow: hidden; box-shadow: var(--nh-shadow);
    opacity: 0; visibility: hidden;
    transition: opacity .3s var(--nh-ease), transform .3s var(--nh-ease), visibility .3s;
    z-index: 40;
}
.nh__nav-item--has-mega:hover > .nh__mega,
.nh__nav-item--has-mega.is-open > .nh__mega {
    opacity: 1; visibility: visible; transform: translate(-50%, 0);
}
/* keeps the pointer bridge from the pill to the panel */
.nh__nav-item--has-mega::after {
    content: ''; position: absolute; left: 0; right: 0; top: 100%; height: 20px;
}

.nh__mega-aside {
    padding: 30px 26px;
    background: linear-gradient(160deg, var(--nh-pine-2) 0%, var(--nh-pine) 100%);
    display: flex; flex-direction: column;
}
.nh__mega-eyebrow {
    font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
    color: var(--nh-mint-2); margin-bottom: 12px;
}
.nh__mega-title { font-size: 21px; font-weight: 800; color: #fff !important; margin: 0 0 10px; line-height: 1.2; }
.nh__mega-sub { font-size: 13px; line-height: 1.65; color: rgba(216,243,220,.7) !important; margin: 0; }
.nh__mega-all {
    margin-top: auto; padding-top: 20px;
    display: inline-flex; align-items: center; gap: 9px;
    font-size: 13px; font-weight: 800; color: var(--nh-mint-2); text-decoration: none;
    transition: gap .25s var(--nh-ease), color .25s var(--nh-ease);
}
.nh__mega-all:hover { gap: 14px; color: #fff; }
.nh__mega-all i { font-size: 11px; }

.nh__mega-grid {
    padding: 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px;
}
.nh__mega-card {
    display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 13px;
    padding: 13px 14px; border-radius: 14px; text-decoration: none;
    transition: background .25s var(--nh-ease), transform .25s var(--nh-ease);
}
.nh__mega-card:hover { background: var(--nh-mint-3); transform: translateX(3px); }
.nh__mega-ico {
    width: 38px; height: 38px; border-radius: 12px; flex: none;
    display: flex; align-items: center; justify-content: center;
    background: rgba(82,183,136,.14); color: var(--nh-pine-2); font-size: 14px;
    transition: background .25s var(--nh-ease), color .25s var(--nh-ease);
}
.nh__mega-card:hover .nh__mega-ico { background: var(--nh-mint); color: #fff; }
.nh__mega-body { min-width: 0; }
.nh__mega-name {
    display: block; font-size: 14px; font-weight: 700; color: var(--nh-ink);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.nh__mega-desc {
    display: block; margin-top: 2px; font-size: 12px; color: var(--nh-pencil);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.nh__mega-arrow {
    font-size: 11px; color: var(--nh-mint); opacity: 0; transform: translateX(-5px);
    transition: all .25s var(--nh-ease);
}
.nh__mega-card:hover .nh__mega-arrow { opacity: 1; transform: none; }

/* ---------- actions ---------- */
.nh__actions { display: flex; align-items: center; gap: 8px; }

.nh__icon-btn {
    position: relative; width: 44px; height: 44px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--nh-line); background: #fff; cursor: pointer;
    color: var(--nh-pine-2); font-size: 16px; text-decoration: none;
    transition: all .3s var(--nh-ease);
}
.nh__icon-btn:hover {
    background: var(--nh-pine-2); border-color: var(--nh-pine-2); color: #fff;
    transform: translateY(-2px);
}
.nh__count {
    position: absolute; top: -4px; right: -4px; min-width: 21px; height: 21px;
    padding: 0 5px; border-radius: 100px;
    display: flex; align-items: center; justify-content: center;
    background: var(--nh-mint); color: #06231a; border: 2px solid #fff;
    font-size: 11px; font-weight: 800; line-height: 1;
}
.nh__icon-tip {
    position: absolute; top: calc(100% + 9px); left: 50%; transform: translate(-50%, -4px);
    padding: 5px 11px; border-radius: 7px; background: var(--nh-pine);
    color: #fff; font-size: 11px; font-weight: 600; white-space: nowrap;
    opacity: 0; pointer-events: none; transition: all .25s var(--nh-ease);
}
.nh__icon-btn:hover .nh__icon-tip { opacity: 1; transform: translate(-50%, 0); }

.nh__acct { position: relative; }
.nh__avatar, .nh__acct-avatar {
    width: 30px; height: 30px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--nh-mint); color: #06231a; font-size: 13px; font-weight: 800;
}
.nh__icon-btn--acct:hover .nh__avatar { background: var(--nh-mint-2); }

.nh__pop--acct { min-width: 252px; }
.nh__acct-head {
    display: flex; align-items: center; gap: 12px;
    padding: 12px; margin-bottom: 6px; border-radius: 13px; background: var(--nh-mint-3);
}
.nh__acct-avatar { width: 38px; height: 38px; font-size: 15px; flex: none; }
.nh__acct-meta { min-width: 0; }
.nh__acct-name {
    display: block; font-size: 14px; font-weight: 800; color: var(--nh-ink);
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.nh__acct-creds { display: block; margin-top: 2px; font-size: 12px; font-weight: 700; color: var(--nh-pine-2); }
.nh__acct-creds i { color: var(--nh-mint); margin-right: 4px; }

.nh__pop-cta {
    display: flex; align-items: center; justify-content: center; gap: 9px;
    margin: 4px; padding: 12px; border-radius: 12px;
    background: var(--nh-pine-2); color: #fff !important; text-decoration: none;
    font-size: 13.5px; font-weight: 800;
    transition: background .25s var(--nh-ease), gap .25s var(--nh-ease);
}
.nh__pop-cta:hover { background: var(--nh-mint); color: #06231a !important; gap: 14px; }
.nh__pop-cta i { font-size: 11px; }

.nh__cta {
    display: inline-flex; align-items: center; gap: 11px;
    height: 44px; padding: 0 8px 0 22px; border-radius: 100px;
    background: var(--nh-pine-2); color: #fff !important; text-decoration: none;
    font-size: 14px; font-weight: 700; white-space: nowrap;
    transition: background .3s var(--nh-ease), transform .3s var(--nh-ease), box-shadow .3s var(--nh-ease);
}
.nh__cta:hover {
    background: var(--nh-mint); color: #06231a !important;
    transform: translateY(-2px); box-shadow: 0 14px 28px -16px rgba(82,183,136,.9);
}
.nh__cta-ico {
    width: 30px; height: 30px; border-radius: 50%; flex: none;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.16); font-size: 11px;
    transition: transform .3s var(--nh-ease), background .3s var(--nh-ease);
}
.nh__cta:hover .nh__cta-ico { background: rgba(6,35,26,.15); transform: translateX(3px); }

/* burger — two bars that cross */
.nh__burger {
    display: none; width: 44px; height: 44px; border-radius: 14px;
    border: 1px solid var(--nh-line); background: #fff; cursor: pointer;
    padding: 0; position: relative;
}
.nh__burger span {
    position: absolute; left: 12px; width: 20px; height: 2px; border-radius: 2px;
    background: var(--nh-pine-2); transition: all .3s var(--nh-ease);
}
.nh__burger span:nth-child(1) { top: 17px; }
.nh__burger span:nth-child(2) { top: 25px; width: 13px; }
.nh__burger:hover span:nth-child(2) { width: 20px; }
.nh__burger[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nh__burger[aria-expanded="true"] span:nth-child(2) { top: 21px; width: 20px; transform: rotate(-45deg); }

/* ---------- scrolled state ---------- */
.nh.xh--scrolled .nh__utility { max-height: 0; overflow: hidden; opacity: 0; }
.nh.xh--scrolled .nh__bar { padding-top: 10px; padding-bottom: 10px; }
.nh.xh--scrolled .nh__bar-inner {
    background: rgba(255,255,255,.97);
    box-shadow: 0 18px 44px -26px rgba(13,42,31,.55);
}

/* ---------- mobile drawer ---------- */
.nh__drawer { position: fixed; inset: 0; z-index: 1300; visibility: hidden; }
.nh__drawer.xh__drawer--open { visibility: visible; }
.nh__drawer-overlay {
    position: absolute; inset: 0; background: rgba(7,26,19,.6); backdrop-filter: blur(3px);
    opacity: 0; transition: opacity .35s var(--nh-ease);
}
.nh__drawer.xh__drawer--open .nh__drawer-overlay { opacity: 1; }

.nh__drawer-panel {
    position: absolute; top: 0; right: 0; bottom: 0;
    width: min(400px, 88vw); background: #fff;
    display: flex; flex-direction: column; overflow-y: auto;
    transform: translateX(100%); transition: transform .42s var(--nh-ease);
    box-shadow: -30px 0 60px -30px rgba(13,42,31,.6);
}
.nh__drawer.xh__drawer--open .nh__drawer-panel { transform: none; }

.nh__drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 22px 24px; border-bottom: 1px solid var(--nh-line);
}
.nh__drawer-logo { height: 36px; width: auto; display: flex; align-items: center; text-decoration: none; }
.nh__drawer-logo .nh__logo-text { font-size: 20px; color: var(--nh-pine); }
.nh__drawer-close {
    width: 40px; height: 40px; border-radius: 50%; cursor: pointer;
    border: 1px solid var(--nh-line); background: #fff; color: var(--nh-pine-2);
    transition: all .25s var(--nh-ease);
}
.nh__drawer-close:hover { background: var(--nh-pine-2); color: #fff; }

.nh__drawer-nav { padding: 14px 16px; }
.nh__drawer-link {
    width: 100%; display: flex; align-items: center; gap: 14px;
    padding: 16px 14px; border-radius: 14px; border: 0; background: none;
    text-decoration: none; font-size: 16px; font-weight: 700; color: var(--nh-ink);
    text-align: left; cursor: pointer;
    transition: background .25s var(--nh-ease), color .25s var(--nh-ease), padding-left .25s var(--nh-ease);
}
.nh__drawer-link:hover { background: var(--nh-mint-3); padding-left: 20px; }
.nh__drawer-link.is-active { background: var(--nh-pine-2); color: #fff; }
.nh__drawer-link.is-active .nh__drawer-num { color: var(--nh-mint-2); }
.nh__drawer-num {
    font-size: 11px; font-weight: 800; letter-spacing: .1em; color: var(--nh-mint);
}
.nh__drawer-label { flex: 1; }
.nh__drawer-link > i { font-size: 12px; opacity: .5; }
.nh__drawer-caret { transition: transform .3s var(--nh-ease); }
.nh__drawer-toggle.is-open .nh__drawer-caret { transform: rotate(180deg); }
.nh__drawer-link--sm { font-size: 14px; padding: 12px 14px; gap: 11px; }
.nh__drawer-link--danger { color: #c0392b; }

.nh__drawer-sub {
    max-height: 0; overflow: hidden; transition: max-height .4s var(--nh-ease);
    padding-left: 12px;
}
.nh__drawer-sub.is-open { max-height: 520px; }
.nh__drawer-sub-link {
    display: flex; align-items: center; gap: 12px; padding: 12px 14px;
    border-radius: 12px; text-decoration: none; font-size: 14px; font-weight: 600;
    color: var(--nh-pencil); transition: all .22s var(--nh-ease);
}
.nh__drawer-sub-link:hover { background: var(--nh-mint-3); color: var(--nh-pine-2); }
.nh__drawer-sub-ico {
    width: 32px; height: 32px; border-radius: 10px; flex: none;
    display: flex; align-items: center; justify-content: center;
    background: rgba(82,183,136,.14); color: var(--nh-pine-2); font-size: 12px;
}

.nh__drawer-foot {
    margin-top: auto; padding: 18px 16px 26px; border-top: 1px solid var(--nh-line);
    display: flex; flex-direction: column; gap: 6px;
}
.nh__drawer-chips { display: flex; gap: 8px; margin-bottom: 12px; flex-wrap: wrap; }
.nh__chip {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 8px 14px; border-radius: 100px; border: 1px solid var(--nh-line);
    font-size: 12.5px; font-weight: 700; color: var(--nh-pencil); text-decoration: none;
    transition: all .25s var(--nh-ease);
}
.nh__chip .fi { width: 18px; height: 13px; border-radius: 3px; }
.nh__chip:hover { border-color: var(--nh-mint); color: var(--nh-pine-2); }
.nh__chip.is-current { background: var(--nh-pine-2); border-color: var(--nh-pine-2); color: #fff; }
.nh__chip--static { background: var(--nh-mint-3); border-color: transparent; }

.nh__drawer-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    margin-top: 8px; padding: 15px; border-radius: 100px;
    border: 1.5px solid var(--nh-pine-2); color: var(--nh-pine-2); text-decoration: none;
    font-size: 14.5px; font-weight: 800; transition: all .3s var(--nh-ease);
}
.nh__drawer-btn--solid { background: var(--nh-pine-2); color: #fff; }
.nh__drawer-btn:hover { background: var(--nh-mint); border-color: var(--nh-mint); color: #06231a; }
.nh__drawer-btn i { font-size: 12px; }

/* ---------- responsive ---------- */
@media (max-width: 1199px) {
    .nh__nav-link { padding: 10px 15px; font-size: 13.5px; }
    .nh__cta { padding-left: 18px; font-size: 13.5px; }
}

@media (max-width: 991px) {
    .nh__utility { display: none; }
    .nh__nav { display: none; }
    .nh__cta { display: none; }
    .nh__burger { display: block; }
    .nh__bar { padding: 12px 16px; }
    .nh__bar-inner { grid-template-columns: auto 1fr; padding: 9px 10px 9px 18px; }
    .nh__actions { justify-self: end; }
    .nh__logo img { height: 34px; }
    .nh__logo-text { font-size: 19px; }
}

@media (max-width: 575px) {
    .nh__bar { padding: 10px 12px; }
    .nh__icon-btn { width: 40px; height: 40px; font-size: 15px; }
    .nh__burger { width: 40px; height: 40px; }
    .nh__burger span { left: 10px; }
    .nh__burger span:nth-child(1) { top: 15px; }
    .nh__burger span:nth-child(2) { top: 23px; }
    .nh__burger[aria-expanded="true"] span { top: 19px !important; }
    .nh__icon-tip { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .nh, .nh * { transition-duration: .01ms !important; }
}

/* ============================================================
   HOVER-COLOUR GUARD
   global.css declares `a:hover { color: var(--secondary); text-decoration: underline; }`
   which recoloured (and effectively hid) the copy inside these link cards.
   ============================================================ */
.nh a:hover { text-decoration: none !important; }

.nh .nh__mega-card:hover .nh__mega-name { color: var(--nh-pine-2) !important; }
.nh .nh__mega-card:hover .nh__mega-desc { color: var(--nh-pencil) !important; }
.nh .nh__mega-card:hover .nh__mega-ico { color: #fff !important; }
.nh .nh__mega-all:hover { color: #fff !important; }

.nh .nh__pop-row:hover { color: var(--nh-pine-2) !important; }
.nh .nh__pop-row--danger:hover { color: #c0392b !important; }
.nh .nh__pop-row:hover .nh__pop-ico { color: #fff !important; }
.nh .nh__pop-cta:hover { color: #06231a !important; }

/* ============================================================
   CART BUTTON
   The legacy .cart-btn / .modern-cart-btn rules in app.css set a
   transparent background, white icon and 8px radius, which made the
   button invisible on the light bar. Chained classes win them back and
   give the cart a filled, high-contrast treatment.
   ============================================================ */
.nh .nh__icon-btn--cart.cart-btn.modern-cart-btn {
    width: 46px !important; height: 46px !important;
    padding: 0 !important; margin: 0 !important;
    border-radius: 50% !important;
    background: var(--nh-pine-2) !important;
    border: 1px solid var(--nh-pine-2) !important;
    color: #fff !important;
    display: inline-flex !important; align-items: center; justify-content: center;
    font-size: 17px !important; line-height: 1 !important;
    box-shadow: 0 10px 22px -14px rgba(27,67,50,.9);
}
.nh .nh__icon-btn--cart.cart-btn.modern-cart-btn:hover {
    background: var(--nh-mint) !important;
    border-color: var(--nh-mint) !important;
    color: #06231a !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 26px -14px rgba(82,183,136,.95);
}
.nh .nh__icon-btn--cart i { position: relative; top: 0; }

.nh .nh__count.cart-badge.cart-count {
    position: absolute !important; top: -5px !important; right: -5px !important;
    left: auto !important; bottom: auto !important;
    min-width: 22px !important; width: auto !important; height: 22px !important;
    padding: 0 6px !important; border-radius: 100px !important;
    display: flex !important; align-items: center; justify-content: center;
    background: var(--nh-mint) !important; color: #06231a !important;
    border: 2px solid #fff !important;
    font-size: 11px !important; font-weight: 800 !important; line-height: 1 !important;
    box-shadow: 0 4px 10px -4px rgba(13,42,31,.6);
}

.nh .nh__nav-link:hover { color: var(--nh-pine-2) !important; }
.nh .nh__nav-link.is-active,
.nh .nh__nav-link.is-active:hover { color: #fff !important; }
.nh .nh__cta:hover { color: #06231a !important; }
.nh .nh__icon-btn:hover { color: #fff !important; }
.nh .nh__utility-link:hover { color: #fff !important; }

.nh .nh__drawer-link:hover { color: var(--nh-ink) !important; }
.nh .nh__drawer-link.is-active,
.nh .nh__drawer-link.is-active:hover { color: #fff !important; }
.nh .nh__drawer-sub-link:hover { color: var(--nh-pine-2) !important; }
.nh .nh__drawer-btn:hover { color: #06231a !important; }
.nh .nh__chip.is-current { color: #fff !important; }
