/* mani-shell-ltr.css */

*:focus:not(:focus-visible):not(.mnx-toggle-btn) {
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
}

.mnx-toggle-btn:focus:not(:focus-visible) {
    outline: none !important;
}

:focus-visible {
    outline: 2px solid var(--mnx-blue);
    outline-offset: 2px;
}

:root {
    --mnx-rail: 60px;
    --mnx-drawer: 200px;
    --mnx-topbar: 60px;
    --sim-card-offset: 40px;
    --mnx-footer: 60px;
    --mnx-ease: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    outline: none;
    font-family: inherit;
}

html,
body {
    height: 100%;
    height: 100dvh;
    width: 100%;
    overflow: clip;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    background: var(--mnx-bg);
    -webkit-tap-highlight-color: transparent;
}

.mnx-loader-premium {
    display: flex;
    gap: 6px;
    align-items: center;
    justify-content: center;
}

.mnx-loader-premium span {
    width: 8px;
    height: 8px;
    background-color: var(--mnx-blue, var(--blue));
    border-radius: 50%;
    animation: mnx-pulse 1.4s infinite ease-in-out both;
}

.mnx-loader-premium span:nth-child(1) {
    animation-delay: -0.32s;
}

.mnx-loader-premium span:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes mnx-pulse {

    0%,
    80%,
    100% {
        transform: scale(0);
        opacity: 0.3;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes mnx-app-reveal {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mnx-app {
    display: flex;
    height: 100vh;
    height: 100dvh;
    width: 100vw;
    width: 100dvw;
    overflow: hidden;
    background: var(--mnx-bg);
    opacity: 0;
    animation: mnx-app-reveal 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mnx-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 17, 32, 0.4);
    backdrop-filter: blur(3px);
    z-index: 44;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        backdrop-filter 0.5s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.5s cubic-bezier(0.16, 1, 0.3, 1);

}

.mnx-app:not(.drawer-closed) .mnx-drawer-overlay {
    opacity: 1;
    visibility: visible;
}

.mnx-app.drawer-closed.drawer-hovered .mnx-drawer-overlay {
    opacity: 1;
    visibility: visible;
    background: rgba(11, 17, 32, 0.08);
    backdrop-filter: blur(1.5px);
    pointer-events: none;
}

@media (min-width: 901px) {
    .mnx-toggle-btn {
        position: relative;
    }

    .mnx-app:not(.drawer-closed) .mnx-toggle-btn {
        border-color: transparent;
        box-shadow: 0 0 0 1.5px var(--mnx-blue);
        transition: box-shadow 0.4s ease;
    }

    .mnx-app:not(.drawer-closed) .mnx-toggle-btn::after {
        content: '';
        position: absolute;
        inset: -5px;
        border-radius: 14px;
        border: 2px solid var(--mnx-blue);
        opacity: 0;
        animation: mnx-hint-soft 3s ease-in-out infinite;
    }

    @keyframes mnx-hint-soft {
        0% {
            opacity: 0;
            transform: scale(1);
        }

        40% {
            opacity: 0.4;
            transform: scale(1.08);
        }

        100% {
            opacity: 0;
            transform: scale(1.18);
        }
    }
}

.mnx-rail {
    width: var(--mnx-rail);
    height: 100%;
    background: var(--mnx-surface);
    border-right: 1px solid var(--mnx-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 50;
    flex-shrink: 0;
    padding: 0;
    position: relative;
}

.side-logo {
    width: 100%;
    height: var(--mnx-topbar);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
}

.side-logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    object-fit: contain;
}

.mnx-rail-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    align-items: center;
    flex-grow: 1;
    padding-top: 16px;
}

.mnx-rail-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: none;
    background-color: rgba(var(--blue-rgb), .06);
    color: var(--mnx-icons-color);
    font-size: 17px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--mnx-ease);
    position: relative;
}

.mnx-rail-btn:hover {
    color: var(--mnx-ink);
    background-color: rgba(var(--blue-rgb), .10);
}

.mnx-rail-btn.is-active {
    background: var(--mnx-rail-active);
    color: var(--white);
}

.mnx-rail-btn.is-peek {
    background: var(--mnx-is-peek);
    color: var(--slate);
}

/*
.mnx-rail-btn.is-peek::after {
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 7px solid var(--mnx-is-peek);
    opacity: 0.6;
    animation: peek-arrow-pulse 2s ease-in-out infinite;
}

@keyframes peek-arrow-pulse {
    0%, 100% { opacity: 0.4; transform: translateY(-50%) translateX(0); }
    50%       { opacity: 0.9; transform: translateY(-50%) translateX(2px); }
}
*/
.mnx-avatar-btn {
    padding: 0;
    overflow: hidden;
}

.mnx-avatar-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.mnx-rail-bottom {
    margin-top: auto;
    width: 100%;
    height: var(--mnx-topbar);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 0;
}

.mnx-drawer {
    width: var(--mnx-drawer);
    height: 100%;
    background: var(--mnx-drawer-surface);
    border-right: 1px solid var(--mnx-border);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    z-index: 45;
    transition: margin var(--mnx-ease), transform var(--mnx-ease);
    margin-left: 0;
    overflow: hidden;
    position: relative;
}

.mnx-drawer::before {
    content: '';
    position: absolute;
    left: -50%;
    bottom: -120px;
    width: 200%;
    height: 160px;
    background: rgba(var(--blue-rgb), 0.04);
    border-radius: 50% 50% 0 0;
    animation: wave-sway 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

.mnx-drawer::after {
    content: '';
    position: absolute;
    left: -60%;
    bottom: -100px;
    width: 200%;
    height: 120px;
    background: rgba(var(--blue-rgb), 0.025);
    border-radius: 50% 50% 0 0;
    animation: wave-sway 6s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
}
.mnx-app.drawer-closed .mnx-drawer {
    margin-left: calc(var(--mnx-drawer) * -1);
}

.mnx-app.drawer-closed.drawer-hovered .mnx-drawer {
    margin-left: 0;
}

.mnx-drawer-head {
    height: var(--mnx-topbar);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-bottom: 1px solid var(--mnx-border);
    flex-shrink: 0;
}

.mnx-drawer-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--mnx-ink);
    letter-spacing: .8px;
    text-transform: uppercase;
}

.mnx-drawer-close {
    display: none;
    background: transparent;
    border: none;
    color: var(--mnx-text-l);
    font-size: 18px;
    cursor: pointer;
    padding: 4px;
    transition: color var(--mnx-ease);
}

.mnx-drawer-close:hover {
    color: var(--mnx-danger);
}

@media (max-width: 900px) {
    .mnx-drawer-close {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

.mnx-drawer-body {
    padding: 14px;
    overflow-y: auto;
    flex-grow: 1;
}

@keyframes mnx-soft-fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mnx-nav-section {
    display: none;
}

.mnx-nav-section.is-active {
    display: block;
    animation: mnx-soft-fade 0.2s ease-in-out forwards;
}

.mnx-nav-group {
    margin-bottom: 20px;
}

.mnx-nav-label {
    font-size: 12px;
    font-weight: 800;
    color: var(--mnx-text-l);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0 7px 8px;
    display: block;
}

.mnx-nav-list {
    list-style: none;
    display: flex;
    padding-left: 0;
    flex-direction: column;
    gap: 2px;
}

.mnx-nav-item {
    width: 100%;
    padding: 5px 5px;
    border-radius: 10px;
    color: var(--mnx-text);
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: .2s;
    border: 1px solid transparent;
}

.mnx-nav-item:hover {
    background: var(--mnx-bg);
    color: var(--mnx-ink);
}

.mnx-nav-item.is-active {
    color: var(--mnx-blue);
}

.mnx-nav-item i {
    width: 18px;
    text-align: center;
    font-size: 15px;
    flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════
   TOPBAR GLOBAL ALERT SYSTEM
════════════════════════════════════════════════════════════ */
.mnx-topbar {
    position: relative;
}

.mnx-app.drawer-hovered .mnx-topbar,
.mnx-app:not(.drawer-closed) .mnx-topbar {
    background: var(--mnx-drawer-surface);
}

.mnx-top-alert {
    position: absolute;
    left: 50%;
    top: 10px;
    height: 40px;
    transform: translateX(-50%) translateY(-150%);
    background: var(--mnx-ink);
    color: var(--white);
    padding: 0 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    z-index: 60;
    opacity: 0;
    visibility: hidden;
    transition: all var(--mnx-ease);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    white-space: nowrap;
    pointer-events: none;
}

.mnx-top-alert.is-visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mnx-top-alert.alert-success {
    background: var(--mnx-green);
    color: var(--white);
}

.mnx-top-alert.alert-error {
    background: var(--mnx-danger);
    color: var(--white);
}

.mnx-top-alert.alert-info {
    background: var(--mnx-blue);
    color: var(--white);
}

@media (max-width: 900px) {
    .mnx-top-alert {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        transform: translateY(-100%);
        white-space: normal;
        text-align: center;
        padding: 0 16px;
        box-shadow: none;
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 18%, black 82%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 18%, black 82%, transparent 100%);
    }

    .mnx-top-alert.is-visible {
        transform: translateY(0);
    }
}

.mnx-drawer-foot {
    height: var(--mnx-topbar);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    border-top: 1px solid var(--mnx-border);
    flex-shrink: 0;
    margin-top: auto;
}

.mnx-user-row {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.mnx-user-meta {
    flex-grow: 1;
    min-width: 0;
    text-decoration: none;
    cursor: pointer;
    padding: 6px 8px;
    border-radius: 8px;
    transition: background-color var(--mnx-ease);
    margin-left: -8px;
}

.mnx-user-meta:hover {
    background-color: var(--mnx-bg);
}

.mnx-user-name {
    font-size: 13px;
    font-weight: 800;
    color: var(--mnx-ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mnx-user-role {
    font-size: 11px;
    color: var(--mnx-text-l);
    font-weight: 400;
}

.mnx-logout-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--mnx-bg);
    border: 1px solid var(--mnx-border);
    color: var(--mnx-danger);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .2s;
    font-size: 13px;
    flex-shrink: 0;
}

.mnx-logout-btn:hover {
    background: rgba(239, 68, 68, .08);
    border-color: rgba(239, 68, 68, .2);
}

.mnx-guest-login {
    display: flex;
    width: 100%;
}

.mnx-login-btn {
    width: 100%;
    height: 38px;
    border-radius: 10px;
    background: var(--background-mnx-ink);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: filter 0.3s ease, border-color 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.mnx-login-btn::after {
    content: '';
    position: absolute;
    left: -50%;
    bottom: -5%;
    width: 200%;
    height: 95%;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 40% 40% 0 0;
    transition: transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(90%);
}

.mnx-login-btn:hover {
    filter: brightness(1.15);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-1px);
}

.mnx-login-btn:hover::after {
    transform: translateY(0%);
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    animation: wave-sway 2s infinite ease-in-out;
}

.mnx-main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.mnx-topbar {
    height: var(--mnx-topbar);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    flex-shrink: 0;
    z-index: 50;
    transition: background .3s ease, box-shadow .3s ease;
}

/* Topbar blends into the hero beneath it ONLY at the top of the page — it adopts
   the same accent tint as the current page's hero (detected via :has). Once the
   user scrolls past the hero it turns plain white on every page (.is-scrolled,
   toggled by shell JS). App pages (.appx) use blue; the automation page is green. */
.mnx-main:has(.appx) .mnx-topbar:not(.is-scrolled) { background: color-mix(in srgb, var(--blue) 8%, var(--white)); }
/* Automation (WhatsApp) topbar: was a flat var(--green-l) wash that read harsh.
   Now a soft vertical gradient (deeper at the very top, fading toward the hero
   beneath it) so the green feels calm and blends into the page instead of sitting
   as one solid band. 180deg → RTL-safe. */
.mnx-main:has(.pg-automation) .mnx-topbar:not(.is-scrolled) {
    background: linear-gradient(180deg,
        color-mix(in srgb, var(--green) 12%, var(--white)),
        color-mix(in srgb, var(--green) 4%, var(--white)));
}
.mnx-topbar.is-scrolled { background: var(--white); box-shadow: 0 1px 0 var(--mist); }

.mnx-top-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mnx-toggle-btn {
    background: transparent;
    border: 1px solid var(--mnx-border);
    color: var(--mnx-ink);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s;
    font-size: 14px;
}

.mnx-toggle-btn:hover {
    background: var(--mnx-bg);
}

.mnx-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 16px;
    font-weight: 700;
    color: var(--mnx-ink);
}

.mnx-bc-sep {
    color: var(--mnx-text-l);
    font-weight: 400;
    font-size: 10px;
}

.mnx-bc-sub {
    color: var(--mnx-text);
    font-size: 16px;
    font-weight: 600;
}

.mnx-top-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* CURRENCY SELECTOR - unified */
.mnx-curr-wrap {
    position: relative;
}

.mnx-curr-trigger {
    gap: 6px;
    padding: 0 10px;
    font-weight: 700;
    cursor: pointer;
}

#mnxCurrChevron {
    font-size: 9px;
    transition: transform .2s;
    color: var(--mnx-text-l);
}

.mnx-curr-trigger.is-open #mnxCurrChevron {
    transform: rotate(180deg);
}

.mnx-curr-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--mnx-surface, white);
    border: 1px solid var(--mnx-border, var(--mist));
    border-radius: 12px;
    padding: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    display: none;
    flex-direction: column;
    gap: 2px;
    min-width: 210px;
    max-height: 320px;
    overflow-y: auto;
    z-index: 1000;
}

.mnx-curr-dropdown.is-open {
    display: flex;
}

@media (max-width: 900px) {
    #shellCtaBtn {
        display: none;
    }
}

span#mnxCurrFlag {
    font-size: 20px;
}

.mnx-curr-opt {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--mnx-text, var(--code-surface));
    background: transparent;
    border: none;
    width: 100%;
    text-align: start;
    transition: .15s;
}

.mnx-curr-opt:hover {
    background: var(--mnx-bg, var(--snow));
    color: var(--mnx-ink, var(--code-bg));
}

.mnx-curr-opt.is-active {
    color: var(--mnx-blue, var(--blue));
    background: rgba(var(--blue-rgb), .06);
}

.mnx-curr-opt .curr-name {
    flex-grow: 1;
    text-align: start;
}

.mnx-curr-opt .curr-symbol {
    font-size: 12px;
    color: var(--mnx-text-l, var(--slate));
    font-weight: 400;
}

.mnx-curr-flag {
    font-size: 20px;
}

@media (max-width: 480px) {
    .mnx-curr-dropdown {
        right: 0;
        left: auto;
        min-width: 190px;
    }
}

.btn-ar {
    font-family: fantasy !important;
    line-height: unset !important;
}

.mnx-top-btn {
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0 14px;
    color: var(--mnx-text);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    background: var(--mnx-surface);
    border: 1px solid var(--mnx-border);
    border-radius: 8px;
    gap: 6px;
    transition: color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mnx-top-btn::after {
    content: '';
    position: absolute;
    left: -50%;
    bottom: -80px;
    width: 200%;
    height: 95%;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 40% 40% 0 0;
    transition: bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mnx-top-btn:hover {
    color: var(--mnx-ink);
    border-color: var(--mist);
}

.mnx-top-btn:hover::after {
    bottom: -5%;
    animation: wave-sway 2s infinite ease-in-out;
}

.mnx-top-btn.is-primary {
    background: var(--mnx-blue);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.mnx-top-btn.is-primary::after {
    background: rgba(255, 255, 255, 0.12);
}

.mnx-top-btn.is-primary:hover {
    background: var(--mnx-blue);
    filter: brightness(1.15);
    border-color: rgba(255, 255, 255, 0.6);
}

.mnx-page {
    flex: 1 1 auto;
    overflow-y: auto;
    overflow-x: hidden;
    position: relative;
    background: var(--mnx-bg);
}

.mnx-page-inner {
    min-height: 100%;
    opacity: 1;
    visibility: visible;
    will-change: opacity;
}

.mnx-loader {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: var(--mnx-blue);
    font-size: 22px;
    position: absolute;
    inset: 0;
    background: var(--mnx-bg);
    z-index: 5;
}

.mnx-page.is-loading .mnx-loader {
    display: flex;
}

@media (max-width: 600px) {
    .mnx-hide-548 {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .mnx-breadcrumb-long {
        display: none !important;
    }

    .mnx-bc-sep:has(+ .mnx-breadcrumb-long),
    .mnx-breadcrumb-long+.mnx-bc-sep {
        display: none !important;
    }

    .mnx-topbar {
        justify-content: space-between;
    }
}

@media (max-width: 480px) {
    .mnx-hide-469 {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .mnx-drawer {
        position: fixed;
        left: 56px;
        top: 0;
        height: 100%;
        z-index: 45;
        box-shadow: 8px 0 24px rgba(0, 0, 0, .08);
    }

    .mnx-app.drawer-closed .mnx-drawer {
        margin-left: calc(var(--mnx-drawer) * -1);
        box-shadow: none;
    }

    .mnx-topbar {
        padding: 0 14px;
        z-index: 1;
    }

    .mnx-breadcrumb {
        font-size: 13px;
    }
}

::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 10px;
    transition: background 0.3s;
}

*:hover::-webkit-scrollbar-thumb {
    background: rgba(15, 23, 42, 0.10);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(15, 23, 42, 0.20) !important;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}

*:hover {
    scrollbar-color: rgba(15, 23, 42, 0.10) transparent;
}

.mnx-footer {
    position: relative;
    flex-shrink: 0;
    height: var(--mnx-footer);
    display: flex;
    align-items: center;
    padding: 0 24px;
    z-index: 1;
}

.mnx-footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
}

.mnx-footer-left .copyright {
    font-size: 14px !important;
    color: var(--mnx-text-l);
    font-weight: 400;
}

.mnx-footer-right {
    display: flex;
    align-items: center;
}

.mnx-footer-link {
    font-size: 14px;
    font-weight: 400;
    color: var(--mnx-text-l);
    transition: var(--mnx-ease);
    cursor: pointer;
    text-decoration: none;
}

.mnx-footer-link:hover {
    color: var(--mnx-ink);
}

@media (max-width: 900px) {
    .mnx-footer {
        display: none;
        height: auto;
        padding: 20px;
    }

    .mnx-footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

.mnx-promo-banner {
    display: none;
    height: var(--mnx-topbar);
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 40;
    gap: 16px;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    animation: mnx-promo-slide-down 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    flex-shrink: 0;
    position: relative;
}

@keyframes mnx-promo-slide-down {
    from {
        margin-top: -50px;
        opacity: 0;
    }

    to {
        margin-top: 0;
        opacity: 1;
    }
}

/* FORMAL B2B PROMOTION BANNER 
   Design: Enterprise Tier 
   Function: Pattern Interrupt with 5s Delay 
*/

.mnx-promo-banner {
    display: none;
    /* Controlled by JS Delay */
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 14px;
    z-index: 1000;
    gap: 30px;
    background: var(--ink);
    /* Solid Corporate Navy */
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    animation: mnx-promo-slide-down 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes mnx-promo-slide-down {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.mnx-promo-content {
    display: flex;
    gap: 15px;
    align-items: center;
    z-index: 2;
}

.mnx-promo-banner strong {
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 15px;
}

/* RTL Adjustment for Arabic */
[dir="rtl"] .mnx-promo-banner strong {
    border-right: none;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    padding-right: 0;
    padding-left: 15px;
}

.mnx-promo-banner span {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

/* FORMAL B2B CALL-TO-ACTION - FIXED CENTERING */
.mnx-promo-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: 6px;
    /* High-end formal corners */
    background: var(--blue);
    /* Primary Action Blue */
    color: var(--white) !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    transition: all 0.2s ease-in-out;
    border: 1px solid var(--blue);
    line-height: 1;
    z-index: 2;
    cursor: pointer;
}

/* Precision Alignment for Icons */
.mnx-promo-cta i {
    font-size: 14px;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
}

.mnx-promo-cta:hover {
    background: var(--blue-h);
    border-color: var(--blue-h);
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(var(--blue-rgb), 0.3);
}

.mnx-promo-cta:active {
    transform: translateY(0);
}

/* FORMAL CLOSE BUTTON */
.mnx-promo-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 20px;
    margin-inline-start: auto;
    padding: 0;
}

.mnx-promo-close:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

/* Responsive Handling */
@media (max-width: 900px) {
    .mnx-promo-banner {
        flex-direction: column;
        padding: 16px;
        gap: 15px;
        text-align: center;
    }

    .mnx-promo-content {
        flex-direction: column;
        gap: 8px;
    }

    .mnx-promo-banner strong {
        border: none;
        padding: 0;
    }

    .mnx-promo-close {
        position: absolute;
        top: 8px;
        right: 8px;
    }
}
@keyframes mnx-hint-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}