/* ---- Mobile full-screen menu (white bg, black text like main index) ---- */
.panel-mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: #fff;
    flex-direction: column;
    padding: 24px;
    overflow-y: auto;
}

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

.panel-mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--panel-text-inverse);
}

.panel-mobile-menu-mini-wrap {
    margin-top: 60px;
    margin-bottom: 24px;
    flex-shrink: 0;
}

.panel-mobile-menu-mini-block {
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.12);
}

.panel-mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
}
 
.panel-mobile-menu-wallet-btns {
    display: flex;
    flex-direction: row;
    gap: 6px;
    margin-top: 40px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
.panel-mobile-menu-wallet-btn {
    flex: 1;
    justify-content: center;
    min-width: 0;
    padding: 4px 8px;
    font-size: 11px;
    font-weight: 600;
    background: transparent;
    border: 1px solid #111;
    border-radius: 6px;
    color: #111;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, opacity 0.18s ease;
}
.panel-mobile-menu-wallet-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}
.panel-mobile-menu-wallet-btn:active {
    background: rgba(0, 0, 0, 0.08);
}
.panel-mobile-menu-wallet-btn .panel-mobile-menu-link-icon {
    width: 20px;
    height: 20px;
}
.panel-mobile-menu-wallet-btn .panel-mobile-menu-link-icon svg {
    width: 20px;
    height: 20px;
    stroke: #111;
}

.panel-mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    font-family: pp-neue-machina-plain-regular, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--panel-text-inverse);
    text-decoration: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    transition: opacity 0.18s ease, color 0.18s ease, background-color 0.18s ease;
}

.panel-mobile-menu-wallet-btn {
    border: 2px solid #111 !important;
}

.panel-mobile-menu-link:hover {
    opacity: 0.95;
}

.panel-mobile-menu-link-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.panel-mobile-menu-link-icon svg {
    display: block;
}

.panel-mobile-menu-link:last-child {
    border-bottom: none;
}

@media (min-width: 1000px) {
    .panel-mobile-menu {
        display: none !important;
    }
}