.glrh-shell {
    --glrh-blue: #135B9E;
    --glrh-blue-deep: #0C4779;
    --glrh-blue-soft: #EDF5FC;
    --glrh-dark: #282828;
    --glrh-gray: #6C6C6C;
    --glrh-silver: #BFBFBF;
    --glrh-light: #F9F9F9;
    --glrh-white: #FFFFFF;
    --glrh-line: #E3EDF6;
    --glrh-shadow: 0 20px 60px rgba(19, 91, 158, .14);
    --glrh-mega-cols: 4;
}

.glrh-shell,
.glrh-shell * {
    box-sizing: border-box;
}

.glrh-shell {
    position: sticky;
    top: 0;
    z-index: 99990;
    width: 100%;
    direction: rtl;
    font-family: 'AzarMehr', Tahoma, Arial, sans-serif;
    isolation: isolate;
}

.admin-bar .glrh-shell {
    top: 32px;
}

.glrh-bar {
    position: relative;
    z-index: 4;
    width: 100%;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid rgba(19,91,158,.07);
    transition: background .28s ease, box-shadow .28s ease, border-color .28s ease, backdrop-filter .28s ease;
}

.glrh-shell.is-scrolled .glrh-bar {
    background: rgba(255,255,255,.86);
    border-color: rgba(19,91,158,.11);
    box-shadow: 0 12px 40px rgba(19,91,158,.10);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    backdrop-filter: blur(18px) saturate(140%);
}

.glrh-inner {
    width: min(1320px, calc(100% - 40px));
    min-height: 78px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.glrh-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    line-height: 0;
}

.glrh-logo img {
    display: block;
    width: auto;
    height: 46px;
    max-width: 190px;
    object-fit: contain;
}

.glrh-desktop-nav {
    position: relative;
    display: flex;
    align-self: stretch;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-width: 0;
}

.glrh-menu,
.glrh-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.glrh-desktop-menu {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 2px;
    height: 100%;
}

.glrh-desktop-menu > li {
    position: static;
    display: flex;
    align-items: stretch;
    align-self: stretch;
    margin: 0 !important;
    padding: 0 !important;
    line-height: normal !important;
}

/* Hard vertical-alignment reset for first-level menu items.
   Prevents theme styles from pushing individual WordPress menu items up/down. */
.glrh-desktop-menu > li > a {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    display: flex !important;
    align-items: center !important;
    align-self: stretch !important;
    justify-content: center !important;
    height: auto !important;
    min-height: 100% !important;
    margin: 0 !important;
    padding: 0 13px !important;
    transform: none;
    color: var(--glrh-dark);
    font-family: 'AzarMehr', Tahoma, Arial, sans-serif !important;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.45 !important;
    vertical-align: middle !important;
    text-decoration: none !important;
    white-space: nowrap;
    transition: color .22s ease;
}

.glrh-desktop-menu > li > a::after {
    content: '';
    position: absolute;
    right: 13px;
    left: 13px;
    bottom: 0;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: var(--glrh-blue);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .24s ease;
}

.glrh-desktop-menu > li:hover > a,
.glrh-desktop-menu > li:focus-within > a,
.glrh-desktop-menu > li.current-menu-item > a,
.glrh-desktop-menu > li.current-menu-ancestor > a {
    color: var(--glrh-blue);
}

.glrh-desktop-menu > li:hover > a::after,
.glrh-desktop-menu > li:focus-within > a::after,
.glrh-desktop-menu > li.current-menu-item > a::after,
.glrh-desktop-menu > li.current-menu-ancestor > a::after {
    transform: scaleX(1);
}

/* Desktop mega menu: level 2 = columns, levels 3/4 = links inside each column */
.glrh-shell.is-mega-enabled .glrh-desktop-menu > li.menu-item-has-children > .sub-menu {
    position: absolute;
    z-index: 20;
    top: calc(100% - 1px);
    right: 50%;
    width: min(1160px, calc(100vw - 48px));
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(var(--glrh-mega-cols), minmax(0, 1fr));
    gap: 16px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(19,91,158,.12);
    border-radius: 0 0 24px 24px;
    box-shadow: 0 28px 70px rgba(19,91,158,.17);
    -webkit-backdrop-filter: blur(18px) saturate(135%);
    backdrop-filter: blur(18px) saturate(135%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(50%, 14px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.glrh-shell.is-mega-enabled .glrh-desktop-menu > li.menu-item-has-children > .sub-menu::before {
    content: '';
    position: absolute;
    top: -10px;
    right: 0;
    left: 0;
    height: 10px;
}

.glrh-shell.is-mega-enabled .glrh-desktop-menu > li.menu-item-has-children:hover > .sub-menu,
.glrh-shell.is-mega-enabled .glrh-desktop-menu > li.menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(50%, 0);
}

.glrh-shell.is-mega-enabled .glrh-desktop-menu > li > .sub-menu > li {
    position: relative;
    min-width: 0;
    padding: 4px 5px;
}

.glrh-shell.is-mega-enabled .glrh-desktop-menu > li > .sub-menu > li > a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 10px 12px 10px 10px;
    margin-bottom: 5px;
    border-radius: 12px;
    color: var(--glrh-blue-deep);
    background: linear-gradient(180deg, #F6FAFE 0%, #EFF6FC 100%);
    border: 1px solid #E2EEF8;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.7;
    text-decoration: none;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.glrh-shell.is-mega-enabled .glrh-desktop-menu > li > .sub-menu > li > a::before {
    content: '';
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    margin-left: 9px;
    border-radius: 50%;
    background: var(--glrh-blue);
    box-shadow: 0 0 0 5px rgba(19,91,158,.09);
}

.glrh-shell.is-mega-enabled .glrh-desktop-menu > li > .sub-menu > li > a:hover,
.glrh-shell.is-mega-enabled .glrh-desktop-menu > li > .sub-menu > li > a:focus {
    background: #fff;
    border-color: rgba(19,91,158,.25);
    transform: translateY(-1px);
    outline: none;
}

.glrh-shell.is-mega-enabled .glrh-desktop-menu > li > .sub-menu > li > .sub-menu {
    position: static;
    display: block;
    width: auto;
    min-width: 0;
    padding: 4px 3px 0;
    margin: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
}

.glrh-shell.is-mega-enabled .glrh-desktop-menu > li > .sub-menu > li > .sub-menu li {
    position: relative;
}

.glrh-shell.is-mega-enabled .glrh-desktop-menu > li > .sub-menu > li > .sub-menu a {
    display: flex;
    align-items: center;
    min-height: 36px;
    padding: 7px 12px;
    border-radius: 9px;
    color: #505A64;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.65;
    text-decoration: none;
    transition: color .18s ease, background .18s ease, padding .18s ease;
}

.glrh-shell.is-mega-enabled .glrh-desktop-menu > li > .sub-menu > li > .sub-menu a::before {
    content: '';
    width: 4px;
    height: 4px;
    flex: 0 0 4px;
    margin-left: 8px;
    border-radius: 50%;
    background: #9CBAD3;
    transition: background .18s ease, transform .18s ease;
}

.glrh-shell.is-mega-enabled .glrh-desktop-menu > li > .sub-menu > li > .sub-menu a:hover,
.glrh-shell.is-mega-enabled .glrh-desktop-menu > li > .sub-menu > li > .sub-menu a:focus,
.glrh-shell.is-mega-enabled .glrh-desktop-menu > li > .sub-menu > li > .sub-menu .current-menu-item > a {
    color: var(--glrh-blue);
    background: var(--glrh-blue-soft);
    outline: none;
}

.glrh-shell.is-mega-enabled .glrh-desktop-menu > li > .sub-menu > li > .sub-menu a:hover::before,
.glrh-shell.is-mega-enabled .glrh-desktop-menu > li > .sub-menu > li > .sub-menu a:focus::before {
    background: var(--glrh-blue);
    transform: scale(1.25);
}

/* Fallback regular dropdown when mega menu is disabled */
.glrh-shell:not(.is-mega-enabled) .glrh-desktop-menu li {
    position: relative;
}

.glrh-shell:not(.is-mega-enabled) .glrh-desktop-menu .sub-menu {
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    z-index: 20;
    width: 240px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--glrh-line);
    border-radius: 0 0 16px 16px;
    box-shadow: var(--glrh-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .2s ease;
}

.glrh-shell:not(.is-mega-enabled) .glrh-desktop-menu li:hover > .sub-menu,
.glrh-shell:not(.is-mega-enabled) .glrh-desktop-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.glrh-shell:not(.is-mega-enabled) .glrh-desktop-menu .sub-menu .sub-menu {
    top: 0;
    right: 100%;
    border-radius: 14px;
}

.glrh-shell:not(.is-mega-enabled) .glrh-desktop-menu .sub-menu a {
    display: block;
    padding: 10px 12px;
    color: var(--glrh-dark);
    border-radius: 9px;
    text-decoration: none;
    font-size: 13px;
}

.glrh-shell:not(.is-mega-enabled) .glrh-desktop-menu .sub-menu a:hover {
    color: var(--glrh-blue);
    background: var(--glrh-blue-soft);
}

.glrh-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    flex: 0 0 auto;
}

.glrh-account {
    position: relative;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D9E8F5;
    border-radius: 50%;
    color: var(--glrh-blue);
    background: #F7FBFF;
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.glrh-account:hover,
.glrh-account:focus {
    color: #fff;
    background: var(--glrh-blue);
    box-shadow: 0 10px 25px rgba(19,91,158,.22);
    transform: translateY(-1px);
    outline: none;
}

.glrh-account svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.glrh-account-tooltip {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-4px);
    padding: 7px 10px;
    border-radius: 8px;
    background: var(--glrh-dark);
    color: #fff;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .18s ease;
}

.glrh-account:hover .glrh-account-tooltip,
.glrh-account:focus .glrh-account-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.glrh-cta,
.glrh-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--glrh-blue) 0%, #176CB8 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(19,91,158,.20);
    transition: transform .2s ease, box-shadow .2s ease;
}

.glrh-cta:hover,
.glrh-cta:focus,
.glrh-mobile-cta:hover,
.glrh-mobile-cta:focus {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(19,91,158,.27);
    outline: none;
}

.glrh-cta svg,
.glrh-mobile-cta svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Mobile-only controls: hard reset prevents theme/global button styles from leaking into desktop. */
.glrh-shell .glrh-menu-toggle,
.glrh-shell > .glrh-overlay,
.glrh-shell > .glrh-drawer {
    display: none !important;
}

.glrh-shell .glrh-menu-toggle::before,
.glrh-shell .glrh-menu-toggle::after,
.glrh-shell > .glrh-overlay::before,
.glrh-shell > .glrh-overlay::after {
    content: none !important;
    display: none !important;
}

@media (min-width: 768px) {
    .glrh-shell .glrh-menu-toggle,
    .glrh-shell > .glrh-overlay,
    .glrh-shell > .glrh-drawer {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
}

@media (max-width: 1100px) and (min-width: 768px) {
    .glrh-inner {
        width: min(100% - 26px, 1220px);
        gap: 16px;
    }

    .glrh-logo img {
        height: 40px;
        max-width: 165px;
    }

    .glrh-desktop-menu > li > a {
        padding: 0 9px !important;
        font-size: 13px;
    }

    .glrh-cta {
        padding: 0 13px;
        font-size: 12px;
    }

    .glrh-shell.is-mega-enabled .glrh-desktop-menu > li.menu-item-has-children > .sub-menu {
        width: calc(100vw - 28px);
        padding: 18px;
        gap: 12px;
    }
}

@media (max-width: 767px) {
    .admin-bar .glrh-shell {
        top: 46px;
    }

    .glrh-inner {
        width: calc(100% - 24px);
        min-height: 68px;
        gap: 12px;
    }

    .glrh-logo {
        margin-left: auto;
    }

    .glrh-logo img {
        height: 38px;
        max-width: 150px;
    }

    .glrh-desktop-nav,
    .glrh-actions > .glrh-cta,
    .glrh-actions > .glrh-account {
        display: none !important;
    }

    .glrh-actions {
        margin-right: auto;
    }

    .glrh-shell .glrh-menu-toggle {
        display: inline-flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        width: 46px;
        height: 46px;
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 0;
        border: 1px solid #D8E7F4;
        border-radius: 50%;
        background: #F5FAFE;
        color: var(--glrh-blue);
        cursor: pointer;
        box-shadow: 0 8px 22px rgba(19,91,158,.08);
        transition: background .2s ease, transform .2s ease, border-color .2s ease;
    }

    .glrh-menu-toggle:hover,
    .glrh-menu-toggle:focus {
        background: #fff;
        border-color: #BBD5EA;
        outline: none;
    }

    .glrh-menu-toggle span {
        display: block;
        width: 19px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        transition: transform .22s ease, opacity .18s ease;
    }

    .glrh-shell.is-mobile-open .glrh-menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .glrh-shell.is-mobile-open .glrh-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .glrh-shell.is-mobile-open .glrh-menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .glrh-shell > .glrh-overlay {
        display: block !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        position: fixed;
        inset: 0;
        z-index: 99991;
        width: 100%;
        height: 100%;
        padding: 0;
        border: 0;
        background: rgba(15,34,50,.34);
        -webkit-backdrop-filter: blur(3px);
        backdrop-filter: blur(3px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .25s ease, visibility .25s ease;
    }

    .glrh-shell.is-mobile-open > .glrh-overlay {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .glrh-shell > .glrh-drawer {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 99992;
        width: min(390px, 92vw);
        flex-direction: column;
        overflow: hidden;
        background: #fff;
        border-left: 1px solid rgba(19,91,158,.11);
        box-shadow: -28px 0 70px rgba(11,50,82,.18);
        transform: translateX(104%);
        transition: transform .32s cubic-bezier(.22,.75,.22,1);
    }

    .admin-bar .glrh-shell > .glrh-drawer,
    .admin-bar .glrh-shell > .glrh-overlay {
        top: 46px;
    }

    .glrh-shell.is-mobile-open > .glrh-drawer {
        transform: translateX(0);
    }

    .glrh-drawer-head {
        min-height: 78px;
        padding: 14px 16px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        border-bottom: 1px solid #EDF2F7;
        background: rgba(255,255,255,.96);
    }

    .glrh-drawer-logo {
        display: inline-flex;
        align-items: center;
        line-height: 0;
    }

    .glrh-drawer-logo img {
        width: auto;
        height: 39px;
        max-width: 158px;
        object-fit: contain;
    }

    .glrh-close {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 42px;
        border: 1px solid #DDEAF5;
        border-radius: 50%;
        background: #F6FAFE;
        color: var(--glrh-blue);
        cursor: pointer;
    }


    .glrh-mobile-scroll {
        flex: 1 1 auto;
        min-height: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        padding: 18px 16px 20px;
        scrollbar-width: thin;
        scrollbar-color: #C5D9EA transparent;
    }

    .glrh-mobile-intro {
        padding: 2px 4px 16px;
    }

    .glrh-mobile-intro strong,
    .glrh-mobile-intro span {
        display: block;
    }

    .glrh-mobile-intro strong {
        color: var(--glrh-dark);
        font-size: 14px;
        font-weight: 800;
        margin-bottom: 4px;
    }

    .glrh-mobile-intro span {
        color: #7A8792;
        font-size: 11px;
        line-height: 1.8;
    }

    /* Completely reset desktop mega behavior in mobile */
    .glrh-mobile-menu,
    .glrh-mobile-menu ul,
    .glrh-mobile-menu li,
    .glrh-mobile-menu a {
        position: static;
        width: auto;
        max-width: none;
        transform: none;
    }

    .glrh-mobile-menu {
        border: 1px solid #E1ECF5;
        border-radius: 18px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 12px 34px rgba(19,91,158,.07);
    }

    .glrh-mobile-menu li {
        display: block;
        margin: 0;
        border: 0;
    }

    .glrh-mobile-menu > li {
        border-bottom: 1px solid #EDF2F6;
    }

    .glrh-mobile-menu > li:last-child {
        border-bottom: 0;
    }

    .glrh-mobile-menu li > a {
        position: relative;
        display: flex;
        align-items: center;
        min-height: 54px;
        padding: 12px 16px;
        color: var(--glrh-dark);
        background: #fff;
        font-size: 13px;
        font-weight: 500;
        line-height: 1.8;
        text-decoration: none;
        border-radius: 0;
        transition: color .18s ease, background .18s ease;
    }

    .glrh-mobile-menu > li > a::before {
        content: '';
        width: 7px;
        height: 7px;
        flex: 0 0 7px;
        margin-left: 11px;
        border-radius: 50%;
        background: #A9C5DD;
        box-shadow: 0 0 0 5px #F0F6FB;
    }

    .glrh-mobile-menu li.current-menu-item > a,
    .glrh-mobile-menu li.current-menu-ancestor > a,
    .glrh-mobile-menu li.is-sub-open > a {
        color: var(--glrh-blue);
        background: #F5FAFE;
        font-weight: 800;
    }

    .glrh-mobile-menu > li.current-menu-item > a::before,
    .glrh-mobile-menu > li.current-menu-ancestor > a::before,
    .glrh-mobile-menu > li.is-sub-open > a::before {
        background: var(--glrh-blue);
        box-shadow: 0 0 0 5px rgba(19,91,158,.10);
    }

    /* No down arrows / no separate arrow buttons */
    .glrh-mobile-menu .glrh-sub-toggle,
    .glrh-mobile-menu .submenu-toggle,
    .glrh-mobile-menu li > a::after,
    .glrh-mobile-menu li.menu-item-has-children > a::after {
        display: none !important;
        content: none !important;
    }

    .glrh-mobile-menu .sub-menu {
        display: block;
        height: 0;
        overflow: hidden;
        padding: 0;
        margin: 0;
        background: #FAFCFE;
        border: 0;
        border-top: 0 solid transparent;
        border-radius: 0;
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: height .28s ease, opacity .22s ease;
    }

    .glrh-mobile-menu li.is-sub-open > .sub-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .glrh-mobile-menu .sub-menu > li {
        border-top: 1px solid #EEF3F7;
    }

    .glrh-mobile-menu .sub-menu > li > a {
        min-height: 47px;
        padding: 10px 18px 10px 22px;
        background: #FAFCFE;
        color: #4E5962;
        font-size: 12.5px;
        font-weight: 400;
    }

    .glrh-mobile-menu .sub-menu > li > a::before {
        content: '';
        width: 4px;
        height: 4px;
        flex: 0 0 4px;
        margin-left: 9px;
        border-radius: 50%;
        background: #9FBBD2;
    }

    .glrh-mobile-menu .sub-menu .sub-menu > li > a {
        padding-right: 34px;
        background: #F7FAFD;
        color: #64717C;
        font-size: 12px;
    }

    .glrh-mobile-menu .sub-menu .sub-menu .sub-menu > li > a {
        padding-right: 48px;
    }

    .glrh-mobile-menu .glrh-parent-destination > a {
        min-height: 44px;
        color: var(--glrh-blue);
        background: #F0F7FD;
        font-size: 11.5px;
        font-weight: 800;
    }

    .glrh-mobile-menu .glrh-parent-destination > a::before {
        background: var(--glrh-blue);
    }

    .glrh-drawer-footer {
        flex: 0 0 auto;
        display: grid;
        gap: 10px;
        padding: 12px 16px max(14px, env(safe-area-inset-bottom));
        border-top: 1px solid #E7EEF5;
        background: rgba(255,255,255,.97);
    }

    .glrh-mobile-account {
        min-height: 50px;
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 6px 12px;
        border: 1px solid #D7E6F3;
        border-radius: 14px;
        background: #F7FBFE;
        color: var(--glrh-blue);
        font-size: 12.5px;
        font-weight: 800;
        text-decoration: none;
    }

    .glrh-mobile-account-icon {
        width: 34px;
        height: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 34px;
        border-radius: 50%;
        background: var(--glrh-blue);
        color: #fff;
    }

    .glrh-mobile-account-icon svg {
        width: 18px;
        height: 18px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
    }

    .glrh-mobile-cta {
        min-height: 50px;
        width: 100%;
        border-radius: 14px;
    }
}

@media (max-width: 420px) {
    .glrh-inner {
        width: calc(100% - 20px);
    }

    .glrh-logo img {
        height: 34px;
        max-width: 135px;
    }

    .glrh-menu-toggle {
        width: 43px;
        height: 43px;
    }

    .glrh-drawer {
        width: 94vw;
    }
}



/* ==========================================================================
   Getlir Header v1.5.0 — isolated neo-bank desktop navigation + hover intent
   ========================================================================== */
@media (min-width: 768px) {
    /* Keep all desktop navigation behavior inside the plugin namespace. */
    .glrh-shell .glrh-desktop-nav,
    .glrh-shell .glrh-desktop-nav ul,
    .glrh-shell .glrh-desktop-nav li,
    .glrh-shell .glrh-desktop-nav a {
        box-sizing: border-box;
    }

    .glrh-shell .glrh-desktop-menu {
        gap: 5px;
        align-items: center;
    }

    .glrh-shell .glrh-desktop-menu > li {
        align-items: center;
        align-self: stretch;
    }

    /* Neo-bank pill navigation: no inherited underline / theme hover artifacts. */
    .glrh-shell .glrh-desktop-menu > li > a {
        align-self: center !important;
        min-height: 42px !important;
        height: 42px !important;
        padding: 0 14px !important;
        border: 1px solid transparent !important;
        border-radius: 14px !important;
        background: transparent !important;
        color: var(--glrh-dark) !important;
        box-shadow: none !important;
        line-height: 1 !important;
        transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease !important;
    }

    .glrh-shell .glrh-desktop-menu > li > a::before,
    .glrh-shell .glrh-desktop-menu > li > a::after {
        content: none !important;
        display: none !important;
    }

    .glrh-shell .glrh-desktop-menu > li.current-menu-item > a,
    .glrh-shell .glrh-desktop-menu > li.current-menu-ancestor > a {
        color: var(--glrh-blue) !important;
        background: rgba(19, 91, 158, .075) !important;
        border-color: rgba(19, 91, 158, .08) !important;
    }

    .glrh-shell .glrh-desktop-menu > li:hover > a,
    .glrh-shell .glrh-desktop-menu > li.is-mega-open > a,
    .glrh-shell .glrh-desktop-menu > li > a:focus-visible {
        color: #fff !important;
        background: #0B456F !important;
        border-color: #0B456F !important;
        box-shadow: 0 9px 24px rgba(11, 69, 111, .20) !important;
        transform: translateY(-1px) !important;
        outline: none !important;
    }

    /* IMPORTANT: CSS hover/focus no longer opens mega menus. JS opens only after
       the pointer actually enters the top-level trigger. This prevents the panel
       from opening while the mouse is in the middle of the page. */
    .glrh-shell.is-mega-enabled .glrh-desktop-menu > li.menu-item-has-children:hover > .sub-menu,
    .glrh-shell.is-mega-enabled .glrh-desktop-menu > li.menu-item-has-children:focus-within > .sub-menu {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate(50%, 12px);
    }

    .glrh-shell.is-mega-enabled .glrh-desktop-menu > li.menu-item-has-children.is-mega-open > .sub-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate(50%, 0);
    }

    /* Modern neo-bank mega panel. */
    .glrh-shell.is-mega-enabled .glrh-desktop-menu > li.menu-item-has-children > .sub-menu {
        top: calc(100% + 8px);
        padding: 20px;
        gap: 12px;
        border: 1px solid rgba(19, 91, 158, .10);
        border-radius: 26px;
        background:
            radial-gradient(circle at 92% 0%, rgba(19,91,158,.08), transparent 30%),
            rgba(255,255,255,.985);
        box-shadow: 0 28px 70px rgba(12, 71, 121, .16), 0 2px 8px rgba(40,40,40,.04);
        -webkit-backdrop-filter: blur(20px) saturate(145%);
        backdrop-filter: blur(20px) saturate(145%);
    }

    .glrh-shell.is-mega-enabled .glrh-desktop-menu > li.menu-item-has-children > .sub-menu::before {
        top: -12px;
        height: 12px;
    }

    .glrh-shell.is-mega-enabled .glrh-desktop-menu > li > .sub-menu > li {
        padding: 5px;
        border-radius: 18px;
        background: rgba(249, 251, 253, .70);
        border: 1px solid rgba(19, 91, 158, .045);
    }

    .glrh-shell.is-mega-enabled .glrh-desktop-menu > li > .sub-menu > li > a {
        min-height: 44px;
        margin-bottom: 3px;
        padding: 9px 11px;
        border-radius: 13px;
        background: transparent;
        border-color: transparent;
        color: #0B456F;
    }

    .glrh-shell.is-mega-enabled .glrh-desktop-menu > li > .sub-menu > li > a:hover,
    .glrh-shell.is-mega-enabled .glrh-desktop-menu > li > .sub-menu > li > a:focus-visible {
        color: #fff;
        background: #0B456F;
        border-color: #0B456F;
        box-shadow: 0 8px 20px rgba(11,69,111,.14);
        transform: none;
    }

    .glrh-shell.is-mega-enabled .glrh-desktop-menu > li > .sub-menu > li > a:hover::before,
    .glrh-shell.is-mega-enabled .glrh-desktop-menu > li > .sub-menu > li > a:focus-visible::before {
        background: #fff;
        box-shadow: 0 0 0 5px rgba(255,255,255,.12);
    }

    .glrh-shell.is-mega-enabled .glrh-desktop-menu > li > .sub-menu > li > .sub-menu a:hover,
    .glrh-shell.is-mega-enabled .glrh-desktop-menu > li > .sub-menu > li > .sub-menu a:focus-visible,
    .glrh-shell.is-mega-enabled .glrh-desktop-menu > li > .sub-menu > li > .sub-menu .current-menu-item > a {
        color: #0B456F;
        background: rgba(19,91,158,.075);
    }

    /* Regular-dropdown mode also uses explicit top-level open state. */
    .glrh-shell:not(.is-mega-enabled) .glrh-desktop-menu > li:hover > .sub-menu,
    .glrh-shell:not(.is-mega-enabled) .glrh-desktop-menu > li:focus-within > .sub-menu {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(10px);
    }

    .glrh-shell:not(.is-mega-enabled) .glrh-desktop-menu > li.is-mega-open > .sub-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }
}

@media (max-width: 767px) {
    /* Strongly isolated controls so theme button/svg styles cannot hide the close icon. */
    .glrh-shell button.glrh-menu-toggle,
    .glrh-shell button.glrh-close,
    .glrh-shell button.glrh-overlay {
        -webkit-appearance: none !important;
        appearance: none !important;
        font: inherit !important;
        text-transform: none !important;
        letter-spacing: normal !important;
    }

    .glrh-shell .glrh-close {
        position: relative !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        min-height: 44px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 0 0 44px !important;
        padding: 0 !important;
        margin: 0 !important;
        border: 1px solid #0B456F !important;
        border-radius: 50% !important;
        background: #0B456F !important;
        color: #fff !important;
        box-shadow: 0 8px 22px rgba(11,69,111,.20) !important;
        opacity: 1 !important;
        visibility: visible !important;
        cursor: pointer !important;
        overflow: hidden !important;
        line-height: 0 !important;
    }

    .glrh-shell .glrh-close::before,
    .glrh-shell .glrh-close::after {
        content: none !important;
        display: none !important;
    }

    .glrh-shell .glrh-close-line {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: 18px !important;
        height: 2px !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        border-radius: 999px !important;
        background: #fff !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: none !important;
        transform-origin: center !important;
    }

    .glrh-shell .glrh-close-line-a {
        transform: translate(-50%, -50%) rotate(45deg) !important;
    }

    .glrh-shell .glrh-close-line-b {
        transform: translate(-50%, -50%) rotate(-45deg) !important;
    }

    .glrh-shell .glrh-close:hover,
    .glrh-shell .glrh-close:focus-visible {
        background: #083858 !important;
        border-color: #083858 !important;
        outline: 3px solid rgba(19,91,158,.16) !important;
        outline-offset: 2px !important;
    }

    .glrh-shell.is-mobile-open .glrh-menu-toggle {
        background: #0B456F !important;
        border-color: #0B456F !important;
        color: #fff !important;
    }
}

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

/* ============================================================
   Getlir Header v1.5.1 — strict desktop hover-intent isolation
   ============================================================ */
@media (min-width: 768px) {
    /* A closed dropdown is CLOSED regardless of :hover, :focus-within,
       Elementor/theme menu rules, or an invisible descendant hit-area. */
    .glrh-shell.is-mega-enabled .glrh-desktop-menu > li.menu-item-has-children:not(.is-mega-open) > .sub-menu {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translate(50%, 12px) !important;
    }

    .glrh-shell.is-mega-enabled .glrh-desktop-menu > li.menu-item-has-children.is-mega-open > .sub-menu {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translate(50%, 0) !important;
    }

    .glrh-shell:not(.is-mega-enabled) .glrh-desktop-menu > li.menu-item-has-children:not(.is-mega-open) > .sub-menu {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        transform: translateY(10px) !important;
    }

    .glrh-shell:not(.is-mega-enabled) .glrh-desktop-menu > li.menu-item-has-children.is-mega-open > .sub-menu {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }

    /* Hover styling belongs to the visible anchor itself — NOT the whole LI.
       This prevents a large/absolute submenu descendant from making the parent
       look hovered while the pointer is in the middle of the page. */
    .glrh-shell .glrh-desktop-menu > li:not(.is-mega-open) > a:not(:hover):not(:focus-visible) {
        transform: none !important;
        box-shadow: none !important;
    }

    .glrh-shell .glrh-desktop-menu > li:not(.current-menu-item):not(.current-menu-ancestor):not(.is-mega-open) > a:not(:hover):not(:focus-visible) {
        color: var(--glrh-dark) !important;
        background: transparent !important;
        border-color: transparent !important;
    }

    .glrh-shell .glrh-desktop-menu > li > a:hover,
    .glrh-shell .glrh-desktop-menu > li.is-mega-open > a,
    .glrh-shell .glrh-desktop-menu > li > a:focus-visible {
        color: #fff !important;
        background: #0B456F !important;
        border-color: #0B456F !important;
        border-radius: 14px !important;
        box-shadow: 0 9px 24px rgba(11, 69, 111, .20) !important;
        transform: translateY(-1px) !important;
        outline: none !important;
    }

    /* Make the path from trigger to mega panel forgiving. The pseudo element
       creates a real hover corridor across the visual gap. */
    .glrh-shell.is-mega-enabled .glrh-desktop-menu > li.menu-item-has-children > .sub-menu::before {
        content: '' !important;
        position: absolute !important;
        top: -18px !important;
        right: 0 !important;
        left: 0 !important;
        height: 18px !important;
        display: block !important;
        background: transparent !important;
        pointer-events: auto !important;
    }
}


/* ============================================================
   Getlir Header v1.5.2 — forgiving mega-menu movement zone
   ============================================================ */
@media (min-width: 768px) {
    /* The old pseudo bridge must never become a giant invisible hover target.
       JS now owns the safe corridor geometrically, so this helper is visual-only. */
    .glrh-shell.is-mega-enabled .glrh-desktop-menu > li.menu-item-has-children > .sub-menu::before {
        content: '' !important;
        position: absolute !important;
        top: -30px !important;
        right: 0 !important;
        left: 0 !important;
        height: 30px !important;
        display: block !important;
        background: transparent !important;
        pointer-events: none !important;
    }

    /* Slightly reduce the physical gap while keeping the floating neo-bank look. */
    .glrh-shell.is-mega-enabled .glrh-desktop-menu > li.menu-item-has-children > .sub-menu {
        top: calc(100% + 5px) !important;
        transition: opacity .18s ease, transform .22s cubic-bezier(.2,.72,.2,1), visibility .18s ease !important;
    }

    /* While open, every descendant of the panel remains pointer-active. */
    .glrh-shell.is-mega-enabled .glrh-desktop-menu > li.menu-item-has-children.is-mega-open > .sub-menu,
    .glrh-shell.is-mega-enabled .glrh-desktop-menu > li.menu-item-has-children.is-mega-open > .sub-menu * {
        pointer-events: auto;
    }
}


/* ============================================================
   Getlir Header v1.5.3 — unified mega-menu hover system
   Every nested WordPress menu depth gets the same reliable hit area
   and the same neo-bank hover treatment, isolated to this header only.
   ============================================================ */
@media (min-width: 768px) {
    /* Normalize every nested submenu in an OPEN mega panel. This is important
       for level 3/4 WordPress items because themes often position them as
       separate flyout menus, which can steal hover from neighbouring columns. */
    .glrh-shell.is-mega-enabled
    .glrh-desktop-menu > li.menu-item-has-children.is-mega-open > .sub-menu .sub-menu {
        position: static !important;
        inset: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 3px 2px 0 !important;
        border: 0 !important;
        border-radius: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        filter: none !important;
    }

    /* Make every menu row a predictable full-width pointer target. */
    .glrh-shell.is-mega-enabled
    .glrh-desktop-menu > li.menu-item-has-children.is-mega-open > .sub-menu li {
        position: relative !important;
        float: none !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        list-style: none !important;
        pointer-events: auto !important;
    }

    /* Shared base for ALL clickable items in the mega menu, regardless of
       whether WordPress rendered them at level 2, 3 or 4. */
    .glrh-shell.is-mega-enabled
    .glrh-desktop-menu > li.menu-item-has-children.is-mega-open > .sub-menu a {
        position: relative !important;
        inset: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        z-index: 2 !important;
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        min-height: 38px !important;
        margin: 0 0 3px !important;
        padding: 8px 11px !important;
        border: 1px solid transparent !important;
        border-radius: 11px !important;
        color: #4E5963 !important;
        background: transparent !important;
        box-shadow: none !important;
        font-family: 'AzarMehr', Tahoma, Arial, sans-serif !important;
        font-size: 13px !important;
        font-weight: 500 !important;
        line-height: 1.65 !important;
        text-align: right !important;
        text-decoration: none !important;
        white-space: normal !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
        transition:
            color .18s ease,
            background-color .18s ease,
            border-color .18s ease,
            box-shadow .18s ease,
            transform .18s ease !important;
    }

    /* Column heading (level 2) keeps stronger typography, but uses exactly the
       same hover state as every child link below it. */
    .glrh-shell.is-mega-enabled
    .glrh-desktop-menu > li.menu-item-has-children.is-mega-open > .sub-menu > li > a {
        min-height: 44px !important;
        padding: 9px 11px !important;
        margin-bottom: 5px !important;
        border-radius: 13px !important;
        color: #0B456F !important;
        background: rgba(19, 91, 158, .045) !important;
        border-color: rgba(19, 91, 158, .055) !important;
        font-size: 14px !important;
        font-weight: 800 !important;
    }

    /* One single hover/focus/current treatment for ALL submenu anchors.
       High specificity + !important keeps Elementor/theme CSS from making
       individual columns behave differently. */
    .glrh-shell.is-mega-enabled
    .glrh-desktop-menu > li.menu-item-has-children.is-mega-open > .sub-menu a:hover,
    .glrh-shell.is-mega-enabled
    .glrh-desktop-menu > li.menu-item-has-children.is-mega-open > .sub-menu a:focus-visible,
    .glrh-shell.is-mega-enabled
    .glrh-desktop-menu > li.menu-item-has-children.is-mega-open > .sub-menu li.current-menu-item > a,
    .glrh-shell.is-mega-enabled
    .glrh-desktop-menu > li.menu-item-has-children.is-mega-open > .sub-menu li.current-menu-ancestor > a {
        color: #FFFFFF !important;
        background: #0B456F !important;
        border-color: #0B456F !important;
        box-shadow: 0 8px 20px rgba(11, 69, 111, .15) !important;
        transform: translateY(-1px) !important;
        outline: none !important;
    }

    /* Normalize decorative dots generated by older rules at every depth. */
    .glrh-shell.is-mega-enabled
    .glrh-desktop-menu > li.menu-item-has-children.is-mega-open > .sub-menu a::before {
        content: '' !important;
        display: block !important;
        width: 5px !important;
        height: 5px !important;
        min-width: 5px !important;
        flex: 0 0 5px !important;
        margin: 0 0 0 8px !important;
        border: 0 !important;
        border-radius: 50% !important;
        background: #8FB3D0 !important;
        box-shadow: none !important;
        opacity: 1 !important;
        transform: none !important;
        transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease !important;
    }

    .glrh-shell.is-mega-enabled
    .glrh-desktop-menu > li.menu-item-has-children.is-mega-open > .sub-menu > li > a::before {
        width: 7px !important;
        height: 7px !important;
        min-width: 7px !important;
        flex-basis: 7px !important;
        background: var(--glrh-blue) !important;
        box-shadow: 0 0 0 5px rgba(19, 91, 158, .08) !important;
    }

    .glrh-shell.is-mega-enabled
    .glrh-desktop-menu > li.menu-item-has-children.is-mega-open > .sub-menu a:hover::before,
    .glrh-shell.is-mega-enabled
    .glrh-desktop-menu > li.menu-item-has-children.is-mega-open > .sub-menu a:focus-visible::before,
    .glrh-shell.is-mega-enabled
    .glrh-desktop-menu > li.menu-item-has-children.is-mega-open > .sub-menu li.current-menu-item > a::before,
    .glrh-shell.is-mega-enabled
    .glrh-desktop-menu > li.menu-item-has-children.is-mega-open > .sub-menu li.current-menu-ancestor > a::before {
        background: #FFFFFF !important;
        box-shadow: 0 0 0 4px rgba(255,255,255,.11) !important;
        transform: scale(1.08) !important;
    }

    /* Disable theme pseudo-elements that can cover only some links/columns. */
    .glrh-shell.is-mega-enabled
    .glrh-desktop-menu > li.menu-item-has-children.is-mega-open > .sub-menu a::after {
        content: none !important;
        display: none !important;
        pointer-events: none !important;
    }
}


/* ============================================================
   Getlir Header v1.5.4 — hard hitbox isolation
   Closed desktop dropdowns are removed from layout/hit-testing entirely.
   This prevents invisible submenu anchors from covering sliders/sections.
   ============================================================ */
@media (min-width: 768px) {
    /* IMPORTANT: a closed menu must have ZERO physical hit-area.
       display:none is deliberate here; opacity/visibility alone can still be
       overridden by theme CSS and leave invisible anchors over page content. */
    .glrh-shell[data-glrh].is-mega-enabled
    .glrh-desktop-menu > li.menu-item-has-children:not(.is-mega-open) > .sub-menu,
    .glrh-shell[data-glrh]:not(.is-mega-enabled)
    .glrh-desktop-menu > li.menu-item-has-children:not(.is-mega-open) > .sub-menu {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    /* Mega menus exist and can receive pointer events ONLY while JS has added
       .is-mega-open to that exact top-level menu item. */
    .glrh-shell[data-glrh].is-mega-enabled
    .glrh-desktop-menu > li.menu-item-has-children.is-mega-open > .sub-menu {
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    /* Regular dropdown mode gets the same strict hitbox rule. */
    .glrh-shell[data-glrh]:not(.is-mega-enabled)
    .glrh-desktop-menu > li.menu-item-has-children.is-mega-open > .sub-menu {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    /* Hidden descendants must never keep theme cursor/link hitboxes alive. */
    .glrh-shell[data-glrh]
    .glrh-desktop-menu > li.menu-item-has-children:not(.is-mega-open) > .sub-menu *,
    .glrh-shell[data-glrh]
    .glrh-desktop-menu > li.menu-item-has-children:not(.is-mega-open) > .sub-menu *::before,
    .glrh-shell[data-glrh]
    .glrh-desktop-menu > li.menu-item-has-children:not(.is-mega-open) > .sub-menu *::after {
        pointer-events: none !important;
    }

    /* Only the visible top-level anchor can show the navigation cursor/hover.
       The LI itself never creates a page-sized interactive region. */
    .glrh-shell[data-glrh] .glrh-desktop-menu > li {
        cursor: default !important;
    }

    .glrh-shell[data-glrh] .glrh-desktop-menu > li > a {
        cursor: pointer !important;
    }

    /* Remove any inherited overflow/min-height tricks from themes that can
       stretch nav list items over the hero/slider area. */
    .glrh-shell[data-glrh] .glrh-desktop-nav,
    .glrh-shell[data-glrh] .glrh-desktop-menu,
    .glrh-shell[data-glrh] .glrh-desktop-menu > li {
        max-height: 100% !important;
    }

    .glrh-shell[data-glrh] .glrh-desktop-menu > li {
        overflow: visible !important;
    }
}



/* Root pointer boundary: only visible header surfaces participate in hit testing. */
.glrh-shell[data-glrh] {
    pointer-events: none;
}

.glrh-shell[data-glrh] > .glrh-bar,
.glrh-shell[data-glrh].is-mobile-open > .glrh-overlay,
.glrh-shell[data-glrh].is-mobile-open > .glrh-drawer {
    pointer-events: auto;
}

@keyframes glrh-v154-mega-in {
    from { opacity: 0; transform: translate(50%, 10px); }
    to   { opacity: 1; transform: translate(50%, 0); }
}

@media (min-width: 768px) {
    .glrh-shell[data-glrh].is-mega-enabled
    .glrh-desktop-menu > li.menu-item-has-children.is-mega-open > .sub-menu {
        animation: glrh-v154-mega-in .20s cubic-bezier(.2,.72,.2,1) both;
    }
}

/* Keep page scroll locking uniquely namespaced to this plugin. */
body.glrh-header-scroll-lock {
    overflow: hidden !important;
}

/* ==========================================================
   Getlir Header v1.6.0 — per top-level menu layout controls
   Scoped only to this plugin's desktop header.
   ========================================================== */
@media (min-width: 769px) {
    .glrh-shell[data-glrh].is-mega-enabled .glrh-desktop-menu > li.glrh-mega-cols-1 > .sub-menu {
        width: min(430px, calc(100vw - 36px)) !important;
        grid-template-columns: minmax(0, 1fr) !important;
    }

    .glrh-shell[data-glrh].is-mega-enabled .glrh-desktop-menu > li.glrh-mega-cols-2 > .sub-menu {
        width: min(700px, calc(100vw - 40px)) !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .glrh-shell[data-glrh].is-mega-enabled .glrh-desktop-menu > li.glrh-mega-cols-3 > .sub-menu {
        width: min(920px, calc(100vw - 44px)) !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }

    .glrh-shell[data-glrh].is-mega-enabled .glrh-desktop-menu > li.glrh-mega-cols-4 > .sub-menu {
        width: min(1160px, calc(100vw - 48px)) !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    }

    /* Per-item regular dropdown. It still uses the plugin's JS hover-intent,
       but gets a compact one-column appearance. */
    .glrh-shell[data-glrh].is-mega-enabled .glrh-desktop-menu > li.glrh-menu-layout-dropdown > .sub-menu {
        right: 0 !important;
        width: min(320px, calc(100vw - 32px)) !important;
        display: block !important;
        grid-template-columns: none !important;
        gap: 0 !important;
        padding: 10px !important;
        border-radius: 18px !important;
        transform: translateY(12px) !important;
        background: rgba(255,255,255,.99) !important;
        box-shadow: 0 20px 55px rgba(11,69,111,.14) !important;
    }

    .glrh-shell[data-glrh].is-mega-enabled .glrh-desktop-menu > li.glrh-menu-layout-dropdown.is-mega-open > .sub-menu {
        transform: translateY(0) !important;
    }

    .glrh-shell[data-glrh].is-mega-enabled .glrh-desktop-menu > li.glrh-menu-layout-dropdown > .sub-menu > li {
        padding: 0 !important;
        margin: 2px 0 !important;
        border: 0 !important;
        border-radius: 12px !important;
        background: transparent !important;
    }

    .glrh-shell[data-glrh].is-mega-enabled .glrh-desktop-menu > li.glrh-menu-layout-dropdown > .sub-menu a {
        min-height: 40px !important;
        padding: 9px 11px !important;
        margin: 0 !important;
        border: 0 !important;
        border-radius: 11px !important;
        background: transparent !important;
        color: #33414d !important;
        font-size: 13px !important;
        font-weight: 500 !important;
    }

    .glrh-shell[data-glrh].is-mega-enabled .glrh-desktop-menu > li.glrh-menu-layout-dropdown > .sub-menu a:hover,
    .glrh-shell[data-glrh].is-mega-enabled .glrh-desktop-menu > li.glrh-menu-layout-dropdown > .sub-menu a:focus-visible,
    .glrh-shell[data-glrh].is-mega-enabled .glrh-desktop-menu > li.glrh-menu-layout-dropdown > .sub-menu .current-menu-item > a {
        background: #0B456F !important;
        color: #fff !important;
        outline: none !important;
    }

    .glrh-shell[data-glrh].is-mega-enabled .glrh-desktop-menu > li.glrh-menu-layout-dropdown > .sub-menu .sub-menu {
        position: static !important;
        display: block !important;
        width: auto !important;
        min-width: 0 !important;
        padding: 3px 9px 4px 0 !important;
        margin: 0 !important;
        border: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        pointer-events: auto !important;
    }

    .glrh-shell[data-glrh].is-mega-enabled .glrh-desktop-menu > li.glrh-menu-layout-dropdown > .sub-menu .sub-menu a {
        min-height: 34px !important;
        font-size: 12.5px !important;
        font-weight: 400 !important;
        color: #5d6872 !important;
    }
}
