.wf-mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9990;
    display: none;
    justify-content: flex-end;
    background: rgba(15, 23, 42, 0.72);
    backdrop-filter: blur(5px);
}

.wf-mobile-menu-backdrop.is-open {
    display: flex;
}

.wf-mobile-menu {
    width: min(88vw, 360px);
    height: 100%;
    overflow-y: auto;
    border-left: 1px solid rgba(20, 184, 166, 0.3);
    background: #0f172a;
    color: #fff;
    box-shadow: -20px 0 60px rgba(15, 23, 42, 0.3);
}

.wf-mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    padding: 14px 20px;
    border-bottom: 1px solid #1e293b;
}

.wf-mobile-menu__brand {
    font-size: 21px;
    font-weight: 850;
    letter-spacing: -0.03em;
}

.wf-mobile-menu__brand span {
    color: #14b8a6;
}

.wf-mobile-menu__close {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid #334155;
    border-radius: 50%;
    background: #1e293b;
    color: #fff;
    font: inherit;
    font-size: 25px;
    line-height: 1;
    cursor: pointer;
}

.wf-mobile-menu__links {
    display: grid;
    gap: 6px;
    padding: 20px;
}

.wf-mobile-menu__links a {
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 12px 14px;
    color: #cbd5e1;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.wf-mobile-menu__links a::after {
    content: '›';
    color: #14b8a6;
    font-size: 22px;
}

.wf-mobile-menu__links a:hover,
.wf-mobile-menu__links a:focus-visible,
.wf-mobile-menu__links a.is-active {
    border-color: rgba(20, 184, 166, 0.32);
    background: rgba(20, 184, 166, 0.1);
    color: #fff;
    outline: none;
}

.wf-mobile-menu__note {
    margin: 4px 20px 24px;
    border-top: 1px solid #1e293b;
    padding-top: 18px;
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.55;
}

body.wf-mobile-menu-open {
    overflow: hidden;
}

@media (min-width: 1024px) {
    .wf-mobile-menu-backdrop {
        display: none !important;
    }
}
