.mm-wrap-b8f215e2 {
    display: inline-flex;
    align-items: center;
}

/* ── Hamburger toggle ────────────────────────────────────────── */
.mm-toggle-b8f215e2 {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    width: 26px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 0;
}

.mm-bar-b8f215e2 {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #222222;
    border-radius: 2px;
    transition-property: transform, opacity;
    transition-duration: 300ms;
    transition-timing-function: ease;
}

.mm-bar-b8f215e2:not(:last-child) {
    margin-bottom: 6px;
}

.mm-toggle-b8f215e2.is-active .mm-bar-b8f215e2:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mm-toggle-b8f215e2.is-active .mm-bar-b8f215e2:nth-child(2) {
    opacity: 0;
}

.mm-toggle-b8f215e2.is-active .mm-bar-b8f215e2:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ── Backdrop ────────────────────────────────────────────────── */
.mm-backdrop-b8f215e2 {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition-property: opacity, visibility;
    transition-duration: 300ms;
    transition-timing-function: ease;
}

.mm-backdrop-b8f215e2.is-active {
    opacity: 1;
    visibility: visible;
}

/* ── Off-canvas panel ────────────────────────────────────────── */
.mm-panel-b8f215e2 {
    position: fixed;
    top: 0;
    left: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    background-color: #ffffff;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    z-index: 999;
    overflow-y: auto;
    transform: translateX(-100%);
    transition-property: transform;
    transition-duration: 300ms;
    transition-timing-function: ease;
    box-sizing: border-box;
}

.mm-panel-b8f215e2.is-active {
    transform: translateX(0);
}

.mm-list-b8f215e2 {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mm-list-b8f215e2 li {
    border-bottom: 1px solid #eeeeee;
}

.mm-item-row-b8f215e2 {
    display: flex;
    align-items: stretch;
}

.mm-list-b8f215e2 a {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    color: #222222;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.mm-list-b8f215e2 a:hover {
    color: #0f384a;
}

.mm-item-icon-b8f215e2 {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    font-size: 18px;
    width: 18px;
    color: #666666;
    fill: #666666;
}

.mm-item-text-b8f215e2 {
    flex: 1;
}

/* ── Submenu toggle (chevron button) ────────────────────────────── */
.mm-submenu-toggle-b8f215e2 {
    flex-shrink: 0;
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    border-left: 1px solid #eeeeee;
    cursor: pointer;
    padding: 0;
}

.mm-chevron-b8f215e2 {
    width: 8px;
    height: 8px;
    border-right: 2px solid #666666;
    border-bottom: 2px solid #666666;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.has-submenu.is-open .mm-chevron-b8f215e2 {
    transform: rotate(-135deg);
}

/* ── Submenu (nested list) ───────────────────────────────────────── */
.mm-submenu-b8f215e2 {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.03);
}

.mm-submenu-b8f215e2[hidden] {
    display: none;
}

.mm-submenu-b8f215e2 li {
    border-bottom: 1px solid #eeeeee;
}

.mm-submenu-b8f215e2 li:last-child {
    border-bottom: none;
}

.mm-submenu-b8f215e2 a {
    padding: 12px 20px 12px 48px;
    font-size: 0.9rem;
}

/* Lock page scroll while the panel is open */
body.mm-scroll-lock-b8f215e2 {
    overflow: hidden;
}
