    .app-mobile-header {
        position: sticky;
        top: 0;
        z-index: 1040;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        padding: 10px 12px;
        background: rgba(255, 255, 255, 0.96);
        backdrop-filter: blur(8px);
        border-bottom: 1px solid #e2e8f0;
    }

    .app-mobile-header__right,
    .app-mobile-header__center,
    .app-mobile-header__left {
        display: flex;
        align-items: center;
    }

    .app-mobile-header__center {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        pointer-events: none;
    }

    .app-mobile-header__center .app-mobile-logo-link {
        pointer-events: auto;
    }

    .menu-toggle-btn {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #dbe4f0;
        border-radius: 12px;
        background: #ffffff;
        box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
        color: #3730a3;
        transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .menu-toggle-btn:active {
        transform: scale(0.97);
    }

    .menu-toggle-btn:focus-visible {
        outline: 2px solid #6366f1;
        outline-offset: 2px;
    }

    .menu-toggle-btn i {
        font-size: 24px;
        line-height: 1;
    }

    .back-toggle-btn {
        width: 42px;
        height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #dbe4f0;
        border-radius: 12px;
        background: #ffffff;
        box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
        color: #0f172a;
        text-decoration: none;
        transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .back-toggle-btn:active {
        transform: scale(0.97);
    }

    .back-toggle-btn:focus-visible {
        outline: 2px solid #6366f1;
        outline-offset: 2px;
    }

    .back-toggle-btn i {
        font-size: 20px;
        line-height: 1;
    }

    .app-mobile-logo-link {
        display: inline-flex;
        align-items: center;
        text-decoration: none;
    }

    .app-mobile-logo {
        height: 42px;
        width: auto;
        object-fit: contain;
    }

    @media (max-width: 360px) {
        .app-mobile-header {
            padding: 8px 10px;
        }

        .app-mobile-logo {
            height: 38px;
        }
    }
