.nvf-global-header,
.nvf-global-header *,
.nvf-global-header *::before,
.nvf-global-header *::after {
    box-sizing: border-box;
}

.nvf-global-header {
    --nvf-navy: #253A60;
    --nvf-red: #9E273F;
    --nvf-cream: #f5f2ec;
    --nvf-white: #fff;
    --nvf-header-top-space: 45px;
    --nvf-header-side-space: 46px;
    --nvf-focus: #9E273F;
    left: calc(50% - 50vw);
    right: auto;
    top: 0;
    width: 100vw;
    max-width: 100vw;
    margin-right: 0;
    margin-left: 0;
    z-index: 9900;
    color: var(--nvf-navy);
    font-family: inherit;
}

.nvf-global-header--position-absolute {
    position: absolute;
}

.nvf-global-header--position-sticky {
    position: sticky;
}

.nvf-global-header--position-static {
    position: relative;
}

.nvf-global-header a {
    color: inherit;
    text-decoration: none;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
}

.nvf-global-header button {
    appearance: none;
    -webkit-appearance: none;
    font: inherit;
    box-shadow: none;
    -webkit-tap-highlight-color: transparent;
}

.nvf-global-header__frame {
    position: relative;
    z-index: 2;
    width: calc(100% - (var(--nvf-header-side-space) * 2));
    max-width: min(1580px, calc(100vw - (var(--nvf-header-side-space) * 2)));
    margin: 0 auto;
    padding-top: var(--nvf-header-top-space);
}

.nvf-global-header__bar {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 108px;
    padding: 16px 36px;
    background: var(--nvf-white);
    border: 0;
    border-radius: 12px;
    box-shadow: 0 18px 55px rgba(18, 31, 54, 0.14);
}

.nvf-global-header__logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    line-height: 0;
}

.nvf-global-header__logo img {
    display: block;
    width: 158px;
    max-width: 100%;
    height: auto;
    max-height: 56px;
    object-fit: contain;
    object-position: left center;
}

.nvf-global-header__logo-missing {
    display: inline-flex;
    max-width: 180px;
    padding: 8px 10px;
    color: #8a2a2a;
    background: #fff0f0;
    border: 1px solid #ffd0d0;
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.3;
}

.nvf-global-header__desktop-nav {
    min-width: 0;
    margin: 0 auto;
    padding: 0 44px;
}

.nvf-global-header__nav-list,
.nvf-global-header__mobile-nav-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

.nvf-global-header__nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
}

.nvf-global-header__nav-item {
    margin: 0;
    padding: 0;
}

.nvf-global-header__nav-link,
.nvf-global-header__mega-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 7px 0;
    color: var(--nvf-navy);
    background: transparent;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    transition: color 180ms ease;
}

.nvf-global-header__nav-link:hover,
.nvf-global-header__nav-link:focus,
.nvf-global-header__nav-link:active,
.nvf-global-header__mega-trigger:hover,
.nvf-global-header__mega-trigger:focus,
.nvf-global-header__mega-trigger:active,
.nvf-global-header__mega-trigger[aria-expanded='true'] {
    color: var(--nvf-navy);
    background: transparent;
    background-color: transparent;
    box-shadow: none;
    text-decoration: none;
    outline: 0;
}

.nvf-global-header__mega-trigger {
    gap: 9px;
}

.nvf-global-header__chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    padding: 4px;
    color: var(--nvf-white);
    background: var(--nvf-red);
    border-radius: 50%;
    font-size: 8px;
    line-height: 1;
    transition: transform 220ms ease;
}

.nvf-global-header__chevron svg,
.nvf-global-header__chevron i {
    display: block;
    width: 100%;
    height: auto;
    fill: currentColor;
}

.nvf-global-header__mega-trigger[aria-expanded='true'] .nvf-global-header__chevron {
    transform: rotate(180deg);
}

.nvf-global-header__actions,
.nvf-global-header__mobile-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
}

.nvf-global-header__mobile-actions {
    display: none;
}

.nvf-global-header__phone,
.nvf-global-header__menu-toggle,
.nvf-global-header__mobile-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    padding: 0;
    color: var(--nvf-white);
    background: var(--nvf-navy);
    border: 0;
    border-radius: 50%;
    box-shadow: none;
    cursor: pointer;
    transition: transform 180ms ease, filter 180ms ease;
}

.nvf-global-header__phone svg,
.nvf-global-header__menu-toggle svg,
.nvf-global-header__mobile-close svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.nvf-global-header__phone i,
.nvf-global-header__menu-toggle i,
.nvf-global-header__mobile-close i {
    display: block;
    width: 1em;
    height: 1em;
    color: currentColor;
    font-size: 19px;
    line-height: 1;
}

.nvf-global-header__phone:hover,
.nvf-global-header__menu-toggle:hover,
.nvf-global-header__mobile-close:hover {
    filter: brightness(1.12);
    transform: translateY(-1px);
}

.nvf-global-header__primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 15px 34px;
    color: var(--nvf-white);
    background: var(--nvf-red);
    border: 0;
    border-radius: 999px;
    box-shadow: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
    transition: filter 180ms ease, transform 180ms ease;
}

.nvf-global-header__primary-cta:hover,
.nvf-global-header__primary-cta:focus,
.nvf-global-header__primary-cta:active {
    color: var(--nvf-white);
    background: var(--nvf-red);
    box-shadow: none;
    text-decoration: none;
    outline: 0;
    filter: brightness(0.94);
    transform: translateY(-1px);
}

.nvf-global-header__mega {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    left: 0;
    display: grid;
    grid-template-columns: minmax(250px, 0.78fr) minmax(0, 3.22fr);
    gap: clamp(22px, 2.5vw, 40px);
    padding: 28px;
    color: var(--nvf-navy);
    background: var(--nvf-cream);
    border: 1px solid rgba(37, 58, 96, 0.08);
    border-radius: 18px;
    box-shadow: 0 28px 80px rgba(18, 31, 54, 0.22);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(0.985);
    transform-origin: top center;
    transition: opacity 180ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 220ms;
}

.nvf-global-header.is-mega-open .nvf-global-header__mega {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
}

.nvf-global-header__backdrop {
    position: fixed;
    z-index: 1;
    inset: 0;
    background: rgba(18, 31, 54, 0.36);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 180ms ease, visibility 0s linear 180ms;
}

.nvf-global-header.is-mega-open .nvf-global-header__backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
}

.nvf-global-header__mega-intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    padding: 10px 0 0;
}

.nvf-global-header__mega-eyebrow,
.nvf-global-header__mobile-kicker {
    display: block;
    margin: 0 0 12px;
    color: var(--nvf-red);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.11em;
    line-height: 1.2;
    text-transform: uppercase;
}

.nvf-global-header__mega-title,
.nvf-global-header__mobile-offers-title {
    padding: 0;
    margin: 0;
    color: inherit;
    font-family: inherit;
    font-size: clamp(24px, 2vw, 34px);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.06;
}

.nvf-global-header__mega-text {
    max-width: 31ch;
    margin: 16px 0 24px;
    color: rgba(37, 58, 96, 0.78);
    font-size: 14px;
    line-height: 1.55;
}

.nvf-global-header__all-offers,
.nvf-global-header__mobile-all-offers {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: auto;
    color: var(--nvf-red);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.25;
}

.nvf-global-header__inline-icon {
    display: inline-flex;
    width: 13px;
    transition: transform 180ms ease;
}

.nvf-global-header__all-offers:hover .nvf-global-header__inline-icon,
.nvf-global-header__offer-card:hover .nvf-global-header__inline-icon {
    transform: translateX(3px);
}

.nvf-global-header__offers-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    min-width: 0;
}

.nvf-global-header__offer-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 292px;
    overflow: hidden;
    color: var(--nvf-white);
    background: var(--nvf-navy);
    border: 0;
    border-radius: 8px;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.nvf-global-header__offer-card:hover {
    color: var(--nvf-white);
    box-shadow: 0 18px 38px rgba(18, 31, 54, 0.18);
    transform: translateY(-4px);
}

.nvf-global-header__offer-card::after {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: '';
    background: linear-gradient(180deg, var(--nvf-mega-overlay-top, rgba(7, 14, 25, 0.03)) 18%, rgba(7, 14, 25, 0.42) 58%, var(--nvf-mega-overlay-bottom, rgba(7, 14, 25, 0.82)) 100%);
    pointer-events: none;
}

.nvf-global-header__offer-media {
    --nvf-offer-ratio: 62%;
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    padding-top: 0;
    overflow: hidden;
    background: #e7e4de;
}

.nvf-global-header__offer-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nvf-global-header__offer-card:hover .nvf-global-header__offer-image {
    transform: scale(1.035);
}

.nvf-global-header__offer-copy {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    min-height: 292px;
    padding: 24px;
}

.nvf-global-header__offer-title {
    display: block;
    color: var(--nvf-white);
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.nvf-global-header__offer-text {
    display: block;
    max-width: 31ch;
    margin-top: 12px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 14px;
    line-height: 1.45;
}

.nvf-global-header__offer-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 18px;
    min-height: 42px;
    padding: 12px 18px;
    color: var(--nvf-white);
    background: var(--nvf-red);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
}

.nvf-global-header__mobile-overlay {
    display: none;
}

.nvf-global-header :is(a, button):focus {
    outline: 0;
    box-shadow: none;
}

.nvf-global-header :is(a, button):focus-visible {
    outline: 2px solid rgba(158, 39, 63, 0.48);
    outline-offset: 4px;
}

html.nvf-mobile-nav-locked,
body.nvf-mobile-nav-locked {
    overflow: hidden;
    overscroll-behavior: none;
}

@media (max-width: 1180px) and (min-width: 1025px) {
    .nvf-global-header__desktop-nav {
        padding: 0 24px;
    }

    .nvf-global-header__nav-list {
        gap: 24px;
    }

    .nvf-global-header__nav-link,
    .nvf-global-header__mega-trigger {
        font-size: 14px;
    }

    .nvf-global-header__primary-cta {
        padding-right: 18px;
        padding-left: 18px;
    }
}

@media (max-width: 1024px) {
    .nvf-global-header {
        --nvf-header-top-space: 20px;
        --nvf-header-side-space: 20px;
    }

    .nvf-global-header__bar {
        justify-content: space-between;
        min-height: 74px;
        padding: 10px 10px 10px 22px;
    }

    .nvf-global-header__desktop-nav,
    .nvf-global-header__actions,
    .nvf-global-header__mega,
    .nvf-global-header__backdrop {
        display: none;
    }

    .nvf-global-header__mobile-actions {
        display: flex;
    }

    .nvf-global-header__phone--mobile,
    .nvf-global-header__menu-toggle {
        width: 50px;
        height: 50px;
    }

    .nvf-global-header__menu-toggle {
        color: var(--nvf-navy);
        background: rgba(37, 58, 96, 0.10);
    }

    .nvf-global-header__mobile-overlay {
        position: fixed;
        z-index: 20;
        inset: 0;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        overflow: hidden;
        color: var(--nvf-navy);
        background: var(--nvf-cream);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity 220ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 260ms;
    }

    .nvf-global-header.is-mobile-open .nvf-global-header__mobile-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        transition-delay: 0s;
    }

    .nvf-global-header__mobile-head {
        position: relative;
        z-index: 3;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex: 0 0 auto;
        min-height: 82px;
        padding: 14px 18px;
        background: var(--nvf-white);
        border-bottom: 1px solid rgba(37, 58, 96, 0.10);
    }

    .nvf-global-header__logo--mobile img {
        width: min(40vw, 142px);
        max-height: 44px;
    }

    .nvf-global-header__mobile-close {
        width: 48px;
        height: 48px;
    }

    .nvf-global-header__mobile-viewport {
        position: relative;
        flex: 1 1 auto;
        min-height: 0;
        overflow: hidden;
    }

    .nvf-global-header__mobile-panel {
        position: absolute;
        inset: 0;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-width: thin;
        transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 0s;
    }

    .nvf-global-header__mobile-panel--main {
        transform: translateX(0);
    }

    .nvf-global-header__mobile-panel--offers {
        visibility: hidden;
        transform: translateX(100%);
        transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 360ms;
    }

    .nvf-global-header__mobile-overlay.is-submenu-open .nvf-global-header__mobile-panel--main {
        visibility: hidden;
        transform: translateX(-28%);
        transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), visibility 0s linear 360ms;
    }

    .nvf-global-header__mobile-overlay.is-submenu-open .nvf-global-header__mobile-panel--offers {
        visibility: visible;
        transform: translateX(0);
        transition-delay: 0s;
    }

    .nvf-global-header__mobile-panel-inner {
        width: min(100%, 760px);
        min-height: 100%;
        padding: clamp(30px, 6vw, 60px) clamp(20px, 5vw, 48px) max(30px, env(safe-area-inset-bottom));
        margin: 0 auto;
    }

    .nvf-global-header__mobile-nav-list {
        display: flex;
        flex-direction: column;
    }

    .nvf-global-header__mobile-nav-list li {
        margin: 0;
        border-bottom: 1px solid rgba(37, 58, 96, 0.14);
    }

    .nvf-global-header__mobile-nav-link,
    .nvf-global-header__mobile-submenu-trigger {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 68px;
        padding: 14px 0;
        color: inherit;
        background: transparent;
        border: 0;
        cursor: pointer;
        font-size: clamp(25px, 5vw, 38px);
        font-weight: 650;
        letter-spacing: -0.035em;
        line-height: 1.08;
        text-align: left;
    }

    .nvf-global-header__mobile-submenu-trigger svg,
    .nvf-global-header__mobile-submenu-trigger i {
        width: 18px;
        flex: 0 0 auto;
        margin-left: 20px;
    }

    .nvf-global-header__mobile-cta-wrap {
        margin-top: 34px;
    }

    .nvf-global-header__primary-cta--mobile {
        width: 100%;
        min-height: 58px;
        padding: 16px 24px;
    }

    .nvf-global-header__mobile-back {
        display: inline-flex;
        align-items: center;
        min-height: 44px;
        padding: 0;
        margin: 0 0 24px;
        gap: 10px;
        color: inherit;
        background: transparent;
        border: 0;
        cursor: pointer;
        font-size: 14px;
        font-weight: 750;
    }

    .nvf-global-header__mobile-back svg,
    .nvf-global-header__mobile-back i {
        width: 15px;
    }

    .nvf-global-header__mobile-offers-title {
        max-width: 18ch;
        margin-bottom: 28px;
        font-size: clamp(27px, 6vw, 42px);
    }

    .nvf-global-header__mobile-offers-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .nvf-global-header__mobile-offer {
        display: grid;
        grid-template-columns: 96px minmax(0, 1fr) 20px;
        align-items: center;
        gap: 16px;
        min-height: 120px;
        padding: 12px;
        color: inherit;
        background: var(--nvf-white);
        border: 1px solid rgba(37, 58, 96, 0.08);
        border-radius: 13px;
    }

    .nvf-global-header__mobile-offer-media {
        position: relative;
        display: block;
        width: 96px;
        height: 96px;
        overflow: hidden;
        background: #e7e4de;
        border-radius: 9px;
    }

    .nvf-global-header__mobile-offer-media img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .nvf-global-header__mobile-offer-copy {
        display: flex;
        flex-direction: column;
        min-width: 0;
    }

    .nvf-global-header__mobile-offer-copy strong {
        color: inherit;
        font-size: 17px;
        line-height: 1.2;
    }

    .nvf-global-header__mobile-offer-copy > span:not(.nvf-global-header__mobile-offer-link) {
        display: -webkit-box;
        overflow: hidden;
        margin-top: 6px;
        color: rgba(37, 58, 96, 0.72);
        font-size: 12px;
        line-height: 1.4;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .nvf-global-header__mobile-offer-link {
        margin-top: 8px;
        color: var(--nvf-red);
        font-size: 11px;
        font-weight: 800;
        line-height: 1.25;
    }

    .nvf-global-header__mobile-offer-arrow {
        width: 15px;
        color: var(--nvf-red);
    }

    .nvf-global-header__mobile-all-offers {
        justify-content: center;
        width: 100%;
        min-height: 52px;
        padding: 14px 18px;
        margin-top: 18px;
        color: var(--nvf-red);
        background: rgba(158, 39, 63, 0.09);
        border-radius: 999px;
        font-size: 13px;
        font-weight: 800;
    }
}

@media (max-width: 560px) {
    .nvf-global-header {
        --nvf-header-top-space: 14px;
        --nvf-header-side-space: 14px;
    }

    .nvf-global-header__bar {
        min-height: 68px;
        padding-left: 18px;
    }

    .nvf-global-header__logo img {
        width: min(39vw, 136px);
    }

    .nvf-global-header__mobile-actions {
        gap: 7px;
    }

    .nvf-global-header__phone--mobile,
    .nvf-global-header__menu-toggle {
        width: 46px;
        height: 46px;
    }

    .nvf-global-header__mobile-panel-inner {
        padding-right: 18px;
        padding-left: 18px;
    }

    .nvf-global-header__mobile-offer {
        grid-template-columns: 76px minmax(0, 1fr) 16px;
        gap: 12px;
        min-height: 100px;
        padding: 10px;
    }

    .nvf-global-header__mobile-offer-media {
        width: 76px;
        height: 76px;
    }
}

@media (max-width: 360px) {
    .nvf-global-header__phone--mobile {
        display: none;
    }

    .nvf-global-header__mobile-offer-copy > span:not(.nvf-global-header__mobile-offer-link) {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .nvf-global-header *,
    .nvf-global-header *::before,
    .nvf-global-header *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Explicit icon color inheritance for Elementor/Font Awesome SVG output. */
.nvf-global-header__chevron,
.nvf-global-header__chevron i,
.nvf-global-header__chevron svg,
.nvf-global-header__inline-icon,
.nvf-global-header__inline-icon i,
.nvf-global-header__inline-icon svg,
.nvf-global-header__mobile-offer-arrow,
.nvf-global-header__mobile-offer-arrow i,
.nvf-global-header__mobile-offer-arrow svg {
    color: inherit;
}

.nvf-global-header__chevron svg,
.nvf-global-header__inline-icon svg,
.nvf-global-header__mobile-offer-arrow svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.nvf-global-header__chevron svg path[stroke],
.nvf-global-header__chevron svg line,
.nvf-global-header__chevron svg polyline,
.nvf-global-header__inline-icon svg path[stroke],
.nvf-global-header__inline-icon svg line,
.nvf-global-header__inline-icon svg polyline,
.nvf-global-header__mobile-offer-arrow svg path[stroke],
.nvf-global-header__mobile-offer-arrow svg line,
.nvf-global-header__mobile-offer-arrow svg polyline {
    stroke: currentColor !important;
}

.nvf-global-header__chevron svg path:not([fill="none"]),
.nvf-global-header__inline-icon svg path:not([fill="none"]),
.nvf-global-header__mobile-offer-arrow svg path:not([fill="none"]) {
    fill: currentColor !important;
}


/* Elementor icon wrappers: controls set color on the wrapper; every nested icon follows currentColor. */
.nvf-global-header__chevron > i,
.nvf-global-header__chevron > svg,
.nvf-global-header__inline-icon > i,
.nvf-global-header__inline-icon > svg,
.nvf-global-header__mobile-offer-arrow > i,
.nvf-global-header__mobile-offer-arrow > svg {
    color: inherit;
    fill: currentColor;
    stroke: currentColor;
}

.nvf-global-header__chevron > svg path,
.nvf-global-header__chevron > svg line,
.nvf-global-header__chevron > svg polyline,
.nvf-global-header__inline-icon > svg path,
.nvf-global-header__inline-icon > svg line,
.nvf-global-header__inline-icon > svg polyline,
.nvf-global-header__mobile-offer-arrow > svg path,
.nvf-global-header__mobile-offer-arrow > svg line,
.nvf-global-header__mobile-offer-arrow > svg polyline {
    color: inherit;
}

/* v1.0.7 — frontend-safe mega-menu icon colors.
 * Values are rendered inline on each widget instance, so Elementor's generated
 * frontend CSS or a global SVG rule cannot restore the NOVAFIT navy color.
 */
.nvf-global-header .nvf-global-header__offer-link .nvf-global-header__inline-icon--card,
.nvf-global-header .nvf-global-header__offer-link .nvf-global-header__inline-icon--card > i,
.nvf-global-header .nvf-global-header__offer-link .nvf-global-header__inline-icon--card > svg {
    color: var(--nvf-mega-card-icon-color, #fff) !important;
}

.nvf-global-header .nvf-global-header__offer-card:hover .nvf-global-header__offer-link .nvf-global-header__inline-icon--card,
.nvf-global-header .nvf-global-header__offer-card:focus-visible .nvf-global-header__offer-link .nvf-global-header__inline-icon--card,
.nvf-global-header .nvf-global-header__offer-card:hover .nvf-global-header__offer-link .nvf-global-header__inline-icon--card > i,
.nvf-global-header .nvf-global-header__offer-card:focus-visible .nvf-global-header__offer-link .nvf-global-header__inline-icon--card > i,
.nvf-global-header .nvf-global-header__offer-card:hover .nvf-global-header__offer-link .nvf-global-header__inline-icon--card > svg,
.nvf-global-header .nvf-global-header__offer-card:focus-visible .nvf-global-header__offer-link .nvf-global-header__inline-icon--card > svg {
    color: var(--nvf-mega-card-icon-hover-color, #fff) !important;
}

.nvf-global-header .nvf-global-header__all-offers .nvf-global-header__inline-icon--all-offers,
.nvf-global-header .nvf-global-header__all-offers .nvf-global-header__inline-icon--all-offers > i,
.nvf-global-header .nvf-global-header__all-offers .nvf-global-header__inline-icon--all-offers > svg {
    color: var(--nvf-mega-all-icon-color, #9e273f) !important;
}

.nvf-global-header .nvf-global-header__all-offers:hover .nvf-global-header__inline-icon--all-offers,
.nvf-global-header .nvf-global-header__all-offers:focus-visible .nvf-global-header__inline-icon--all-offers,
.nvf-global-header .nvf-global-header__all-offers:hover .nvf-global-header__inline-icon--all-offers > i,
.nvf-global-header .nvf-global-header__all-offers:focus-visible .nvf-global-header__inline-icon--all-offers > i,
.nvf-global-header .nvf-global-header__all-offers:hover .nvf-global-header__inline-icon--all-offers > svg,
.nvf-global-header .nvf-global-header__all-offers:focus-visible .nvf-global-header__inline-icon--all-offers > svg {
    color: var(--nvf-mega-all-icon-hover-color, #253a60) !important;
}

.nvf-global-header .nvf-global-header__inline-icon--card svg path,
.nvf-global-header .nvf-global-header__inline-icon--card svg line,
.nvf-global-header .nvf-global-header__inline-icon--card svg polyline,
.nvf-global-header .nvf-global-header__inline-icon--all-offers svg path,
.nvf-global-header .nvf-global-header__inline-icon--all-offers svg line,
.nvf-global-header .nvf-global-header__inline-icon--all-offers svg polyline {
    fill: currentColor !important;
    stroke: currentColor !important;
}
