:root {
    --mw-red: #E30613;
    --mw-dark: #0B1423;
    --mw-dark-2: #060D18;
    --mw-white: #FFFFFF;
    --mw-muted: #A9B0BB;
    --mw-shadow: 0 14px 40px rgba(0,0,0,.25);
    --mw-shadow-soft: 0 10px 28px rgba(0,0,0,.18);
    --mw-shadow-card: 0 10px 24px rgba(10,15,24,.10);
    --mw-radius: 12px;
    --mw-font: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --mw-glow-red: 0 0 0 .25rem rgba(227, 6, 19, .18);
    --mw-glow-white: 0 0 0 .25rem rgba(255,255,255,.14);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

    body.mw-body {
        font-family: var(--mw-font);
        background: var(--mw-dark-2);
        color: #111;
    }

    body.mw-menu-open {
        overflow: hidden;
    }

    html.mw-modal-open,
    body.mw-modal-open {
        overflow: hidden;
    }

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.container-mw {
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 18px;
    padding-right: 18px;
}

.mw-site-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--mw-dark-2);
}

.mw-page-shell {
    flex: 1 0 auto;
    width: 100%;
}

.mw-header-shell {
    position: relative;
    z-index: 60;
}

.mw-header-band {
    background: radial-gradient(1000px 280px at 10% 0%, rgba(227,6,19,.18), transparent 55%), linear-gradient(90deg, rgba(11,20,35,.96) 0%, rgba(11,20,35,.88) 55%, rgba(255,255,255,.08) 100%);
    border-top: 4px solid rgba(227,6,19,.18);
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.mw-topbar {
    padding: 10px 0;
    color: #fff;
    font-size: 13px;
    letter-spacing: .2px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.mw-topbar-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.mw-contact {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    opacity: .95;
}

    .mw-contact span {
        display: inline-flex;
        align-items: center;
    }

    .mw-contact i {
        margin-right: 8px;
        opacity: .9;
    }

.mw-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

    .mw-social a {
        color: #fff;
        opacity: .9;
        transition: all .2s ease;
    }

        .mw-social a:hover {
            opacity: 1;
            transform: translateY(-1px);
            text-shadow: 0 8px 18px rgba(0,0,0,.3);
        }

.mw-navwrap {
    position: relative;
}

.mw-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 78px;
}

.mw-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

    .mw-brand img {
        height: 36px;
        width: auto;
        display: block;
        filter: drop-shadow(0 10px 18px rgba(0,0,0,.22));
    }

.mw-navlinks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .mw-navlinks a {
        color: #fff;
        font-weight: 700;
        letter-spacing: .9px;
        font-size: 13px;
        text-transform: uppercase;
        opacity: .95;
        transition: all .18s ease;
        position: relative;
        padding: 4px 0;
    }

        .mw-navlinks a::after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -8px;
            height: 2px;
            background: transparent;
            transform: scaleX(.4);
            transition: all .18s ease;
            opacity: 0;
        }

        .mw-navlinks a:hover,
        .mw-navlinks a.is-active {
            opacity: 1;
        }

            .mw-navlinks a:hover::after,
            .mw-navlinks a.is-active::after {
                background: rgba(227,6,19,.95);
                transform: scaleX(1);
                opacity: 1;
            }

.mw-navicons {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.mw-navbtn {
    color: #fff;
    opacity: .92;
    transition: all .18s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: none;
}

button.mw-navbtn {
    appearance: none;
    outline: none;
    cursor: pointer;
}

.mw-navbtn:hover {
    opacity: 1;
    transform: translateY(-1px);
    background: rgba(227,6,19,.14);
    border-color: rgba(227,6,19,.35);
    box-shadow: var(--mw-glow-white);
}

.mw-mobile-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .2s ease;
    z-index: 98;
}

    .mw-mobile-backdrop.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

.mw-mobile-panel {
    position: fixed;
    top: 0;
    right: -340px;
    width: 320px;
    max-width: calc(100vw - 28px);
    height: 100vh;
    background: linear-gradient(180deg, #0b1423 0%, #060d18 100%);
    box-shadow: -18px 0 42px rgba(0,0,0,.35);
    z-index: 99;
    transition: right .22s ease;
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
}

    .mw-mobile-panel.show {
        right: 0;
    }

.mw-mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

    .mw-mobile-top img {
        height: 34px;
        width: auto;
    }

.mw-mobile-close {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.06);
    color: #fff;
    cursor: pointer;
    transition: all .18s ease;
}

    .mw-mobile-close:hover {
        background: rgba(227,6,19,.14);
        border-color: rgba(227,6,19,.35);
    }

.mw-mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 18px;
}

    .mw-mobile-nav a {
        color: #fff;
        font-weight: 800;
        letter-spacing: .6px;
        font-size: 14px;
        text-transform: uppercase;
        padding: 14px 8px;
        border-radius: 10px;
        transition: all .18s ease;
    }

        .mw-mobile-nav a:hover {
            background: rgba(255,255,255,.06);
        }

.mw-mobile-contact {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
    color: rgba(255,255,255,.82);
    font-size: 13px;
}

    .mw-mobile-contact span {
        display: inline-flex;
        align-items: center;
    }

    .mw-mobile-contact i {
        width: 18px;
        margin-right: 8px;
    }

.mw-footer {
    background: var(--mw-dark-2);
    color: rgba(255,255,255,.82);
    padding: 44px 0 0;
}

.mw-footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.mw-foot-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

    .mw-foot-logo img {
        height: 30px;
        width: auto;
        display: block;
    }

.mw-footer p {
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    line-height: 1.8;
}

.mw-foot-title {
    text-transform: uppercase;
    font-weight: 950;
    letter-spacing: 1px;
    font-size: 12px;
    color: rgba(255,255,255,.92);
    margin-bottom: 12px;
}

.mw-foot-strong {
    font-weight: 950;
    color: rgba(255,255,255,.9);
    text-transform: uppercase;
    letter-spacing: .6px;
}

.mw-foot-links {
    margin-top: 14px;
}

    .mw-foot-links a {
        display: block;
        color: rgba(255,255,255,.72);
        font-size: 13px;
        padding: 6px 0;
        transition: all .15s ease;
    }

        .mw-foot-links a i {
            margin-right: 8px;
        }

        .mw-foot-links a:hover {
            color: #fff;
            transform: translateX(2px);
        }

.mw-foot-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255,255,255,.75);
    font-size: 13px;
    padding: 6px 0;
}

    .mw-foot-item i {
        margin-top: 2px;
        opacity: .9;
    }

.mw-footer-bottom {
    background: rgba(255,255,255,.03);
    border-top: 1px solid rgba(255,255,255,.08);
}

    .mw-footer-bottom .container-mw {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding-top: 16px;
        padding-bottom: 16px;
        font-size: 12px;
        color: rgba(255,255,255,.6);
    }

.mw-foot-social {
    display: flex;
    gap: 14px;
    align-items: center;
}

    .mw-foot-social a {
        color: rgba(255,255,255,.7);
        transition: all .15s ease;
    }

        .mw-foot-social a:hover {
            color: #fff;
            transform: translateY(-1px);
            text-shadow: 0 12px 24px rgba(0,0,0,.35);
        }

.mw-to-top {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 0;
    background: var(--mw-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 26px rgba(0,0,0,.25);
    z-index: 70;
    opacity: 0;
    pointer-events: none;
    transition: all .2s ease;
    outline: none;
    cursor: pointer;
}

    .mw-to-top.show {
        opacity: 1;
        pointer-events: auto;
    }

    .mw-to-top:hover {
        transform: translateY(-2px);
        filter: brightness(1.05);
        box-shadow: 0 18px 34px rgba(227,6,19,.25);
    }

@media (max-width: 992px) {
    .mw-navlinks {
        display: none;
    }

    .mw-footer-top {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mw-topbar-row,
    .mw-footer-bottom .container-mw {
        flex-direction: column;
        align-items: flex-start;
    }

    .mw-topbar {
        font-size: 12px;
    }
}

@media (max-width: 460px) {
    .mw-contact {
        gap: 10px;
    }

    .mw-navicons {
        gap: 8px;
    }

    .mw-navbtn {
        width: 40px;
        height: 40px;
    }
}

.mw-navbtn.is-auth {
    background: rgba(227,6,19,.12);
    border-color: rgba(227,6,19,.40);
    box-shadow: 0 0 0 .20rem rgba(227,6,19,.10);
}

.mw-mobile-nav a.is-auth {
    background: rgba(227,6,19,.10);
    color: #fff;
}

.mw-page-shell {
    animation: mwPageEnter .35s ease both;
}

@keyframes mwPageEnter {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mw-page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(6,13,24,.94);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .28s ease;
}

    .mw-page-loader.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

.mw-page-loader-box {
    width: min(92vw, 340px);
    border-radius: 24px;
    padding: 26px 24px 22px;
    background: linear-gradient(180deg, rgba(11,20,35,.96) 0%, rgba(6,13,24,.98) 100%);
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 24px 60px rgba(0,0,0,.35);
    text-align: center;
}

.mw-page-loader-logo img {
    height: 34px;
    width: auto;
    display: block;
    margin: 0 auto 18px;
}

.mw-page-loader-spinner {
    width: 62px;
    height: 62px;
    margin: 0 auto;
    position: relative;
}

    .mw-page-loader-spinner span {
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 3px solid rgba(255,255,255,.10);
        border-top-color: var(--mw-red);
        animation: mwLoaderSpin .85s linear infinite;
    }

@keyframes mwLoaderSpin {
    to {
        transform: rotate(360deg);
    }
}

.mw-page-loader-text {
    margin-top: 14px;
    color: rgba(255,255,255,.78);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.mw-account-trigger {
    min-width: 188px;
    max-width: 240px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.06);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 8px 6px 6px;
    color: #fff;
    transition: all .18s ease;
}

    .mw-account-trigger:hover {
        transform: translateY(-1px);
        background: rgba(227,6,19,.14);
        border-color: rgba(227,6,19,.35);
        box-shadow: var(--mw-glow-white);
    }

    .mw-account-trigger.is-auth {
        background: rgba(255,255,255,.08);
        border-color: rgba(255,255,255,.14);
    }

.mw-account-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(227,6,19,.92), rgba(153,12,22,.92));
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    flex: 0 0 34px;
    text-transform: uppercase;
    box-shadow: 0 12px 22px rgba(227,6,19,.18);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .mw-account-avatar.is-icon {
        background: rgba(255,255,255,.08);
        box-shadow: none;
        font-size: 15px;
    }

.mw-account-meta {
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.mw-account-name {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mw-account-hint {
    display: block;
    margin-top: 4px;
    color: rgba(255,255,255,.66);
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mw-mobile-account {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 10px 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    margin-top: 18px;
    color: #fff;
}

.mw-mobile-account-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(227,6,19,.92), rgba(153,12,22,.92));
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    flex: 0 0 42px;
    text-transform: uppercase;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

    .mw-mobile-account-avatar.is-icon {
        background: rgba(255,255,255,.08);
        font-size: 17px;
    }

.mw-mobile-account-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

    .mw-mobile-account-meta span {
        color: #fff;
        font-size: 14px;
        font-weight: 800;
        line-height: 1.1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mw-mobile-account-meta small {
        color: rgba(255,255,255,.66);
        font-size: 12px;
        font-weight: 700;
        margin-top: 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

#toast-container {
    position: fixed !important;
    z-index: 99999 !important;
    pointer-events: none;
}

    #toast-container.toast-top-center {
        top: 22px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        width: min(92vw, 440px) !important;
    }

    #toast-container > div {
        position: relative;
        pointer-events: auto;
        opacity: 1;
        margin: 0 0 14px 0;
        padding: 16px 18px 16px 18px !important;
        border-radius: 20px;
        font-family: var(--mw-font);
        background-image: none !important;
        background-repeat: no-repeat !important;
        min-height: auto !important;
        box-shadow: 0 20px 44px rgba(0,0,0,.34);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        overflow: hidden;
    }

        #toast-container > div::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 5px;
            border-radius: 20px 0 0 20px;
        }

    #toast-container > .toast-success,
    #toast-container > .toast-error,
    #toast-container > .toast-info,
    #toast-container > .toast-warning {
        background-image: none !important;
    }

    #toast-container > .toast-success {
        background: linear-gradient(180deg, rgba(11,39,31,.98) 0%, rgba(8,28,22,.98) 100%) !important;
        border: 1px solid rgba(42,204,149,.28);
    }

        #toast-container > .toast-success::before {
            background: #2acc95;
        }

    #toast-container > .toast-error {
        background: linear-gradient(180deg, rgba(49,17,26,.98) 0%, rgba(33,12,19,.98) 100%) !important;
        border: 1px solid rgba(227,6,19,.30);
    }

        #toast-container > .toast-error::before {
            background: #E30613;
        }

    #toast-container > .toast-info {
        background: linear-gradient(180deg, rgba(16,27,46,.98) 0%, rgba(11,20,35,.98) 100%) !important;
        border: 1px solid rgba(77,163,255,.28);
    }

        #toast-container > .toast-info::before {
            background: #4DA3FF;
        }

    #toast-container > .toast-warning {
        background: linear-gradient(180deg, rgba(58,36,10,.98) 0%, rgba(38,24,8,.98) 100%) !important;
        border: 1px solid rgba(255,170,0,.34);
    }

        #toast-container > .toast-warning::before {
            background: #FFAA00;
        }

.toast-title {
    margin: 0 24px 4px 0;
    color: #fff;
    font-weight: 900;
    font-size: 16px;
    line-height: 1.25;
    letter-spacing: .2px;
}

.toast-message {
    margin: 0;
    color: rgba(255,255,255,.90);
    font-size: 14px;
    line-height: 1.65;
    font-weight: 500;
}

.toast-close-button {
    position: absolute;
    top: 10px;
    right: 12px;
    float: none;
    font-size: 18px;
    color: rgba(255,255,255,.76) !important;
    text-shadow: none;
    opacity: 1;
}

    .toast-close-button:hover {
        color: #fff !important;
    }

.toast-progress {
    height: 3px;
    opacity: 1;
    border-radius: 0 0 20px 20px;
}

@media (max-width: 460px) {
    #toast-container.toast-top-center {
        width: min(94vw, 420px) !important;
        top: 14px !important;
    }

    .toast-title {
        font-size: 15px;
    }

    .toast-message {
        font-size: 13px;
    }
}

.swal2-popup.mw-swal-popup {
    background: linear-gradient(180deg, #0b1423 0%, #060d18 100%);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 26px;
    color: #fff;
    font-family: var(--mw-font);
    box-shadow: 0 28px 70px rgba(0,0,0,.34);
    padding: 1.6rem 1.4rem 1.35rem;
}

.swal2-title.mw-swal-title {
    color: #fff;
    font-weight: 900;
    font-size: 1.55rem;
    letter-spacing: .2px;
}

.swal2-html-container.mw-swal-html {
    color: rgba(255,255,255,.78);
    font-size: 14px;
    line-height: 1.8;
}

.swal2-confirm.mw-swal-confirm {
    background: #E30613 !important;
    border-radius: 14px !important;
    border: 0 !important;
    font-weight: 900 !important;
    letter-spacing: .4px !important;
    box-shadow: 0 16px 32px rgba(227,6,19,.24) !important;
    padding: .82rem 1.35rem !important;
}

.swal2-cancel.mw-swal-cancel {
    background: rgba(255,255,255,.08) !important;
    color: #fff !important;
    border-radius: 14px !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    font-weight: 800 !important;
    padding: .82rem 1.35rem !important;
}

.bootstrap-select {
    width: 100% !important;
}

    .bootstrap-select .dropdown-toggle {
        width: 100%;
        height: 52px;
        border-radius: 16px;
        border: 1px solid rgba(255,255,255,.10);
        background: rgba(255,255,255,.04);
        color: #fff;
        padding: 0 44px 0 16px;
        font-size: 14px;
        font-weight: 600;
        outline: none !important;
        box-shadow: none !important;
    }

        .bootstrap-select .dropdown-toggle:focus,
        .bootstrap-select .dropdown-toggle:hover,
        .bootstrap-select.show > .dropdown-toggle {
            border-color: rgba(227,6,19,.45);
            background: rgba(255,255,255,.06);
            color: #fff;
        }

    .bootstrap-select .filter-option {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .bootstrap-select .dropdown-menu {
        z-index: 3000 !important;
        background: #0f1a2d;
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 18px;
        box-shadow: 0 22px 44px rgba(0,0,0,.34);
        padding: 8px;
        overflow: hidden;
    }

        .bootstrap-select .dropdown-menu .inner {
            scrollbar-width: thin;
        }

        .bootstrap-select .dropdown-menu .dropdown-item {
            color: rgba(255,255,255,.82);
            border-radius: 12px;
            padding: 10px 12px;
            font-size: 13px;
            font-weight: 700;
        }

            .bootstrap-select .dropdown-menu .dropdown-item:hover,
            .bootstrap-select .dropdown-menu .dropdown-item.active,
            .bootstrap-select .dropdown-menu .selected.active .dropdown-item {
                background: rgba(227,6,19,.14);
                color: #fff;
            }

    .bootstrap-select .bs-searchbox {
        padding: 8px 8px 10px;
    }

        .bootstrap-select .bs-searchbox .form-control {
            height: 44px;
            border-radius: 14px;
            border: 1px solid rgba(255,255,255,.10);
            background: rgba(255,255,255,.04);
            color: #fff;
            box-shadow: none;
        }

            .bootstrap-select .bs-searchbox .form-control::placeholder {
                color: rgba(255,255,255,.45);
            }

.mw-label-required {
    color: #ff5e6a;
    margin-left: 4px;
    font-weight: 900;
}

@media (max-width: 992px) {
    .mw-account-trigger {
        min-width: auto;
        width: 48px;
        height: 48px;
        padding: 0;
        justify-content: center;
    }

    .mw-account-meta {
        display: none;
    }
}

@media (max-width: 460px) {
    #toast-container.toast-top-center {
        width: min(94vw, 420px);
    }
}

#mwAccountBtn.is-incomplete,
#mwMobileAccountBtn.is-incomplete {
    border-color: rgba(255,170,0,.36) !important;
    box-shadow: 0 0 0 .2rem rgba(255,170,0,.10) !important;
}

    #mwAccountBtn.is-incomplete:hover,
    #mwMobileAccountBtn.is-incomplete:hover {
        background: rgba(255,170,0,.14) !important;
    }

.mw-profile-reminder {
    position: sticky;
    top: 0;
    z-index: 1400;
    background: rgba(6,13,24,.92);
    border-bottom: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.mw-profile-reminder-inner {
    min-height: 72px;
    padding: 12px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.mw-profile-reminder-copy {
    min-width: 0;
}

.mw-profile-reminder-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(255,170,0,.14);
    border: 1px solid rgba(255,170,0,.24);
    color: #ffe0a3;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.mw-profile-reminder-title {
    margin-top: 8px;
    color: #fff;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.2;
}

.mw-profile-reminder-text {
    margin-top: 4px;
    color: #c9d3df;
    font-size: 13px;
    line-height: 1.7;
}

.mw-profile-reminder-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.mw-profile-reminder-btn {
    min-width: 140px;
    height: 42px;
    border-radius: 14px;
    background: #E30613;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .4px;
    transition: all .18s ease;
    box-shadow: 0 16px 30px rgba(227,6,19,.18);
}

    .mw-profile-reminder-btn:hover {
        color: #fff;
        transform: translateY(-1px);
        filter: brightness(1.05);
    }

.mw-profile-reminder-close {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.05);
    color: #fff;
    transition: all .18s ease;
}

    .mw-profile-reminder-close:hover {
        background: rgba(255,255,255,.10);
        transform: translateY(-1px);
    }

#mwAccountBtn.is-incomplete,
#mwMobileAccountBtn.is-incomplete {
    border-color: rgba(255,170,0,.36) !important;
    box-shadow: 0 0 0 .2rem rgba(255,170,0,.10) !important;
}

    #mwAccountBtn.is-incomplete:hover,
    #mwMobileAccountBtn.is-incomplete:hover {
        background: rgba(255,170,0,.14) !important;
    }

@media (max-width: 768px) {
    .mw-profile-reminder-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .mw-profile-reminder-actions {
        width: 100%;
    }

    .mw-profile-reminder-btn {
        flex: 1 1 auto;
    }
}

.mw-avatar-initials {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #162033, #263955);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .4px;
}

.mw-navlinks {
    gap: clamp(16px, 1.7vw, 28px);
}

.mw-profile-quick {
    color: #fff;
}

    .mw-profile-quick:hover {
        background: rgba(255,255,255,.10);
        border-color: rgba(255,255,255,.18);
    }

.mw-navbtn-notify {
    position: relative;
}

.mw-navbtn-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #E30613;
    color: #fff;
    border: 2px solid #0B1423;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
}

    .mw-navbtn-badge:not(:empty) {
        display: inline-flex;
    }

.mw-admin-menu-trigger {
    font-size: 13px;
    font-weight: 900;
    transition: color .16s ease, opacity .16s ease;
}

.mw-admin-menu-dropdown {
    min-width: 250px;
    padding: 10px;
    border-radius: 20px;
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

    .mw-admin-menu-dropdown a {
        gap: 14px;
        padding: 14px 14px !important;
        font-size: 14px !important;
        border-radius: 15px;
    }

        .mw-admin-menu-dropdown a i {
            width: 20px;
            flex: 0 0 20px;
            display: inline-flex;
            justify-content: center;
            font-size: 14px;
        }

        .mw-admin-menu-dropdown a span {
            display: inline-flex;
            align-items: center;
        }

.mw-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 18px;
}

.mw-mobile-message-link {
    min-height: 58px;
    border-radius: 18px;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.075);
    color: #fff;
    padding: 0 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 15px;
    font-weight: 850;
    letter-spacing: .1px;
    transition: transform .16s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease;
}

    .mw-mobile-message-link:hover {
        color: #fff;
        transform: translateX(2px);
        background: rgba(255,255,255,.085);
        border-color: rgba(255,255,255,.13);
    }

    .mw-mobile-message-link span:first-child {
        min-width: 0;
        display: flex;
        align-items: center;
        gap: 13px;
    }

    .mw-mobile-message-link i {
        width: 22px;
        min-width: 22px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,.92);
        font-size: 17px;
    }

.mw-mobile-admin-action i,
#mwAdminMobileNavLink {
    color: #ffd36a !important;
}

.mw-mobile-admin-action {
    background: rgba(255,211,106,.07);
    border-color: rgba(255,211,106,.14);
}

    .mw-mobile-admin-action:hover {
        background: rgba(255,211,106,.12);
        border-color: rgba(255,211,106,.22);
    }

.mw-mobile-pill {
    min-width: 24px;
    height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: #E30613;
    color: #fff;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
}

    .mw-mobile-pill:not(:empty) {
        display: inline-flex;
    }

@media (max-width: 1180px) {
    .mw-navlinks {
        gap: 16px;
    }

        .mw-navlinks a,
        .mw-admin-menu-trigger {
            font-size: 12px;
            letter-spacing: .55px;
        }
}

@media (max-width: 1040px) {
    .mw-navlinks {
        gap: 13px;
    }

    .mw-account-trigger {
        min-width: 170px;
    }
}

@media (max-width: 992px) {
    .mw-profile-quick {
        display: none !important;
    }

    .mw-mobile-panel {
        overflow-y: auto;
        scrollbar-width: thin;
    }

    .mw-mobile-nav a {
        font-size: 15px;
        padding: 13px 10px;
    }
}

@media (max-width: 460px) {
    .mw-mobile-panel {
        width: min(340px, calc(100vw - 24px));
        padding: 20px 16px;
    }

    .mw-mobile-actions {
        gap: 10px;
    }

    .mw-mobile-message-link {
        min-height: 56px;
        font-size: 14px;
        padding: 0 16px;
    }
}

.mw-admin-menu {
    position: relative;
    display: none;
    align-items: center;
}

    .mw-admin-menu::after {
        content: "";
        position: absolute;
        left: -14px;
        right: -14px;
        top: 100%;
        height: 18px;
    }

.mw-admin-menu-trigger {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    color: #ffd36a;
    font-family: var(--mw-font);
    font-weight: 900;
    letter-spacing: .9px;
    font-size: 13px;
    text-transform: uppercase;
    opacity: .98;
    padding: 4px 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    line-height: 1.2;
    box-shadow: none;
    outline: none;
    position: relative;
}

    .mw-admin-menu-trigger::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -8px;
        height: 2px;
        background: transparent;
        transform: scaleX(.4);
        transition: all .16s ease;
        opacity: 0;
    }

    .mw-admin-menu-trigger:hover,
    .mw-admin-menu-trigger:focus {
        color: #ffd36a;
        background: transparent;
        outline: none;
    }

        .mw-admin-menu-trigger:hover::after,
        .mw-admin-menu.is-open .mw-admin-menu-trigger::after {
            background: #d4a017;
            transform: scaleX(1);
            opacity: 1;
        }

    .mw-admin-menu-trigger i {
        font-size: 10px;
        transition: transform .14s ease;
    }

.mw-admin-menu.is-open .mw-admin-menu-trigger i {
    transform: rotate(180deg);
}

.mw-admin-menu-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 250px;
    border-radius: 20px;
    background: linear-gradient(180deg, #111b2d 0%, #08111f 100%);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 24px 52px rgba(0,0,0,.34);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
    z-index: 300;
}

.mw-admin-menu.is-open .mw-admin-menu-dropdown,
.mw-admin-menu:hover .mw-admin-menu-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mw-admin-menu-dropdown a {
    display: flex !important;
    align-items: center;
    gap: 14px;
    color: rgba(255,255,255,.90) !important;
    padding: 14px 14px !important;
    border-radius: 15px;
    font-size: 14px !important;
    font-weight: 900 !important;
    letter-spacing: .35px !important;
    text-transform: none !important;
    line-height: 1.15;
    white-space: nowrap;
}

    .mw-admin-menu-dropdown a:hover {
        background: rgba(227,6,19,.14);
        color: #fff !important;
        transform: none;
    }

    .mw-admin-menu-dropdown a::after {
        display: none !important;
    }

    .mw-admin-menu-dropdown a i {
        width: 20px;
        flex: 0 0 20px;
        display: inline-flex;
        justify-content: center;
        color: #ffd36a;
        font-size: 14px;
    }

@media (max-width: 992px) {
    .mw-admin-menu {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .mw-header-shell {
        z-index: 90;
    }

    .mw-navbar {
        min-height: 72px;
        gap: 10px;
    }

    .mw-brand {
        flex: 0 1 auto;
        min-width: 0;
        max-width: 150px;
    }

        .mw-brand img {
            height: 38px;
            max-width: 150px;
            object-fit: contain;
        }

    .mw-navicons {
        margin-left: auto;
        gap: 9px;
        flex: 0 0 auto;
    }

        .mw-navicons > a[href*="inventario"].mw-navbtn:first-child {
            display: none !important;
        }

    .mw-profile-quick {
        display: inline-flex !important;
    }

    .mw-account-trigger {
        min-width: 44px !important;
        max-width: 44px !important;
        width: 44px !important;
        height: 44px !important;
        padding: 0 !important;
        justify-content: center !important;
        border-radius: 999px !important;
        overflow: hidden;
    }

        .mw-account-trigger .mw-account-meta {
            display: none !important;
        }

    .mw-account-avatar {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        box-shadow: 0 10px 22px rgba(227,6,19,.18);
    }

    .mw-navbtn {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
    }

    .mw-menu-btn {
        flex: 0 0 44px;
    }
}

@media (max-width: 768px) {
    .mw-topbar-row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .mw-contact {
        gap: 12px;
        line-height: 1.3;
    }

    .mw-navbar {
        min-height: 68px;
    }

    .mw-brand {
        max-width: 132px;
    }

        .mw-brand img {
            height: 36px;
            max-width: 132px;
        }

    .mw-navicons {
        gap: 8px;
    }

    .mw-navbtn,
    .mw-menu-btn,
    .mw-account-trigger {
        width: 42px !important;
        min-width: 42px !important;
        max-width: 42px !important;
        height: 42px !important;
        flex-basis: 42px !important;
    }

    .mw-account-avatar {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
    }
}

@media (max-width: 520px) {
    .mw-header-band {
        background: radial-gradient(720px 220px at 0% 0%, rgba(227,6,19,.20), transparent 52%), linear-gradient(90deg, rgba(11,20,35,.98) 0%, rgba(11,20,35,.93) 100%);
    }

    .mw-topbar {
        padding: 8px 0;
    }

    .mw-topbar-row {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        gap: 10px;
    }

    .mw-contact {
        display: grid;
        grid-template-columns: 1fr;
        gap: 5px;
        font-size: 12px;
    }

    .mw-social {
        gap: 10px;
    }

    .mw-navbar {
        min-height: 66px;
        gap: 8px;
    }

    .mw-brand {
        max-width: 118px;
        flex: 1 1 auto;
    }

        .mw-brand img {
            height: 35px;
            max-width: 118px;
        }

    .mw-navicons {
        gap: 7px;
    }

    .mw-navbtn,
    .mw-menu-btn,
    .mw-account-trigger {
        width: 40px !important;
        min-width: 40px !important;
        max-width: 40px !important;
        height: 40px !important;
        flex-basis: 40px !important;
    }

    .mw-account-avatar {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }
}

@media (max-width: 380px) {
    .container-mw {
        padding-left: 12px;
        padding-right: 12px;
    }

    .mw-brand {
        max-width: 108px;
    }

        .mw-brand img {
            height: 32px;
            max-width: 108px;
        }

    .mw-navicons {
        gap: 6px;
    }

    .mw-navbtn,
    .mw-menu-btn,
    .mw-account-trigger {
        width: 38px !important;
        min-width: 38px !important;
        max-width: 38px !important;
        height: 38px !important;
        flex-basis: 38px !important;
    }

    .mw-account-avatar {
        width: 30px;
        height: 30px;
        flex-basis: 30px;
    }
}

#mwProfileQuickLink.mw-navbtn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
}

    #mwProfileQuickLink.mw-navbtn i {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 1em;
        height: 1em;
        line-height: 3;
        font-size: 18px;
    }

.mw-contact a,
.mw-mobile-contact a {
    color: inherit;
    display: inline-flex;
    align-items: center;
    transition: color .16s ease, transform .16s ease, opacity .16s ease;
}

    .mw-contact a i,
    .mw-mobile-contact a i {
        margin-right: 8px;
        opacity: .9;
    }

    .mw-contact a:hover,
    .mw-mobile-contact a:hover {
        color: #fff;
        opacity: 1;
        transform: translateY(-1px);
    }

.mw-foot-link-item {
    color: rgba(255,255,255,.75);
    border-radius: 14px;
    transition: color .16s ease, background .16s ease, transform .16s ease;
}

    .mw-foot-link-item:hover {
        color: #fff;
        background: rgba(255,255,255,.045);
        transform: translateX(2px);
    }

    .mw-foot-link-item span {
        display: block;
    }

.mw-foot-inline-link {
    color: rgba(255,255,255,.84);
    font-weight: 850;
    transition: color .16s ease;
}

    .mw-foot-inline-link:hover {
        color: #fff;
    }

.mw-foot-phone-item {
    align-items: flex-start;
}

.mw-foot-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 9px;
}

    .mw-foot-contact-actions a {
        min-height: 30px;
        padding: 0 10px;
        border-radius: 999px;
        background: rgba(255,255,255,.07);
        border: 1px solid rgba(255,255,255,.08);
        color: rgba(255,255,255,.82);
        display: inline-flex;
        align-items: center;
        gap: 7px;
        font-size: 11px;
        font-weight: 900;
        transition: all .16s ease;
    }

        .mw-foot-contact-actions a:hover {
            color: #fff;
            background: rgba(227,6,19,.16);
            border-color: rgba(227,6,19,.26);
            transform: translateY(-1px);
        }

.mw-showroom-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
    color: rgba(255,255,255,.82);
    background: radial-gradient(320px 160px at 15% 0%, rgba(227,6,19,.22), transparent 62%), rgba(255,255,255,.045);
    border: 1px solid rgba(255,255,255,.09);
    box-shadow: 0 18px 36px rgba(0,0,0,.14);
    transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

    .mw-showroom-card:hover {
        color: #fff;
        transform: translateY(-3px);
        border-color: rgba(227,6,19,.35);
        background: radial-gradient(320px 160px at 15% 0%, rgba(227,6,19,.30), transparent 62%), rgba(255,255,255,.065);
        box-shadow: 0 22px 44px rgba(0,0,0,.20);
    }

.mw-showroom-icon {
    width: 48px;
    height: 48px;
    border-radius: 17px;
    background: var(--mw-red);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    box-shadow: 0 16px 30px rgba(227,6,19,.24);
}

.mw-showroom-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mw-showroom-kicker {
    color: #ff747d;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .9px;
    text-transform: uppercase;
}

.mw-showroom-title {
    color: #fff;
    font-size: 15px;
    font-weight: 950;
    line-height: 1.25;
}

.mw-showroom-address {
    color: rgba(255,255,255,.68);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.55;
}

.mw-showroom-action {
    margin-top: 7px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 950;
}

body.mw-footer-modal-open {
    overflow: hidden;
}

.mw-footer-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 18px;
    background: rgba(0,0,0,.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    overflow-x: hidden;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, visibility 0s linear .22s;
}

    .mw-footer-modal.show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transition: opacity .22s ease, visibility 0s;
    }

.mw-footer-modal-card {
    width: min(900px, calc(100vw - 28px));
    max-height: calc(100vh - 36px);
    margin: 0 auto;
    border-radius: 26px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 28px 70px rgba(0,0,0,.48);
    display: flex;
    flex-direction: column;
    transform: translateY(18px) scale(.985);
    opacity: 0;
    transition: transform .26s cubic-bezier(.2,.9,.2,1), opacity .22s ease;
}

.mw-footer-modal.show .mw-footer-modal-card {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.mw-footer-modal-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 26px;
    background: radial-gradient(760px 260px at 10% 10%, rgba(227,6,19,.20), transparent 58%), linear-gradient(135deg, #07111f, #0b1423 62%, #101d33);
    color: #fff;
}

.mw-footer-modal-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 9px;
    color: #ff747d;
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mw-footer-modal-top h2 {
    margin: 0;
    color: #fff;
    font-size: 27px;
    line-height: 1.15;
    font-weight: 950;
    letter-spacing: -.25px;
}

.mw-footer-modal-close {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(255,255,255,.10);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .16s ease;
    flex: 0 0 42px;
}

    .mw-footer-modal-close:hover,
    .mw-footer-modal-close:focus {
        background: rgba(227,6,19,.26);
        transform: translateY(-1px);
        outline: none;
    }

.mw-footer-modal-body {
    padding: 24px 26px 26px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mw-footer-modal-intro {
    margin: 0 0 18px;
    color: #516070;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.75;
}

.mw-footer-help-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.mw-footer-help-card {
    min-height: 142px;
    padding: 17px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(227,6,19,.07), rgba(11,20,35,.035));
    border: 1px solid rgba(10,15,24,.08);
    color: #172233;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

    .mw-footer-help-card:hover {
        color: #172233;
        transform: translateY(-2px);
        border-color: rgba(227,6,19,.22);
        box-shadow: 0 18px 34px rgba(10,15,24,.10);
    }

    .mw-footer-help-card i {
        width: 42px;
        height: 42px;
        border-radius: 15px;
        background: var(--mw-red);
        color: #fff;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 14px 26px rgba(227,6,19,.20);
    }

    .mw-footer-help-card span {
        color: #15202f;
        font-size: 15px;
        font-weight: 950;
    }

    .mw-footer-help-card small {
        color: #667085;
        font-size: 12px;
        font-weight: 700;
        line-height: 1.55;
    }

.mw-footer-modal-actions {
    display: flex;
    justify-content: flex-end;
    gap: 11px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.mw-footer-modal-btn {
    min-height: 46px;
    padding: 0 16px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 950;
    transition: all .16s ease;
}

    .mw-footer-modal-btn.primary {
        background: var(--mw-red);
        color: #fff;
        box-shadow: 0 16px 30px rgba(227,6,19,.20);
    }

    .mw-footer-modal-btn.ghost {
        background: #fff;
        color: #243142;
        border: 1px solid rgba(10,15,24,.10);
    }

    .mw-footer-modal-btn:hover {
        transform: translateY(-2px);
        filter: brightness(1.03);
    }

.mw-footer-faq-list {
    display: grid;
    gap: 12px;
}

    .mw-footer-faq-list details {
        border-radius: 18px;
        border: 1px solid rgba(10,15,24,.08);
        background: #fff;
        box-shadow: 0 12px 26px rgba(10,15,24,.06);
        overflow: hidden;
    }

    .mw-footer-faq-list summary {
        padding: 16px 18px;
        color: #172233;
        font-size: 14px;
        font-weight: 950;
        cursor: pointer;
        list-style: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

        .mw-footer-faq-list summary::-webkit-details-marker {
            display: none;
        }

        .mw-footer-faq-list summary::after {
            content: "\f078";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--mw-red);
            font-size: 12px;
            transition: transform .16s ease;
        }

    .mw-footer-faq-list details[open] summary::after {
        transform: rotate(180deg);
    }

    .mw-footer-faq-list p {
        margin: 0;
        padding: 0 18px 17px;
        color: #667085;
        font-size: 13px;
        font-weight: 650;
        line-height: 1.72;
    }

@media (max-width: 992px) {
    .mw-showroom-card {
        max-width: 560px;
    }
}

@media (max-width: 767px) {
    .mw-footer-modal {
        padding: 10px;
    }

    .mw-footer-modal-card {
        width: calc(100vw - 12px);
        max-height: calc(100vh - 20px);
        border-radius: 20px;
    }

    .mw-footer-modal-top {
        padding: 20px 18px;
    }

        .mw-footer-modal-top h2 {
            font-size: 21px;
        }

    .mw-footer-modal-body {
        padding: 18px;
    }

    .mw-footer-help-grid {
        grid-template-columns: 1fr;
    }

    .mw-footer-modal-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .mw-footer-modal-btn {
        width: 100%;
    }

    .mw-foot-contact-actions {
        width: 100%;
    }
}


.mw-admin-review-alert {
    position: relative;
    color: #ffd36a;
}

    .mw-admin-review-alert.has-pending {
        display: inline-flex;
        background: rgba(227,6,19,.16);
        border-color: rgba(255,211,106,.34);
        box-shadow: 0 0 0 .18rem rgba(227,6,19,.09), 0 14px 28px rgba(0,0,0,.16);
    }

        .mw-admin-review-alert.has-pending::before {
            content: "";
            position: absolute;
            inset: -1px;
            border-radius: inherit;
            border: 1px solid rgba(255,211,106,.32);
            animation: mwAdminPendingPulse 2.1s ease-out infinite;
            pointer-events: none;
        }

        .mw-admin-review-alert.has-pending i {
            animation: mwAdminPendingNudge 3.2s ease-in-out infinite;
        }

.mw-admin-menu-trigger.has-pending::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #e30613;
    box-shadow: 0 0 0 4px rgba(227,6,19,.14);
}

.mw-admin-publications-menu-link {
    justify-content: flex-start;
}

.mw-admin-pending-menu-pill {
    margin-left: auto;
    min-width: 0;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(227,6,19,.18);
    border: 1px solid rgba(227,6,19,.28);
    color: #ffb4ba;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: 0;
    text-transform: none;
    display: none;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

    .mw-admin-pending-menu-pill:not(:empty) {
        display: inline-flex;
    }

@keyframes mwAdminPendingPulse {
    0% {
        opacity: .8;
        transform: scale(1);
    }

    70%, 100% {
        opacity: 0;
        transform: scale(1.22);
    }
}

@keyframes mwAdminPendingNudge {
    0%, 78%, 100% {
        transform: translateY(0) rotate(0);
    }

    84% {
        transform: translateY(-1px) rotate(-5deg);
    }

    90% {
        transform: translateY(-1px) rotate(5deg);
    }

    96% {
        transform: translateY(0) rotate(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .mw-admin-review-alert.has-pending::before,
    .mw-admin-review-alert.has-pending i {
        animation: none;
    }
}

@media (max-width: 520px) {
    .mw-admin-review-alert.has-pending {
        box-shadow: 0 0 0 .14rem rgba(227,6,19,.08);
    }
}

.mw-menu-btn.has-admin-pending {
    position: relative;
    border-color: rgba(255,211,106,.34);
}

    .mw-menu-btn.has-admin-pending::after {
        content: "";
        position: absolute;
        top: 2px;
        right: 2px;
        width: 9px;
        height: 9px;
        border-radius: 999px;
        background: #e30613;
        border: 2px solid #0b1423;
        box-shadow: 0 0 0 3px rgba(227,6,19,.15);
    }

@media (max-width: 380px) {
    .mw-admin-review-alert {
        display: none !important;
    }
}
